* {
    box-sizing: border-box
}

body {
    min-height: 100dvh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6
}

a {
    color: #fff;
    text-decoration: none
}

.container {
    width: min(1200px, 92%);
    margin: auto
}

header {
    background: #090909;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: #bbb
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #555;
    color: #fff;
    font-size: 26px;
    padding: 4px 10px;
    border-radius: 5px
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center
}

nav li {
    position: relative
}

nav a,
nav .dropdown-title {
    display: block;
    padding: 12px 14px;
    cursor: pointer
}

nav a:hover,
nav .dropdown-title:hover {
    background: #222;
    border-radius: 5px;
    color: #fff
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 190px;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 6px
}

.dropdown a {
    padding: 9px 12px
}

.has-dropdown:hover .dropdown {
    display: block
}


.hero {
    min-height: 68dvh;;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(#0008, #0008), url('../images/banner.jpg') center/cover no-repeat
}

.hero h1 {
    font-size: clamp(32px, 8vw, 82px);
    margin: 0
}

.hero p {
    font-size: 20px;
    color: #ddd
}

.section {
    padding: 20px 0
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 7px;
    cursor: pointer;
    transition: .25s
}

.gallery img:hover {
    transform: scale(1.02)
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: #000f;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 38px
}

.contact-card {
    border: 1px solid #333;
    padding: 25px;
    border-radius: 8px;
    max-width: 650px
}

.contact-card p {
    font-size: 18px
}

footer {
    background: #0b0b0b;
    border-top: 1px solid #222;
    text-align: center;
    padding: 22px;
    margin-top: 60px;
    color: #ccc
}

@media(max-width:768px) {
    .menu-toggle {
        display: block
    }

    nav {
        display: none;
        width: 100%
    }

    .nav-wrap {
        flex-wrap: wrap;
        padding: 12px 0
    }

    nav.open {
        display: block
    }

    nav ul {
        display: block
    }

    nav li {
        border-top: 1px solid #222
    }

    .dropdown {
        position: static;
        border: 0;
        padding-left: 20px;
        background: #151515
    }

    .has-dropdown.open .dropdown {
        display: block
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px
    }

    .section {
        padding: 40px 0
    }
}

@media(max-width:480px) {
    .logo {
        font-size: 23px
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery img {
        aspect-ratio: 1/1
    }

    /* =========================================
   MOBILE MENU FIX
   ========================================= */

    .dropdown-title {
        background: none;
        border: none;
        color: #fff;
        font-family: inherit;
        font-size: inherit;
        cursor: pointer;
        padding: 12px 14px;
        width: 100%;
        text-align: left;
    }

    .dropdown-title:hover {
    background: #222;
    border-radius: 5px;
    color: #fff
    }
    .menu-toggle {
        display: none;
        background: transparent;
        color: #fff;
        border: 1px solid #555;
        border-radius: 5px;
        font-size: 25px;
        padding: 5px 10px;
        cursor: pointer;
    }

    .has-dropdown {
        position: relative;
    }

    .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: #111;
        border: 1px solid #333;
        z-index: 2000;
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }


    /* =========================================
   MOBILE
   ========================================= */

    @media (max-width: 768px) {

        .nav-wrap {
            flex-wrap: wrap;
        }

        .menu-toggle {
            display: block;
        }

        nav {
            display: none;
            width: 100%;
        }

        nav.open {
            display: block;
        }

        nav ul {
            display: block;
            width: 100%;
            padding: 0;
            margin: 10px 0 0;
        }

        nav li {
            width: 100%;
            border-top: 1px solid #222;
        }

        nav a,

        .dropdown {
            position: static;
            width: 100%;
            border: none;
            background: #151515;
            padding-left: 15px;
        }

        .has-dropdown:hover .dropdown {
            display: none;
        }

        .has-dropdown.open .dropdown {
            display: block;
        }
    }

    /* =========================================
   LOCATION PAGE
   ========================================= */

    .locations {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 30px;
    }

    .location-card {
        background: #111;
        border: 1px solid #333;
        border-radius: 10px;
        padding: 20px;
    }

    .location-card h2 {
        margin-top: 0;
    }

    .map-image {
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .map-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .map-button {
        display: inline-block;
        background: #fff;
        color: #000;
        padding: 12px 20px;
        border-radius: 5px;
        font-weight: bold;
        margin-top: 10px;
    }

    .map-button:hover {
        background: #ccc;
    }


    /* Mobile */

    @media (max-width: 768px) {

        .locations {
            grid-template-columns: 1fr;
        }

        .map-image {
            height: 250px;
        }

    }
}