:root {
    --primary-red: #c41e3a;
    /* Christmas Red */
    --secondary-red: #8b0000;
    --accent-gold: #ffd700;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: 0.3s ease-in-out;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#celebration-canvas,
#snow-canvas,
#message-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#celebration-canvas {
    z-index: 10000;
}

#snow-canvas {
    z-index: 9999;
}

#message-canvas {
    z-index: 9998;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--primary-red);
}

.logo-subtext {
    color: var(--text-dark);
    font-weight: 300;
    margin-left: 5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero-section {
    padding-top: 60px;
    /* Reduced to sit closer to header */
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    margin-bottom: 40px;
    position: relative;
}

.hero-main-img {
    width: 100%;
    display: block;
    box-shadow: none;
}

/* Countdown Bar */
.countdown-bar {
    background-color: var(--primary-red);
    width: 100%;
    padding: 10px 0;
    color: white;
}

.container-countdown {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-label {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-item span {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
}

.timer-item label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px 80px;
}

.hero-badge {
    background: var(--primary-red);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

.bg-white {
    background: white;
}

.text-white {
    color: white;
}

/* About Section */
.about-section {
    background-color: var(--bg-gray);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

/* Locations Section */
.locations-section {
    background: white;
}

.locations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.location-icon {
    font-size: 30px;
    color: var(--primary-red);
    background: #fff5f5;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.1);
}

/* Footer */
.main-footer {
    background: #111;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
}

.footer-contact h3 {
    margin-bottom: 20px;
}

.footer-contact p {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .container-header {
        padding: 0 20px;
    }

    .desktop-nav {
        display: none;
        /* Simplification for now, usually a burger menu */
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}