:root {
    --primary-burgundy: #7A041E;
    --accent-pink: #D81B60;
    --gold: #D4AF37;
    --light-cream: #FFF6ED;
    --warm-taupe: #CDB7A0;
    --deep-brown: #3B2F2F;
    --overlay-color: rgba(59, 47, 47, 0.6);
    --glass-bg: rgba(255, 246, 237, 0.1);
    --glass-border: rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-cream);
    background-color: var(--deep-brown);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* Background Video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(200 200 200 / 20%) 0%, rgb(93 93 93 / 70%) 100%);
}

/* Main Content */
.content {
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 1rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin: auto;
}

.logo {
    width: 240px;
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFF6ED 30%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.sub-heading {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: -0.2rem;
}

.gold-text {
    color: var(--gold);
}

.tagline {
    font-size: 1rem;
    max-width: 550px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 246, 237, 0.9);
}

/* Countdown */
.countdown-container {
    display: flex;
    gap: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-item span {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.countdown-item label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.divider {
    width: 1px;
    background: var(--glass-border);
    margin: 10px 0;
}

/* Subscription Form */
.subscribe-form {
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
}

.subscribe-form p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: var(--primary-burgundy);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(122, 4, 30, 0.3);
}

.btn-primary:hover {
    background: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 4, 30, 0.4);
}

/* Footer */
footer {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--light-cream);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

footer p {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        gap: 0.8rem;
        padding: 0.5rem;
    }

    .main-heading {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .sub-heading {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .countdown-container {
        gap: 0.8rem;
        padding: 1rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-item span {
        font-size: 1.6rem;
    }

    .subscribe-form p {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1.2rem;
        border-radius: 50px;
        margin-bottom: 0.5rem;
        border: 1px solid var(--glass-border);
        width: 100%;
    }

    .logo {
        width: 180px;
    }

    .btn-primary {
        width: 100%;
        padding: 0.8rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-height: 700px) and (min-width: 769px) {
    .logo {
        width: 180px;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .content {
        gap: 0.8rem;
    }

    .countdown-container {
        padding: 0.8rem 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--light-cream);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--gold);
}

.modal-content h2 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1.5rem;
}

.modal-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(122, 4, 30, 0.2);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.phone-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.phone-link:hover {
    transform: scale(1.05);
}