:root {
    /* Color Palette */
    --primary-red: #D42426;
    --santa-white: #FFFFFF;
    --ocean-blue: #006994;
    --sunny-yellow: #FDB813;
    --sand-beige: #E6DCCF;
    --palm-green: #4F7942;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(0,105,148,0.8) 0%, rgba(212,36,38,0.4) 100%);
    --gradient-sun: linear-gradient(to top, #fccb90 0%, #d57eeb 100%);

    /* Fonts */
    --font-heading: 'Mountains of Christmas', cursive;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: win-body, sans-serif;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--sand-beige);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Utils */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 36, 38, 0.4);
}

.btn-secondary {
    background-color: var(--sunny-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-nav {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding: 3rem;
    max-width: 800px;
    margin: 0 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 0px white;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Sections */
.section {
    padding: 5rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--ocean-blue);
    margin-bottom: 3rem;
}

/* Concept Section */
.reverse-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reverse-layout .text-content {
    flex: 1;
}

.reverse-layout .image-content {
    flex: 1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--palm-green);
    transition: transform 0.4s;
}

.image-wrapper img:hover {
    transform: scale(1.02);
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Event Section */
.event-section {
    background-color: #fff;
    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='%23d42426' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2rem;
    text-align: center;
    background: rgba(255,255,255,0.8);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    outline: none;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--sand-beige);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socials a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="slide-right"] {
    transform: translateX(-50px);
}

[data-animate="slide-left"] {
    transform: translateX(50px);
}

.animate-active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .reverse-layout {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
