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

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

:root {
    --burgundy: #722F37;
    --burgundy-light: #8B3A42;
    --gold: #C9A96E;
    --cream: #FBF8F4;
    --dark: #1A1412;
    --gray: #888;
}

body { font-family: 'Josefin Sans', sans-serif; background: var(--cream); color: var(--dark); }

.serif { font-family: 'Playfair Display', serif; }

nav {
    position: fixed;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(26, 20, 18, 0.9);
    backdrop-filter: blur(20px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { color: white; text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 300; }
.nav-links a:hover { color: var(--gold); }

.btn-book {
    background: var(--gold);
    color: var(--dark);
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(114,47,55,0.3), transparent);
}

.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 0 20px; }

.hero-tag { color: var(--gold); letter-spacing: 6px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 30px; }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }

.hero-search {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-search input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 0.95rem;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.5); }

.hero-search button {
    padding: 14px 30px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section { padding: 100px 60px; }

.section-tag { color: var(--gold); letter-spacing: 4px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 15px; text-align: center; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; }

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

.room-card {
    border-radius: 4px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.room-img {
    height: 280px;
    background: linear-gradient(135deg, #E8E0D8, #D4C8BC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--burgundy);
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-content { padding: 30px; }
.room-content h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; }
.room-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
.room-features { display: flex; gap: 15px; color: var(--gray); font-size: 0.8rem; }

.amenities-section { background: var(--dark); color: white; }
.amenities-section .section-tag { color: var(--gold); }
.amenities-section .section-header h2 { color: white; }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.amenity-item { text-align: center; padding: 30px 20px; }
.amenity-icon { font-size: 2.5rem; margin-bottom: 15px; }
.amenity-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.amenity-item p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.dining-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dining-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dining-img {
    height: 250px;
    background: var(--cream);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.dining-img:first-child { grid-row: span 2; }

.dining-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }
.dining-text p { color: var(--gray); line-height: 1.8; margin-bottom: 15px; }

.dining-list {
    list-style: none;
    margin-top: 25px;
}
.dining-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
}
.dining-list .name { font-weight: 600; }
.dining-list .type { color: var(--gray); }
.dining-list .time { color: var(--burgundy); font-weight: 600; }

.testimonial-section { text-align: center; background: var(--cream); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.testimonial {
    background: white;
    padding: 40px;
    border-radius: 4px;
    text-align: left;
}
.stars { color: var(--gold); margin-bottom: 15px; letter-spacing: 3px; }
.testimonial p { color: var(--gray); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; }
.testimonial-from { color: var(--gold); font-size: 0.85rem; }

.cta-section {
    background: var(--burgundy);
    color: white;
    text-align: center;
    padding: 100px 60px;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 15px; }
.cta-section p { opacity: 0.8; margin-bottom: 30px; }
.cta-btn { background: var(--gold); color: var(--dark); padding: 16px 40px; border: none; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-size: 0.9rem; }

footer {
    background: var(--dark);
    color: white;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.4); margin-top: 15px; line-height: 1.7; }
.footer-col h4 { color: var(--gold); margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; padding: 5px 0; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 60px; background: #110D0B; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; }