* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #2a163b;
    background: radial-gradient(circle at 75% 50%, #4a2862 0%, #2a163b 60%, #17071e 100%);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 1500px;
}


.main-header {
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: transparent;
    border-bottom: 2px solid #b76e79;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
    flex-shrink: 0;
}

.header-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #eebb9f;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header-right {
    display: flex;
    gap: 30px;
}

.mobile-menu-btn {
    display: none;
}

.nav-btn {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #d1c1d6;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding: 8px 12px;
}

.nav-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 2px;
    background: linear-gradient(to bottom, #b76e79, #f0d5ce, #c07c88, #f0d5ce, #b76e79);
    border-radius: 2px;
}

.nav-btn:hover {
    color: #eebb9f;
    transform: translateY(-2px);
}

.landing-container {
    display: flex;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.content-left {
    flex: 1;
    max-width: 500px;
    padding-right: clamp(15px, 4vw, 50px);
    min-width: 0;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #eebb9f;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 25px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    width: 60%;
}

.line {
    flex: 1;
    height: 1px;
    background-color: rgba(238, 187, 159, 0.3);
}

.lotus-icon {
    font-size: 3rem;
    margin: 0 20px;
    color: #eebb9f;
    filter: sepia(1) hue-rotate(-30deg) saturate(2);
}



.tagline {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    font-weight: 350;
    margin-bottom: 30px;
    opacity: 1;
    white-space: nowrap;
}

.coming-soon {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #eebb9f;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 10px;
    text-shadow: 1px 1px 8px rgba(238, 187, 159, 0.4);
    opacity: 0.9;
}

.explore-btn {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2b1525;
    background: linear-gradient(to right, #f6d2b6, #e0a38b);
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    letter-spacing: 1.5px;
}

.explore-btn span {
    margin-left: 10px;
    font-size: 1rem;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 163, 139, 0.4);
}

.content-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform-style: preserve-3d;
}

.emblem-img {
    width: 100%;
    max-width: 850px;
    max-height: 80vh;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
    transition: transform 0.1s ease-out;
}

/* --- Responsive Styles --- */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .landing-container {
        padding: 0 5vw;
        width: 100%;
    }

    .main-header {
        padding: 20px 30px;
    }

    .header-right {
        gap: 15px;
    }

    .nav-btn {
        font-size: 0.85rem;
    }

    .main-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .emblem-img {
        max-width: 45vw;
        max-height: 70vh;
    }


}

/* Mobile Devices */
@media (max-width: 768px) {
    body {
        padding: 0;
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .main-header {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        margin-bottom: 30px;
    }

    .mobile-menu-btn {
        display: block;
        height: 35px;
        width: 35px;
        object-fit: contain;
        cursor: pointer;
    }

    .header-right {
        display: none;
        width: 100%;
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-right.active {
        display: flex;
    }

    .nav-btn::after {
        display: none;
    }

    .tagline {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .landing-container {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding: 0;
        margin: auto 0;
    }

    .content-left {
        padding-right: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .divider {
        width: 80%;
        margin: 15px 0;
    }



    .content-right {
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .emblem-img {
        width: 90%;
        max-width: 350px;
    }
}

/* Devices in Landscape (Small Heights) */
@media (max-height: 600px) and (orientation: landscape) {

    .landing-container {
        padding: 0 5vw;
    }

    .main-title {
        font-size: clamp(1.5rem, 5vh, 2.5rem);
        margin-bottom: 10px;
    }



    .divider {
        margin: 10px 0;
    }

    .lotus-icon {
        font-size: clamp(1rem, 4vh, 2rem);
        margin: 0 10px;
    }

    .emblem-img {
        max-width: 45vw;
        max-height: 75vh;
    }

    .content-left {
        padding-right: 15px;
    }
}