:root {
    --primary-font: 'Playfair Display', serif;
    --secondary-font: 'Outfit', sans-serif;
    --hindi-font: 'Tiro Devanagari Hindi', serif;
    --cream: #fdfaf5;
    --warm-off-white: #f5f0e8;
    --accent-earth: #c99c6d;
    --glass-bg: rgba(45, 35, 25, 0.176); /* Warm beige/brown tint - reduced opacity by 20% */
    --glass-border: rgba(255, 240, 220, 0.15);
    --overlay-color: linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #1a1510;
    color: var(--warm-off-white);
    font-family: var(--secondary-font);
}

/* Background Layering */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: url("bg 2.jpg") center / cover fixed no-repeat;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 45s infinite alternate ease-in-out;
    display: block;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 100%);
}

/* Central Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Glass Card UI */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem 3rem;
    max-width: 650px;
    width: 100%;
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    text-align: center;
}

.main-heading {
    font-family: var(--primary-font);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--cream);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sub-heading {
    font-family: var(--hindi-font);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--accent-earth);
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--glass-border);
    margin: 0 auto 2.5rem;
}

.tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 200;
    font-style: italic;
    letter-spacing: 0.06em;
    margin-bottom: 3.5rem;
    color: rgba(253, 250, 245, 0.75);
    padding: 0 1rem;
}

/* Notify Me - Glass Integrated */
.notify-container {
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
}

.notify-form {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 5px;
    width: 100%;
    max-width: 400px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.notify-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 156, 109, 0.4);
    transform: translateY(-2px);
}

.notify-form input {
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 0 1.2rem;
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    font-weight: 300;
    flex-grow: 1;
    outline: none;
}

.notify-form input::placeholder {
    color: rgba(253, 250, 245, 0.3);
}

.notify-form button {
    background: var(--warm-off-white);
    color: #2d2319;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.status-line {
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: lowercase;
    font-style: italic;
    letter-spacing: 0.2em;
    opacity: 0.5;
    color: var(--accent-earth);
}

/* Bottom Subtle Line */
.bottom-footer {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.subtle-text {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 250, 245, 0.45);
}

/* Animations */
.animate-card-fade {
    opacity: 0;
    transform: translateY(15px);
    animation: cardFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes cardFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-fade-up-delay-1 {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.animate-fade-up-delay-2 {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.animate-fade-up-delay-3 {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.animate-fade-up-delay-4 {
    opacity: 0;
    animation: fadeIn 1s ease-in 1.2s forwards;
}

.animate-fade-in-slow {
    opacity: 0;
    animation: fadeIn 1.5s ease-in 1.5s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    body, html {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
        align-items: flex-start;
    }

    .glass-card {
        padding: 3rem 1.5rem;
        border-radius: 24px;
        margin: 0;
    }

    .main-heading { 
        font-size: clamp(3.2rem, 15vw, 4.5rem); 
        margin-bottom: 0.5rem;
    }

    .sub-heading { 
        font-size: 1.3rem; 
        margin-bottom: 1rem;
    }

    .tagline {
        margin-bottom: 2.5rem;
    }

    .notify-container {
        margin-bottom: 2.5rem;
    }

    .notify-form {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 12px;
    }

    .notify-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 100px;
        height: 50px;
        text-align: center;
    }

    .notify-form button {
        height: 50px;
        width: 100%;
    }

    .bottom-footer {
        position: relative;
        bottom: auto;
        padding: 2rem 0;
    }
}
