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

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: gold;
}

.hero {
    height: 100vh;
    background: url("../images/hotel.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-size: 55px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background: gold;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn:hover {
    background: #d4af37;
    transition:0.3s;
}

section {
    padding: 100px 0;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

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

.room-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.room-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: gold;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
    font-size: 18px;
}

.booking-form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form button {
    padding: 12px;
    background: gold;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.booking-form button:hover {
    background: #d4af37;
}

.footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media(max-width:768px){
    .nav{
        display:none;
        flex-direction: column;
        position:absolute;
        top:60px;
        right:20px;
        background:#000;
        padding:20px;
        border-radius:10px;
    }
    .nav.active{
        display:flex;
    }
    .hamburger{
        display:block;
    }
}
