body {
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif !important;
}

.action-buttons button {
    background-color: #fff;
    border: 0;
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
    padding: 15px;
    transition: color 0.2s ease-in;
}

.action-buttons button:hover {
    color: #fff;
    background-color: #cf9e38;
}

.action-buttons button:focus {
    outline: 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.left-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    transition: transform 0.5s ease-in-out;
}

.left-slide>div {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.left-slide h1 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: -30px;
}

h1,
h2,
h3 {
    margin: 0;
}

.right-slide {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    transition: transform 0.5s ease-in-out;
}

.right-slide>div {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.slider-container .action-buttons button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
}

.slider-container .action-buttons .down-button {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transform: translateX(-100%);
}

.slider-container .action-buttons .up-button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(-100%);
}


/* 🔹 Vertical Pagination Dots */

.vertical-pagination {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 200;
}

.vertical-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2D2E31;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vertical-pagination .dot:hover {
    background-color: #cf9e38;
}

.vertical-pagination .dot.active {
    background-color: #cf9e38;
    transform: scale(1.3);
}


/* slider content */

.slider-content {
    background-size: cover;
    background-position: right bottom;
}

.slider-content h2 {
    font-family: 'Allura', serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}

.slider-content h3 {}

.slider-content p {}

.left-slide,
.right-slide {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.left-slide {
    left: 0;
}

.right-slide {
    right: 0;
}

.left-slide .slide,
.right-slide .slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #fff;
}

.slider-content {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
}


/* ===== Fullscreen Hamburger Menu Styles ===== */

.hamburger {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger i {
    font-size: 20px;
    color: #222;
}


/* Fullscreen nav overlay */

.fullscreen-nav {
    position: fixed;
    inset: 0;
    background-color: rgb(20 93 23 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.45s ease;
    z-index: 999;
}


/* Prevent scroll when open */

body.menu-open {
    overflow: hidden;
}


/* When active */

.fullscreen-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Close button */

.nav-close {
    position: absolute;
    right: 24px;
    top: 24px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    padding: 8px;
}

.nav-close i {
    pointer-events: none;
}


/* Inner layout */

.nav-inner {
    max-width: 1100px;
    width: 90%;
    padding: 40px 24px;
    text-align: center;
}

.#fullscreen-nav .nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.fullscreen-nav .nav-list li {
    margin: 1rem 0;
}

.fullscreen-nav .nav-list a {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    transition: color 0.3s ease;
}

.fullscreen-nav .nav-list a:hover {
    color: #d32f2f;
}


/* Nav list */

.nav-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    gap: 28px;
    flex-direction: column;
    align-items: center;
}

.nav-list li a {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.nav-list li a:hover {
    color: #cf9e38;
    /* gold accent */
    transform: translateY(-3px);
}

nav#fullscreen-nav ul {
    padding: 0;
    margin: auto;
    list-style-type: none;
    line-height: 50px;
}

nav#fullscreen-nav li a {
    text-decoration: none;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 70px;
    color: #fff;
}


/* small footer inside menu */

.nav-footer {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    flex-direction: column;
    align-items: center;
}

.nav-footer a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}

.nav-footer a:hover {
    color: #fff;
}


/* Prevent scroll on body when menu open (helper class) */

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

.desktop-slider {
    display: block;
}

.mobile-slider {
    display: none;
}


/* Mobile layout */

@media only screen and (max-width: 1024px) {
    .desktop-slider {
        display: none;
    }
    .mobile-slider {
        display: block;
    }
    .mobile-slide {
        height: 100vh;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 40px 0px;
    }
    .mobile-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
    }
    .mobile-slide .slider-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }
    .mobile-slide h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .mobile-slide p {
        font-size: 1rem;
        line-height: 1.6;
    }
    body {
        overflow: auto;
        /* allow scroll on mobile */
        height: auto;
    }
    .slider-container {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .left-slide,
    .right-slide {
        position: relative;
        width: 100%;
        height: auto;
        transform: none !important;
        /* stop slide motion */
        transition: none;
    }
    .left-slide .slide,
    .right-slide .slide {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 80vh;
        background-size: cover;
        background-position: center;
    }
    /* Hide slider controls & dots on mobile */
    .action-buttons,
    .vertical-pagination {
        display: none !important;
    }
    /* Adjust slider content for better mobile readability */
    .slider-content {
        background: rgba(0, 0, 0, 0.5);
        padding: 25px 20px;
        border-radius: 10px;
        max-width: 90%;
        margin: 40px auto;
        text-align: center;
    }
    .slider-content h2 {
        font-size: 36px;
        line-height: 42px;
    }
    .slider-content p {
        font-size: 16px;
        line-height: 24px;
    }
}


/* Responsive tweaks: smaller font on small screens */

@media only screen and (max-width: 420px) {
    .nav-list li a {
        font-size: 26px;
    }
    .nav-inner {
        padding: 24px;
    }
    .hamburger {
        top: 18px;
        right: 18px;
        padding: 10px;
    }
    .nav-close {
        right: 18px;
        top: 18px;
        font-size: 22px;
    }
}


/* Unified Hamburger/Close Button */

.menu-toggle {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle i {
    font-size: 20px;
    color: #222;
    transition: transform 0.25s ease, opacity 0.25s ease;
}


/* When active (menu open), show close icon */

.menu-toggle.active i.fa-bars {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-toggle.active::after {
    content: "\f00d";
    /* Font Awesome close icon (fa-times) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: #222;
    position: absolute;
}

.home-page-website-logo img {
    width: 170px;
    height: auto;
}

.home-page-website-logo {
    position: fixed;
    top: 24px;
    left: 28px;
    z-index: 9999;
}

.home-page-website-logo a {
    display: block;
}


/* ===============================
   MOBILE/TABLET RESPONSIVE LAYOUT
   =============================== */


/* Desktop visible only */