@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Josefin+Sans:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1a202c;
    --accent: #3182ce;
    --accent-hover: #1159af;
    --text: #2d3748;
    --text-muted: #718096;
    --border: #edf2f7;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Josefin Sans', sans-serif;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    min-height: 98px;
}
.navbar-brand {
    display: flex; align-items: center; gap: 16px;
    text-decoration: none; color: var(--text);
}
.navbar-logo {
    width: 70px; height: 47px;
    flex-shrink: 0;
}
.navbar-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
}
.navbar-brand-text .name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 25px; font-weight: 700; line-height: 1;
    color: #2d3748;
}
.navbar-brand-text .address {
    font-family: 'Lato', sans-serif;
    font-size: 16px; font-weight: 300;
    color: #718096;
    text-transform: uppercase; letter-spacing: 2px;
    margin-top: 0.4375em;
}
.navbar-links {
    display: flex; align-items: center;
}
.navbar-links a:not(.btn-book) {
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    color: #2d3748;
    font-size: 17px;
    font-weight: 600;
    padding: 0.6em 0.5em;
    transition: color 0.2s ease-in-out;
    margin-right: 4px;
}
.navbar-links a:not(.btn-book):hover { color: var(--accent); }
.btn-book {
    background: #3182ce;
    color: #fff;
    border: 0;
    border-radius: 3px;
    padding: .4em 1em;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.6;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 -7px rgba(0,0,0,0);
    margin-left: 8px;
}
.btn-book:hover { background: #1159af; box-shadow: 0 15px 25px -7px rgba(0,0,0,0.1); }

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 40px 40px 28px;
    font-size: 0.82rem;
}
.footer-logo { margin-bottom: 12px; }
.footer-logo img { width: 90px; opacity: 0.75; }
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 7px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.8rem; font-weight: 300;
    letter-spacing: 0.07em; text-transform: uppercase;
    transition: color 0.15s, border-color 0.15s;
}
.footer-social a:hover { color: #fff; border-color: #fff; }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 20px;
}
.footer-bottom {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 12px;
}
.footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer a:hover { color: #fff; }

/* --- Hamburger --- */
.navbar-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    flex-direction: column; gap: 5px;
    flex-shrink: 0;
}
.navbar-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Responsive --- */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        flex-wrap: wrap;
        min-height: 72px;
        align-items: center;
    }
    .navbar-toggle { display: flex; }
    .navbar-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: #fff;
        border-top: 1px solid var(--border);
        padding: 12px 0 16px;
        gap: 0;
    }
    .navbar-links.open { display: flex; }
    .navbar-links a:not(.btn-book) {
        width: 100%; padding: 10px 20px;
        font-size: 1rem; margin-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .navbar-links a:not(.btn-book):last-of-type { border-bottom: none; }
    .btn-book {
        margin: 14px 20px 0;
        display: inline-block;
        width: calc(100% - 40px);
        text-align: center;
    }
    /* Offset for smaller navbar height */
    .page-wrap, .hero { margin-top: 0; }
}
