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

:root {
    --bg: #faf7f2;
    --card: #ffffff;
    --text: #2b2b2b;
    --dim: #777;
    --accent: #b3764a;
    --accent-dark: #96603a;
    --line: #e8e0d5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
    color: var(--dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

.nav-phone {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: var(--accent); }

.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('photos/room1/IMG_3335.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 25, 20, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-small { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

.btn-big { font-size: 1.15rem; padding: 1.1rem 2.8rem; }

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.section-sub {
    text-align: center;
    color: var(--dim);
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }

.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature p { color: var(--dim); font-size: 0.92rem; line-height: 1.6; }

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

.room-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,0.09); }

.room-photo {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.room-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(30, 25, 20, 0.75);
    color: #fff;
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    pointer-events: none;
}

.room-info { padding: 1.5rem; }

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.room-info p { color: var(--dim); font-size: 0.92rem; margin-bottom: 1.2rem; line-height: 1.6; }

.contacts { text-align: center; }

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem;
}

.contact-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.contact-card p { font-size: 1.15rem; }

.contact-card .contact-name {
    font-size: 0.9rem;
    color: var(--dim);
    margin-top: 0.4rem;
}

.contact-card a { color: var(--text); text-decoration: none; }
.contact-card a:hover { color: var(--accent); }

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.2rem; }
    .nav-phone { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--line);
    }
    .nav-links.open { display: flex; }
    .burger { display: flex; }
}
