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

:root {
    --cream: #fdcfa1;
    --white: #ffffff;
    --gold: #e9ae00;
    --teal: #4093a4;
    --coral: #d6553f;
    --text-dark: #2c2c2c;
    --text-light: #666666;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

h3 {
    font-size: 24px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--coral);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.menu-toggle {
    justify-self: start;
    grid-column: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.menu-toggle:hover span {
    opacity: 0.8;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--teal);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.menu-overlay.active {
    display: flex;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.menu-content a {
    color: var(--cream);
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.menu-content a:hover {
    color: var(--gold);
}

.nav-logo {
    justify-self: center;
    grid-column: 2;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.nav-book {
    justify-self: end;
    grid-column: 3;
}

.nav-logo img {
    height: 240px;
    width: auto;
    display: block;
    padding: 0;
    margin: 0;
}

.nav-book {
    background: var(--teal);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.nav-book:hover {
    background: var(--gold);
    opacity: 1;
}

/* Hero */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 240px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-hero {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--coral) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.hero-logo {
    margin-bottom: 60px;
}

.hero-logo img {
    max-width: 350px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
}

.hero h1 {
    font-size: 48px;
    font-weight: 400;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    max-width: 700px;
    margin: 0 auto;
}

/* Intro */
.intro {
    padding: 100px 0;
    background: var(--white);
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

/* Split Sections */
.split-section {
    background: var(--white);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-text h2 {
    color: var(--teal);
    margin-bottom: 24px;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-split {
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 20px;
}

.reverse .split-content {
    direction: rtl;
}

.reverse .split-text {
    direction: ltr;
}

/* Rooms */
.rooms {
    padding: 100px 0;
    background: var(--cream);
}

.rooms h2 {
    text-align: center;
    color: var(--teal);
    margin-bottom: 60px;
    font-size: 42px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.room-card:hover img {
    transform: scale(1.05);
}

.placeholder-room {
    width: 100%;
    height: 100%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

/* Booking */
.booking {
    padding: 100px 0;
    background: var(--white);
}

.booking h2 {
    text-align: center;
    color: var(--teal);
    margin-bottom: 60px;
    font-size: 42px;
}

.booking-embed {
    max-width: 900px;
    margin: 0 auto;
}

.booking-placeholder {
    padding: 100px 40px;
    background: #f8f8f8;
    border: 2px dashed #ddd;
    border-radius: 4px;
    text-align: center;
}

.booking-placeholder p {
    color: #999;
    margin: 8px 0;
}

/* Footer */
footer {
    background: var(--teal);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px;
}

.footer-info h3 {
    margin-bottom: 20px;
}

.footer-info p {
    margin: 8px 0;
    font-size: 16px;
}

.footer-info a {
    color: var(--cream);
    text-decoration: none;
}

.footer-info a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 40px;
    text-align: center;
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 968px) {
    .nav-logo img {
        height: 160px;
    }
    
    .nav-container {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0 20px;
    }
    
    .menu-toggle {
        grid-column: 1;
        justify-self: center;
    }
    
    .nav-logo {
        grid-column: 1;
        justify-self: center;
    }
    
    .nav-book {
        grid-column: 1;
        justify-self: center;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 240px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-logo img {
        max-width: 220px;
    }
    
    .hero-logo {
        margin-bottom: 40px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
    }
    
    .reverse .split-content {
        direction: ltr;
    }
    
    .split-text {
        padding: 60px 30px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .container, .container-narrow, .nav-container, .footer-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 18px;
    }
}
