/* CSS Variables for nature-inspired theming */
:root {
    --primary-color: #4a7c59; /* Forest Green */
    --secondary-color: #f4f8f5; /* Soft Mint */
    --accent-color: #8fbc8f; /* Sage Green */
    --earth-tone: #a0825b; /* Warm Earth */
    --leaf-green: #6b8e5a; /* Leaf Green */
    --cream: #faf8f4; /* Natural Cream */
    --text-dark: #2c3e2d; /* Deep Forest */
    --text-light: #5a6b5d; /* Muted Green */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(74, 124, 89, 0.15);
    --nature-gradient: linear-gradient(135deg, #4a7c59, #6b8e5a, #8fbc8f);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-hero: "Great Vibes", cursive;
    --font-primary: "Poiret One", "Arial", sans-serif;
    --font-secondary: "Poiret One", "Arial", sans-serif;
    --font-accent: "Poiret One", "Arial", sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 124, 89, 0.6);
}

@keyframes floatingElements {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-names {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: var(--white);
    white-space: nowrap;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: var(--white);
    letter-spacing: 0.05em;
}

.hero-subtitle-en {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
    letter-spacing: 0.05em;
}

.hero-date,
.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--white);
    font-family: var(--font-secondary);
    letter-spacing: 0.03em;
}

/* Subtle location link styling */
.location-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.location-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.detail-item .location-link {
    color: inherit;
    border-bottom: 1px dotted rgba(74, 124, 89, 0.3);
}

.detail-item .location-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.timeline-content .location-link {
    color: inherit;
    border-bottom: 1px dotted rgba(74, 124, 89, 0.3);
}

.timeline-content .location-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-date i,
.hero-location i {
    color: var(--cream);
}

.scroll-indicator {
    margin-top: 3rem;
    animation: bounce 2s infinite;
    align-self: center;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Invitation Section */
.invitation {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a7c59' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.invitation .container {
    position: relative;
    z-index: 1;
}

.invitation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.invitation-main {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.invitation-main-en {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.detail-en {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

.timeline-en {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

.invitation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detail-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.detail-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.detail-item p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--nature-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: leafFloat 25s linear infinite;
}

@keyframes leafFloat {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-icon {
    margin-bottom: 1.5rem;
    transform: scale(1);
    transition: var(--transition);
}

.gallery-icon i {
    font-size: 3.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-text h4 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-text p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.03em;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--leaf-green), var(--earth-tone));
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-icon i {
    transform: rotate(5deg);
}

/* Gallery image loading styles */
.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 2;
}

.gallery-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.gallery-placeholder.has-image .gallery-icon,
.gallery-placeholder.has-image .gallery-text {
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.gallery-loading.show {
    opacity: 1;
}

.gallery-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Gallery image overlay text */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 3;
    border-radius: 0 0 15px 15px;
}

.gallery-placeholder.has-image .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

/* Gallery item hover effects for images */
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(transparent, rgba(74, 124, 89, 0.8));
}

/* Click cursor for gallery items with images */
.gallery-placeholder.has-image {
    cursor: pointer;
}

/* Timeline Section */
.timeline-section {
    background: var(--secondary-color);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 3rem 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-time {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    transition: var(--transition);
    z-index: 2;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.timeline-content p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.contact-item h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.contact-item p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.contact-item .detail-en {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}


/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
}

.footer-content p i {
    color: var(--primary-color);
    animation: heartbeat 2s infinite;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 3rem;
    }

    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        margin: 1rem 0 0 0;
    }

    .timeline-time {
        margin-bottom: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .invitation-details {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-item,
    .contact-item {
        padding: 1.5rem;
    }
}

/* Moments Carousel */
.moments-carousel {
    margin-top: 4rem;
    padding: 2rem 0;
}

.carousel-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.carousel-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    height: 400px;
    background: rgba(240, 245, 240, 0.3); /* Light neutral background as default */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color 0.8s ease, border 0.8s ease;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Handle horizontal vs vertical images */
.carousel-image[data-orientation="horizontal"] {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-image[data-orientation="vertical"] {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.carousel-image[data-loaded="true"] {
    opacity: 1;
    transform: scale(1);
}

.carousel-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.03em;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 2;
}

.carousel-slide:hover .carousel-date {
    opacity: 1;
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 124, 89, 0.9);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    opacity: 0.8;
    visibility: visible;
    pointer-events: auto;
}

.carousel-container:hover .carousel-nav,
.carousel-nav:hover {
    opacity: 1;
    visibility: visible;
}

.carousel-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-indicator.active {
    background: var(--white);
    transform: scale(1.3);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Lazy loading enhancement */
.carousel-image[loading="lazy"] {
    background: linear-gradient(90deg, 
        rgba(143, 188, 143, 0.1) 0%, 
        rgba(143, 188, 143, 0.2) 50%, 
        rgba(143, 188, 143, 0.1) 100%);
    background-size: 200% 200%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced carousel transitions and hover effects */
.carousel-slide {
    transition: background-color 0.8s ease, border 0.8s ease;
}

.carousel-slide:hover .carousel-image {
    transform: scale(1.02);
}

/* Fullscreen carousel styles */
.carousel-fullscreen {
    backdrop-filter: blur(5px);
}

.carousel-fullscreen-content {
    animation: fullscreenFadeIn 0.4s ease-out;
}

@keyframes fullscreenFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading indicator for fullscreen images */
.carousel-fullscreen img {
    transition: opacity 0.3s ease;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .carousel-fullscreen button {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .carousel-fullscreen .carousel-fullscreen-content {
        padding: 10px;
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .carousel-fullscreen img {
        max-height: calc(90vh - 100px) !important;
    }
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-slide {
        height: 300px;
    }
    
    .carousel-date {
        font-size: 1rem;
        padding: 1.5rem 0.8rem 0.8rem;
    }
    
    /* Better click targets for mobile */
    .carousel-slide {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .carousel-slide {
        height: 250px;
    }
    
    .carousel-date {
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicator {
        width: 6px;
        height: 6px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
