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

:root {
    /* European Christmas Market Colors */
    --deep-red: #8B2635;
    --forest-green: #2D5016;
    --warm-gold: #D4AF37;
    --cream: #F5F1E8;
    --dark-brown: #3E2723;
    --warm-white: #FFF8F0;
    
    /* Hallmark Holiday Colors */
    --sparkle-gold: #FFD700;
    --holiday-red: #C41E3A;
    --evergreen: #0F5132;
    --snow-white: #FFFFFF;
    --twinkle-blue: #E8F4F8;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 38, 53, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--warm-gold);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.5),
            0 0 40px rgba(212, 175, 55, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-date {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--warm-gold);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-decoration {
    font-size: 3rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Snowflakes Animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: snowfall linear infinite;
    top: -10%;
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 30%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.snowflake:nth-child(3) {
    left: 50%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.snowflake:nth-child(4) {
    left: 70%;
    animation-duration: 11s;
    animation-delay: 1s;
}

.snowflake:nth-child(5) {
    left: 90%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.snowflake:nth-child(6) {
    left: 20%;
    animation-duration: 15s;
    animation-delay: 5s;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    color: var(--warm-gold);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

/* Welcome Section */
.welcome-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.welcome-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--cream);
    font-family: var(--font-elegant);
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.2) 0%, rgba(45, 80, 22, 0.2) 100%);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.3s ease, opacity 0.6s ease;
    display: block;
    opacity: 1;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image::after {
    opacity: 1;
}

.feature-content {
    padding: 30px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--warm-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: var(--cream);
    line-height: 1.7;
    font-size: 1rem;
}

/* Details Section */
.details-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

.detail-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.detail-box:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.5);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.detail-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--warm-gold);
    margin-bottom: 15px;
}

.detail-box p {
    color: var(--cream);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.2) 0%, rgba(45, 80, 22, 0.2) 100%);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease, opacity 0.6s ease;
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(139, 38, 53, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-text {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: var(--warm-gold);
    margin-bottom: 10px;
}

.footer-subtext {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .feature-content {
        padding: 25px 20px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 35px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }
    
    .feature-image {
        height: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        max-width: 100%;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .detail-box {
        padding: 30px 15px;
    }
    
    .detail-box h3 {
        font-size: 1.3rem;
    }
    
    .detail-box p {
        font-size: 1rem;
    }
}

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

.feature-card,
.detail-box,
.gallery-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

