﻿/* ==========================================
   HEADER
========================================== */

.gm-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0,0,0,.07);
}

.gm-header-inner {
    position: relative;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5rem;
}

/* LEFT SIDE */

.gm-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gm-btn-book {
    background: #E31E24;
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .2s;
}

    .gm-btn-book:hover {
        background: #c01920;
        color: #fff;
    }

.gm-btn-login {
    border: 1px solid rgba(0,0,0,.18);
    background: #fff;
    color: #111;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .2s;
}

    .gm-btn-login:hover {
        background: #111;
        border-color: #111;
        color: #fff;
    }

/* CENTER LOGO */

.gm-logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.gm-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* RIGHT SIDE */

.gm-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.gm-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .gm-nav a {
        position: relative;
        color: #555;
        font-size: 13px;
        font-weight: 500;
        transition: .2s;
        white-space: nowrap;
    }

        .gm-nav a:hover {
            color: #111;
        }

        .gm-nav a.active {
            color: #111;
            font-weight: 700;
        }

            .gm-nav a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -8px;
                height: 2px;
                background: #E31E24;
                border-radius: 50px;
            }

/* THEME BUTTON */

.gm-theme-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}

    .gm-theme-toggle:hover {
        color: #111;
        border-color: rgba(0,0,0,.25);
        background: rgba(0,0,0,.03);
    }

    .gm-theme-toggle i {
        font-size: 14px;
    }

/* MOBILE */

.gm-mobile-controls {
    display: none;
    align-items: center;
    gap: 4px;
}

.gm-mobile-theme-btn,
.gm-mobile-toggle {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

    .gm-mobile-theme-btn:hover,
    .gm-mobile-toggle:hover {
        color: #111;
    }

/* MOBILE DRAWER */

.gm-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.06);
}

    .gm-mobile-menu.show {
        display: block;
    }

    .gm-mobile-menu .gm-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .gm-mobile-menu a {
        display: block;
        padding: 12px 0;
        color: #111;
        font-size: 13.5px;
        font-weight: 500;
    }

        .gm-mobile-menu a:hover {
            color: #E31E24;
        }

.mobile-book-btn {
    margin-top: 15px;
    background: #E31E24;
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mobile-login-btn {
    margin-top: 10px;
    border: 1px solid rgba(0,0,0,.15);
    color: #111 !important;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .gm-header-actions,
    .gm-nav-wrapper {
        display: none;
    }

    .gm-mobile-controls {
        display: flex;
        margin-left: auto;
    }

    .gm-logo {
        height: 44px;
    }
}

@media (max-width: 768px) {

    .gm-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gm-header-inner {
        height: 68px;
        padding:0;
    }

    .gm-logo {
        height: 42px;
    }
}

@media (max-width: 480px) {

    .gm-logo {
        height: 38px;
    }
}


/* ==========================================
   FOOTER
========================================== */

.gm-footer {
    background: #1a1a1a;
    color: #fff;
    overflow: hidden;
    position: relative;
}

    .gm-footer .gm-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 56px 24px 32px;
    }

/* GRID */

.gm-footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-bottom: 48px;
}

/* TITLES */

.gm-footer-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

/* QUICK LINKS */

.gm-footer-links-grid {
    display: flex;
    gap: 32px;
}

.gm-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .gm-footer-links li {
        margin-bottom: 11px;
    }

    .gm-footer-links a {
        color: rgba(255,255,255,.55);
        font-size: 13px;
        transition: .2s;
    }

        .gm-footer-links a:hover {
            color: #fff;
        }

/* SOCIAL */

.gm-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .gm-social-links a {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.55);
        transition: .2s;
    }

        .gm-social-links a:hover {
            background: #E31E24;
            border-color: #E31E24;
            color: #fff;
        }

    .gm-social-links i {
        font-size: 15px;
    }

/* CONTACT */

.gm-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .gm-footer-contact p,
    .gm-footer-contact a {
        color: rgba(255,255,255,.55);
        font-size: 12.5px;
        line-height: 1.7;
        transition: .2s;
    }

        .gm-footer-contact a:hover {
            color: #fff;
        }

    .gm-footer-contact i {
        color: #E31E24;
        margin-right: 10px;
        width: 16px;
    }

/* ADDRESS */

.gm-address {
    color: rgba(255,255,255,.55);
    font-size: 12.5px;
    line-height: 1.7;
}

.gm-map {
    margin-top: 16px;
    width: 100%;
    height: 100px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
}

    .gm-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        opacity: .75;
    }

/* NEWSLETTER */

.gm-newsletter-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .gm-newsletter-bar span {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: rgba(255,255,255,.35);
    }

.gm-newsletter {
    display: flex;
    width: 100%;
    max-width: 320px;
}

    .gm-newsletter input {
        flex: 1;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff;
        padding: 11px 16px;
        font-size: 13px;
        outline: none;
    }

        .gm-newsletter input::placeholder {
            color: rgba(255,255,255,.25);
        }

        .gm-newsletter input:focus {
            border-color: #E31E24;
        }

    .gm-newsletter button {
        background: #E31E24;
        color: #fff;
        border: none;
        width: 52px;
        cursor: pointer;
        transition: .2s;
    }

        .gm-newsletter button:hover {
            background: #c01920;
        }

/* COPYRIGHT */

.gm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    text-align: center;
}

    .gm-footer-bottom p {
        color: rgba(255,255,255,.25);
        font-size: 11.5px;
        letter-spacing: .04em;
    }

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .gm-footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {

    .gm-footer .gm-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gm-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gm-newsletter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .gm-newsletter {
        max-width: 100%;
    }
}



.gm-account-menu {
    position: relative;
    display: inline-block;
}

/* Button */

.gm-account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid rgba(13,13,13,.15);
    border-radius: 3px;
    color: #111;
    cursor: pointer;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: .25s;
}

    .gm-account-btn:hover {
        background: #111;
        color: #fff;
    }

.gm-arrow {
    font-size: 11px;
    transition: .25s;
}

/* Dropdown */

.gm-account-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .22s;
    z-index: 99999;
}

    .gm-account-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Items */

.gm-account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #111;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

    .gm-account-item:hover {
        background: #f4f4f0;
        color: #111;
    }

    .gm-account-item i {
        color: #E31E24;
        width: 14px;
    }

.gm-divider {
    height: 1px;
    background: rgba(0,0,0,.06);
}

.gm-account-item.logout {
    color: #E31E24;
}

    .gm-account-item.logout:hover {
        background: #fff5f5;
    }}