* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    
}


/* Navigation */

nav {
    background: #111827;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #fbbf24;
}


/* Hero Section */

.hero {
    background-image: url("hotel.png");
    background-size: cover;
    background-position: center;
    height: 500px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero button {
    padding: 2px 25px;
    background: #fbbf24;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.hero button:hover {
    background: white;
}


/* Sections */

.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    color: #111827;
}


/* Rooms */

.rooms-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}

.rooms {
    display: flex;
    gap: 30px;
    padding: 50px;
    justify-content: center;
}

.room-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.room-card img {
    width: 100px;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    margin: 10px;
}

.room-card p {
    margin: 10px;
    color: #555;
}

.room-card:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.price {
    color: #fbbf24;
    font-weight: bold;
    margin-top: 10px;
}

.services {
    padding: 60px 20px;
    background-color: #F1F5F9;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.service-item {
    display: flex;
    /* THIS makes icon go left */
    align-items: center;
    gap: 15px;
    /* space between icon & text */
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 40px;
    height: 40px;
}

.service-item p {
    font-size: 16px;
    color: #333;
}
contact-item {
    display: flex;
    /* THIS makes icon go left */
    align-items: center;
    gap: 15px;
    /* space between icon & text */
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 15px;
}
.dark-mode {
    background-color: #111827;
    color: white;
}

.dark-mode nav {
    background-color: black;
}

.dark-mode .section {
    background-color: #1f2937;
}
.book-btn {
    background: #F59E0B;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;

}
.confirmation-card {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #ECFDF5;
    border: 1px solid #10B981;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
