@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

::root {
    --heading1: 25px;
}

/* Wrapper to center the header */
.header-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: padding-top 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* When scrolled: sticky full width */
.header-wrapper.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 0;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Container transition for width and radius */
.header-container {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    width: 80%;
    margin: auto;
    color: white;
    overflow: hidden;
    transition: width 0.3s ease, border-radius 0.3s ease;
}

.header-container.scrolled-container {
    width: 100%;
    border-radius: 0;
}


/* Expand container to full width when scrolled */
.header-container.scrolled-container {
    width: 100%;
    border-radius: 0;
}

/* Top bar: Menu, Logo, Button */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
}

.menu-section {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.menu-section span {
    font-size: 20px;
}

.menu-icon {
    width: 30px;
    height: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 50px;
}

.book-now {
    background-color: transparent;
    color: #f4b73e;
    border: 1px solid #f4b73e;
    padding: 5px 16px;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    font-size: 20px;
}

/* Full width nav bar */
.nav-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* background: gray; */
    backdrop-filter: blur(2px);
    margin-top: 10px;
}

/* Hide the nav-bar on scroll */
.nav-bar.hide-nav {
    display: none;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* === OVERLAY MENU STYLES === */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1f1a1a;
    color: #fff;
    display: flex;
    z-index: 9999;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-family: "PP Woodland Ultralight", sans-serif;
    align-items: center;
    justify-content: space-around;
}

/* When active, show the menu */
.overlay-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* === LEFT PANEL === */
.menu-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

/* Close button */
.menu-left .close-btn {
    font-size: 24px;
    color: #ffc107;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1.5px solid #ffc107;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.menu-left .close-btn:hover {
    background-color: #ffc107;
    color: #1f1a1a;
}

/* Menu items list */
.menu-left .menu-items {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.menu-left .menu-items li {
    font-size: 22px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    /* Important for ::after positioning */
}

/* Hover effect */
.menu-left .menu-items li:hover {
    color: #ffc107;
}

/* Active state */
.menu-left .menu-items li.active {
    color: #ffc107;
    font-weight: bold;
}

/* === HORIZONTAL CONNECTOR LINE === */
.menu-left .menu-items li.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + -100px);
    transform: translateY(-50%);
    width: 200px;
    height: 2px;
    background-color: #ffc107;
}

/* Tagline */
.menu-left .tagline {
    color: #ffc107;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 300px;
}

/* === RIGHT PANEL (IMAGES) === */
.menu-right {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    overflow-y: auto;
}

.menu-right img.menu-image {
    width: calc(50% - 20px);
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.menu-right img.menu-image:hover {
    transform: scale(1.03);
}

/* === RESPONSIVE STYLES === */
@media screen and (max-width: 768px) {
    .overlay-menu {
        flex-direction: column;
        padding: 20px;
    }

    .menu-left,
    .menu-right {
        width: 100%;
        padding: 30px;
    }

    .menu-left .menu-items li {
        font-size: 18px;
    }

    .menu-right img.menu-image {
        width: 100%;
        height: auto;
    }

    .menu-left .menu-items li.active::after {
        display: none;
        /* Optional: hide connector line on mobile */
    }
}


/* footer  */
.footer-section {
    font-family: 'Poppins', sans-serif;
    background-color: #0d1540;
    color: #ffffff;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: #faf8f2;
}

.footer-left {
    display: flex;
    width: 33.33%;
}

.footer-left img {
    width: 33.33%;
    object-fit: cover;
}

.footer-middle {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #faf8f2;
    padding: 40px 20px;
}

.footer-middle h2 {
    font-size: 34px;
    font-family: "PP Woodland Ultralight";
    color: #0d1540;
    font-weight: 900;
}

.footer-arrow-line {
    font-size: 34px;
    color: #0d1540;
    margin: 8px 0 20px;
}

.book-btn-outline {
    background: transparent;
    border: 2px solid #f6c544;
    color: #f6c544;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-btn-outline:hover {
    background-color: #f6c544;
    color: #0d1540;
}

.footer-right {
    width: 33.33%;
    min-height: 250px;
}

.footer-right iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Bottom footer */
.footer-bottom {
    padding: 40px 20px;
    background-color: #0d1540;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1.5px solid #F5C45E;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-item .icon {
    font-size: 18px;
    color: #f6c544;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #F5C45E;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 5px 15px;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 15px;
    color: #aaaaaa;
}

/* ===== HEADER RESPONSIVENESS - MOBILE FIRST ===== */

/* Mobile (320px - 767px) - Default */
@media screen and (max-width: 767px) {
    .header-wrapper {
        padding-top: 10px;
        width: 100%;
    }

    .header-container {
        width: 95%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 8px;
    }

    .top-bar {
        padding: 8px 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .menu-section {
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .menu-section span {
        font-size: 14px;
    }

    .menu-icon {
        width: 20px;
        height: auto;
    }

    .logo-section {
        flex: 1;
        text-align: center;
    }

    .logo-icon {
        height: 30px;
        width: auto;
        max-width: 100%;
    }

    .book-now {
        font-size: 12px;
        padding: 4px 8px;
        white-space: nowrap;
    }

    .nav-bar {
        gap: 20px;
        padding: 8px 0;
        font-size: 12px;
    }

    .nav-bar a {
        font-size: 12px;
    }

    /* Overlay Menu Mobile */
    .overlay-menu {
        flex-direction: column;
        padding: 20px;
    }

    .menu-left {
        padding-left: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .menu-left .close-btn {
        font-size: 20px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .menu-left .menu-items li {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .menu-left .tagline {
        font-size: 14px;
        line-height: 1.4;
    }

    .menu-right img.menu-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
}

/* Small Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
    .header-container {
        width: 98%;
        border-radius: 6px;
    }

    .top-bar {
        padding: 6px 8px;
        gap: 5px;
    }

    .menu-section {
        font-size: 12px;
        gap: 3px;
    }

    .menu-icon {
        width: 18px;
    }

    .logo-icon {
        height: 25px;
    }

    .book-now {
        font-size: 11px;
        padding: 3px 6px;
    }

    .nav-bar {
        gap: 15px;
        padding: 6px 0;
    }

    .nav-bar a {
        font-size: 11px;
    }
}

/* Tablet (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        width: 90%;
    }

    .top-bar {
        padding: 10px 20px;
    }

    .menu-section span {
        font-size: 18px;
    }

    .logo-icon {
        height: 40px;
    }

    .book-now {
        font-size: 16px;
        padding: 6px 12px;
    }

    .nav-bar {
        gap: 30px;
    }

    .nav-bar a {
        font-size: 13px;
    }
}

/* Medium Desktop (1024px - 1439px) */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .header-container {
        width: 85%;
    }

    .top-bar {
        padding: 12px 25px;
    }

    .logo-icon {
        height: 45px;
    }

    .book-now {
        font-size: 18px;
        padding: 8px 16px;
    }
}

/* Large Desktop (1440px+) */
@media screen and (min-width: 1440px) {
    .header-container {
        width: 80%;
    }

    .top-bar {
        padding: 12px 30px;
    }

    .logo-icon {
        height: 50px;
    }

    .book-now {
        font-size: 20px;
        padding: 8px 16px;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 767px) and (orientation: landscape) {
    .header-wrapper {
        padding-top: 5px;
    }

    .header-container {
        width: 90%;
    }

    .top-bar {
        padding: 6px 15px;
    }

    .logo-icon {
        height: 25px;
    }

    .book-now {
        font-size: 14px;
        padding: 4px 10px;
    }
}

/* Print Styles */
@media print {

    .header-wrapper,
    .nav-bar,
    .overlay-menu {
        display: none !important;
    }
}

/* ===== HD DESKTOP (1920px - 2559px) ===== */
@media screen and (min-width: 1920px) {
    .header-wrapper {
        padding-top: 30px;
    }

    .header-container {
        width: 90%;
        max-width: 1800px;
        border-radius: 15px;
    }

    .header-container.scrolled-container {
        width: 100%;
        border-radius: 0;
    }

    .top-bar {
        padding: 20px 50px;
    }

    .menu-section {
        gap: 15px;
    }

    .menu-section span {
        font-size: 24px;
    }

    .menu-icon {
        width: 35px;
    }

    .logo-icon {
        height: 60px;
    }

    .book-now {
        padding: 8px 20px;
        font-size: 22px;
        border-radius: 8px;
    }

    .nav-bar {
        gap: 50px;
        padding: 15px 0;
        margin-top: 15px;
    }

    .nav-bar a {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    /* Overlay Menu HD */
    .overlay-menu {
        padding: 0 10%;
    }

    .menu-left {
        padding-left: 8%;
    }

    .menu-left .close-btn {
        font-size: 28px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-bottom: 50px;
    }

    .menu-left .menu-items li {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .menu-left .tagline {
        font-size: 20px;
        line-height: 1.6;
        max-width: 400px;
    }

    .menu-right img.menu-image {
        width: 500px;
        height: 400px;
    }
}

/* ===== FULL HD DESKTOP (2560px+) ===== */
@media screen and (min-width: 2560px) {
    .header-wrapper {
        padding-top: 40px;
    }

    .header-container {
        width: 95%;
        max-width: 2400px;
        border-radius: 20px;
    }

    .top-bar {
        padding: 25px 70px;
    }

    .menu-section {
        gap: 20px;
    }

    .menu-section span {
        font-size: 28px;
    }

    .menu-icon {
        width: 40px;
    }

    .logo-icon {
        height: 70px;
    }

    .book-now {
        padding: 10px 25px;
        font-size: 24px;
        border-radius: 10px;
    }

    .nav-bar {
        gap: 60px;
        padding: 20px 0;
        margin-top: 20px;
    }

    .nav-bar a {
        font-size: 18px;
        letter-spacing: 1px;
    }

    /* Overlay Menu Full HD */
    .overlay-menu {
        padding: 0 12%;
    }

    .menu-left {
        padding-left: 10%;
    }

    .menu-left .close-btn {
        font-size: 32px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin-bottom: 60px;
    }

    .menu-left .menu-items li {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .menu-left .tagline {
        font-size: 24px;
        line-height: 1.6;
        max-width: 500px;
    }

    .menu-right img.menu-image {
        width: 600px;
        height: 500px;
    }
}

/* ===== MAC DEVICES (1440px - 1919px) - OPTIMIZED ===== */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .header-wrapper {
        padding-top: 25px;
    }

    .header-container {
        width: 85%;
        max-width: 1400px;
        border-radius: 12px;
    }

    .header-container.scrolled-container {
        width: 100%;
        border-radius: 0;
    }

    .top-bar {
        padding: 15px 40px;
    }

    .menu-section {
        gap: 12px;
    }

    .menu-section span {
        font-size: 22px;
    }

    .menu-icon {
        width: 32px;
    }

    .logo-icon {
        height: 55px;
    }

    .book-now {
        padding: 6px 18px;
        font-size: 21px;
        border-radius: 7px;
    }

    .nav-bar {
        gap: 45px;
        padding: 12px 0;
        margin-top: 12px;
    }

    .nav-bar a {
        font-size: 15px;
        letter-spacing: 0.6px;
    }

    /* Overlay Menu Mac */
    .overlay-menu {
        padding: 0 8%;
    }

    .menu-left {
        padding-left: 6%;
    }

    .menu-left .close-btn {
        font-size: 26px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        margin-bottom: 45px;
    }

    .menu-left .menu-items li {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .menu-left .tagline {
        font-size: 18px;
        line-height: 1.6;
        max-width: 350px;
    }

    .menu-right img.menu-image {
        width: 450px;
        height: 350px;
    }
}

/* pop-card */

/* pop up card */
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    background-image: url(../images/Background.png);
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1000;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
}

/* Heading */
.pop-up-heading {
    font-size: 36px;
    font-weight: 700;
    color: #003c71;
    /* Theme orange */
    margin-bottom: 15px;
}

/* Paragraph */
.pop-up-para {
    color: #f4c050;
    /* Olive green */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Button */
.close-btn {
    background-color: #ffb100;
    /* Olive green */
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 0px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.close-btn:hover {
    background-color: #fff;
}



@media (max-width: 600px) {
    .popup {
        width: 90%;
        padding: 20px 15px;
    }

    .pop-up-heading {
        font-size: 28px;
    }

    .pop-up-para {
        font-size: 16px;
    }

    .close-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}