.site-navbar,
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    padding: 15px 0;
}

.site-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue) !important;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--secondary-blue) !important;
}

.hero,
.booking-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero {
    padding: 160px 0 100px;
}

.booking-hero {
    padding: 150px 0 70px;
}

.hero::after,
.booking-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero::after {
    height: 100px;
}

.booking-hero::after {
    height: 70px;
}

.hero .container,
.booking-hero .container {
    position: relative;
    z-index: 2;
}

.about-img-container,
.img-grid-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

footer {
    background: var(--dark);
    color: #bdc3c7;
    padding: 60px 0 30px;
}

.footer-credit {
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
}

.footer-credit a {
    color: #999;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-credit a:hover {
    color: var(--secondary-blue);
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.15rem;
        max-width: 75%;
    }

    .hero {
        padding: 120px 0 140px;
        text-align: center;
    }

    .booking-hero {
        padding: 120px 0 60px;
    }

    .hero::after {
        height: 60px;
    }

    .booking-hero::after {
        height: 45px;
    }

    .hero .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }

    .hero .btn {
        width: 100%;
    }
}
