/* base.css - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,100..1000;1,100..1000&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --font-main: 'DM Sans', sans-serif;
}

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

body { 
    font-family: var(--font-main); 
    background-color: var(--white); 
    color: var(--black); 
    line-height: 1.2; 
    overflow-x: hidden; 
}

/* --- TYPOGRAPHY --- */
h1, .h1-large-white {
    font-size: 90px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 800;
    line-height: 0.9 !important;
    letter-spacing: -2px;
    /* Ensures title sits above hero overlays */
    position: relative;
    z-index: 3;
}

h2, .section-title {
    font-size: 40px !important;
    line-height: 1.1 !important;
    text-transform: none !important; 
    font-weight: 800;
    margin-bottom: 40px;
}

h3, h4 { font-weight: 800; }
p, li, span, a, div { font-weight: 400; font-size: 16px; }

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 5%; background: var(--white); position: sticky; top: 0; z-index: 1000;
}
.logo a { display: block; line-height: 0; }
.logo img { height: 45px; width: auto; border: none; }

.nav-links { display: flex; align-items: center; }
.nav-links a { 
    text-decoration: none; color: black; font-size: 13.2px; 
    font-weight: 700; margin-left: 25px; text-transform: none; 
}

.btn-black-nav { 
    background: black; color: white !important; padding: 12px 24px; 
    font-size: 13.2px; text-decoration: none; display: inline-block; font-weight: 700; 
    transition: opacity 0.3s ease;
}
.btn-black-nav:hover { opacity: 0.8; }

/* Burger Icon */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background-color: black; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- SECTIONS --- */
.section-dark { background: var(--black); color: var(--white); padding: 100px 5%; }
.section-white { background: var(--white); color: var(--black); padding: 100px 5%; }
.content-narrow { max-width: 900px; margin: 0; }

/* --- FOOTER --- */
.main-footer { 
    background-color: #000000 !important; color: #ffffff; 
    padding: 100px 5% 60px; border-top: 1px solid #333333; width: 100%;
}
.footer-cta-row { background: transparent !important; margin-bottom: 60px; }
.footer-cta-row h2 { max-width: 480px; line-height: 1.2; color: #fff !important; }

.btn-book { 
    background: #ffffff; color: #000000; padding: 14px 40px; 
    display: inline-block; font-weight: 700; font-size: 13px; text-decoration: none; 
    transition: opacity 0.3s ease;
}
.btn-book:hover { opacity: 0.8; }

.footer-bottom-row { 
    display: flex; justify-content: flex-end; align-items: flex-end; 
    margin-top: 60px; background: transparent !important; 
}
.footer-logo a { display: block; line-height: 0; }
.footer-logo img { height: 60px; width: auto; display: block; }

/* --- GLOBAL RESPONSIVE --- */
@media (max-width: 1024px) { 
    .footer-cta-row h2 { max-width: 100%; } 
}

@media (max-width: 768px) {
    /* Mobile Typography Scaling */
    h1, .h1-large-white { font-size: 50px !important; letter-spacing: -1px; }
    h2, .section-title { font-size: 32px !important; margin-bottom: 30px; }

    /* Mobile Nav Bar */
    .menu-toggle { display: flex; z-index: 1001; }
    .nav-links {
        display: none; position: fixed; top: 0; right: 0; height: 100vh; width: 85%;
        background: var(--white); flex-direction: column; justify-content: center;
        align-items: center; box-shadow: -10px 0 20px rgba(0,0,0,0.1); z-index: 1000;
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }
    
    .footer-bottom-row { justify-content: flex-start; }
    
    .section-dark, .section-white { padding: 60px 5%; }
}