<style>
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* ================= HEADER (LATEST) ================= */
/* HEADER */
.site-header {
    width: 100%;
    background-color: #fbf3e6;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 0 30px;
}

.nav a {
    text-decoration: none;
    color: #5a6b6a;
    font-weight: 500;
}

.top-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fbf3e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Top info strip */
.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    font-size: 13px;
    background-color: #eef2c8;
    color: #4a5d5a;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.icon {
    width: 16px;
    height: 16px;
    fill: #2f6f6a;
}

.top-info a {
    color: #2f6f6a;
    text-decoration: none;
    font-weight: 500;
}

.map-soon {
    font-style: italic;
    opacity: 0.85;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 14px;
}

.social-links a svg {
    transition: transform 0.2s ease;
}

.social-links a:hover svg {
    transform: scale(1.15);
}

/* Navigation bar */
.nav {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 14px 30px;
    background-color: #fbf3e6;
}

.nav a {
    text-decoration: none;
    color: #5a6b6a;
    font-weight: 500;
}

.nav a.active {
    color: #2f6f6a;
    border-bottom: 2px solid #2f6f6a;
    padding-bottom: 4px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.book-now-btn {
    display: inline-block;
    padding: 12px 26px;
    background-color: #2f6f6a;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-now-btn:hover {
    background-color: #245955;
    transform: translateY(-2px);
}
.book-now {
    display: inline-block;
    background-color: #2f6f6a; /* same as other buttons */
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.book-now:hover {
    background-color: #245955;
}


</style>
