/* ===================================
   CSS Variables - Color Palette
   =================================== */
:root {
    --primary: #25364b;
    --light: #fdf9f1;
    --tertiary: #ad2527;
    --white: #FEFEFE;
    --hero-overlay: rgba(0, 0, 0, 0.4);
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    background: transparent;
}

.nav-left,
.nav-center,
.nav-right {
    flex: 1;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light);
    letter-spacing: 2px;
}

.cta-button {
    background-color: var(--light);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--light);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--light);
    border-color: var(--light);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light);
    padding: 2rem;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-date {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: var(--light);
    transform: scale(1.2);
}

/* ===================================
   Event Details Section
   =================================== */
.details-section {
    padding: 5rem 2rem;
    background-color: var(--light);
}

.details-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--tertiary);
    padding-bottom: 0.5rem;
}

.detail-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.detail-card p:last-child {
    margin-bottom: 0;
}

.detail-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.detail-highlight {
    color: var(--tertiary);
    font-weight: 500;
}

.detail-card.coming-soon {
    border: 2px dashed #cfc5b6;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.detail-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--tertiary);
    font-weight: bold;
}

.halloween-card {
    position: relative;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.halloween-card .card-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.halloween-card:hover .mike-easter-egg{
    top: -46px;
    left: -38px;
}

.mike-easter-egg {
    transition: .25s ease-in-out;
    top: 0;
    left: 10px;
    position: absolute;
    width: 80px;
    height: auto;
    transform: rotate(-35deg);
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* ===================================
   Address Collection Section
   =================================== */
.address-section {
    padding: 5rem 2rem;
    background-color: var(--light);
    text-align: center;
}

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

.address-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.address-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.google-form {
    border-radius: 8px;
    margin: 2rem 0;
    max-width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-note {
    font-size: 0.95rem;
    margin-top: 2rem;
}

.contact-note a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

.contact-note a:hover {
    color: var(--tertiary);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-date {
        font-size: 1.3rem;
    }

    .hero-location {
        font-size: 0.95rem;
    }

    .address-section {
        padding: 3rem 1.5rem;
    }

    .address-section h2 {
        font-size: 2rem;
    }

    .google-form {
        height: 700px;
    }

    .details-section {
        padding: 3rem 1.5rem;
    }

    .details-section h2 {
        font-size: 2rem;
    }

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

    .detail-card {
        padding: 1.5rem;
    }

    .detail-card h3 {
        font-size: 1.3rem;
    }

    .carousel-indicators {
        bottom: 2rem;
        gap: 0.8rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .nav-left {
        display: none;
    }

    .nav-center,
    .nav-right {
        flex: 1;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-date {
        font-size: 1.1rem;
    }

    .google-form {
        height: 600px;
    }

    .details-section {
        padding: 2rem 1rem;
    }

    .details-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .details-grid {
        gap: 1rem;
    }

    .detail-card {
        padding: 1.25rem;
    }

    .detail-card h3 {
        font-size: 1.2rem;
    }
}
