﻿/* ============================================================
   GLOBAL VARIABLES (THEME)
============================================================ */
:root {
    --black: #000;
    --white: #fff;
    --gold: #d4af37;
    --soft-gold: #e5c878;
    --radius: 12px;
    --transition: 0.3s ease;
    --shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ============================================================
   RESET + STRUCTURE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--black);
}

/* Make main content grow */
.page-body {
    flex: 1;
}

/* ============================================================
   NAVBAR
============================================================ */
.kw-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    background: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   LOGO — PC LEFT / MOBILE CENTER
============================================================ */
.nav-logo {
    position: relative;
    left: 0;
    transform: none;
    display: flex;
    align-items: center;
    z-index: 10;
}
    .nav-logo img {
        height: 80px;
        transition: var(--transition);
    }


        .nav-logo img:hover {
            transform: scale(1.05);
        }

/* Mobile center positioning */
@media (max-width: 992px) {
    .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .nav-logo img {
            height: 55px;
        }
}

/* ============================================================
   DESKTOP NAV LINKS
============================================================ */
.desktop-only {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    padding-bottom: 8px;
}

    .desktop-only li {
        list-style: none;
    }

        .desktop-only li a {
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            color: var(--white);
            text-transform: uppercase;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

            .desktop-only li a:hover {
                color: var(--gold);
                border-bottom: 2px solid var(--gold);
                padding-bottom: 3px;
            }

/* ============================================================
   NAV ICONS
============================================================ */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .nav-icons .icon {
        width: 22px;
        height: 22px;
        object-fit: contain;
        filter: invert(1);
        cursor: pointer;
        transition: var(--transition);
    }

        .nav-icons .icon:hover {
            filter: invert(77%) sepia(65%) saturate(400%) hue-rotate(5deg);
            transform: scale(1.1);
        }

/* ============================================================
   HAMBURGER MENU
============================================================ */
.kw-hamburger {
    display: none;
    width: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1000000 !important; /* FIX: always visible */
}

    .kw-hamburger span {
        width: 100%;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: var(--transition);
    }

    .kw-hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .kw-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .kw-hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

/* ============================================================
   SEARCH DROPDOWN
============================================================ */
.search-dropdown {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    max-width: 92vw;
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .search-dropdown.active {
        opacity: 1;
        visibility: visible;
    }

.search-input-wrapper {
    position: relative;
}

    .search-input-wrapper input {
        width: 100%;
        padding: 12px 45px 12px 15px;
        border-radius: var(--radius);
        border: 1px solid #ccc;
    }

.search-icon-inside {
    position: absolute;
    right: 15px;
    width: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

/* ============================================================
   MOBILE SEARCH ICON
============================================================ */
.mobile-search {
    display: none;
    width: 22px;
    filter: invert(1);
}

/* ============================================================
   MOBILE MENU (HEIGHT FIXED TO 50%)
============================================================ */
.mobile-menu {
    position: fixed;
    top: 95px; /* FIX — Starts below navbar so hamburger stays visible */
    left: -100%;
    width: 60%;
    height: 50vh; /* your requested height */
    background: var(--black);
    padding-top: 20px; /* reduced (was 110px) */
    transition: var(--transition);
    z-index: 999999 !important;
    box-shadow: 5px 0 20px rgba(0,0,0,0.3);
    isolation: isolate;
}

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu ul {
        list-style: none;
    }

        .mobile-menu ul li a {
            display: flex;
            justify-content: space-between;
            padding: 12px 18px; /* optional: reduce padding for compact look */
            font-size: 14px;
            color: var(--white);
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition);
        }

            .mobile-menu ul li a:hover {
                background: rgba(255,255,255,0.08);
                color: var(--gold);
            }

            .mobile-menu ul li a::after {
                content: "›";
                color: var(--soft-gold);
            }

/* ============================================================
   IMAGE SECTION
============================================================ */
.three-images {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.img-box {
    flex: 1 1 calc(33% - 20px);
    text-align: center;
    transition: var(--transition);
}

    .img-box img {
        width: 100%;
        border-radius: 12px;
        transition: var(--transition);
    }

    .img-box:hover {
        transform: translateY(-6px);
    }

        .img-box:hover img {
            transform: scale(1.05);
        }

    .img-box .line1 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 12px;
    }

    .img-box .line2 {
        font-size: 14px;
        color: #666;
    }

/* ============================================================
   FOOTER — EXTRA SHORT VERSION
============================================================ */
.footer-dark {
    background: var(--black);
    color: var(--white);
    padding: 18px 0;
    border-top: 2px solid var(--gold);
    margin-top: 20px;
}

    .footer-dark h5 {
        color: var(--gold);
        margin-bottom: 6px;
        font-size: 14px;
        text-transform: uppercase;
    }

    .footer-dark p,
    .footer-dark a {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .footer-dark a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-dark a:hover {
            color: var(--gold);
        }

    .footer-dark .row p i {
        color: var(--gold);
    }

.map-container {
    width: 50%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--soft-gold);
    margin-top: 6px;
}

.footer-dark .text-center {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

  /*  .nav-icons .search-icon {
        display: none !important;
    }*/

    .kw-hamburger {
        display: flex;
    }

    .mobile-search {
        display: block;
        margin-left: 12px;
    }

    .search-dropdown {
        top: 120px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .three-images {
        flex-direction: column;
    }

    .img-box {
        max-width: 75%;
        margin: 0 auto;
    }
}
.mobile-icons-group {
    display: flex;
    align-items: center;
    gap: 18px; /* adjust spacing */
}