:root {
    --primary: #1e88e5;
    --surface: #f8f9fa;
    --text: #333;
    --radius: 12px;
}

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

body {
    font-family: system-ui, sans-serif;
    color: var(--text);
    line-height: 1.6;
    word-wrap: break-word;
}

/* --- Container --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- Nav --- */
.nav {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.logo {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
}

/* --- Menu --- */
.menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 4px 0;
    position: relative;
}

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

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero --- */
.hero {
    text-align: center;
    padding: 40px 16px;
    background: var(--surface);
}

.hero h1 {
    font-size: 26px;
    margin-bottom: 12px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: #555;
}

/* --- Buttons --- */
.btn {
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    text-align: center;
}

.btn:hover {
    background: #1565c0;
}

.btn.outline {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* --- Sections --- */
.section {
    padding: 40px 16px;
    text-align: center;
}

.section h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.sub {
    color: #666;
    margin-bottom: 30px;
}

/* --- Grid & Cards --- */
.<section class="section"style="background:var(--surface)"><div class="container"><h2>Popular Rooms</h2><p class="sub">Comfortable options for solo travellers,
couples,
and families.</p><div class="grid"><article class="card room"><div class="media"><img src="/images/room-1.jpg"alt="Standard Room"width="1280"height="963"loading="lazy"></div><div class="body"><h3>Standard Room</h3><p>Queen bed • AC • Free Wi-Fi</p><div class="price">₹1,
499 / night</div></div></article><article class="card room"><div class="media"><img src="/images/room-2.jpg"alt="Deluxe Room"width="1280"height="963"loading="lazy"></div><div class="body"><h3>Deluxe Room</h3><p>King bed • City view • Breakfast</p><div class="price">₹1,
999 / night</div></div></article><article class="card room"><div class="media"><img src="/images/room-3.jpg"alt="Family Room"width="1280"height="963"loading="lazy"></div><div class="body"><h3>Family Room</h3><p>2 Queen beds • Extra space</p><div class="price">₹2,
699 / night</div></div></article></div><div style="margin-top:16px;text-align:center"><a class="btn"href="/rooms.html">See all rooms</a></div></div></section>

.price {
    font-weight: 700;
    margin-top: 6px;
}

/* --- Footer --- */
.footer {
    padding: 20px 16px;
    background: #f1f1f1;
    font-size: 14px;
    text-align: center;
    margin-top: 30px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 16px;
        width: 200px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: var(--radius);
    }

    .menu.open {
        display: flex;
    }

    .burger {
        display: block;
    }

    .grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        display: block;
        margin: 8px auto;
        width: 90%;
    }

    .card {
        text-align: center;
    }
}