
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

/* Full-width header and footer */
.header, .footer {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #007bff;
    color: #fff;
}

/* Rooms container styling */
.content-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rooms-container {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Responsive room grid */
@media (min-width: 768px) {
    .rooms-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .rooms-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1280px) {
    .rooms-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rooms-container {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.room-card {
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.room-card:hover {
    transform: scale(1.02);
}
.room-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.room-table td {
    padding: 8px 10px;
    vertical-align: top;
}
.room-table th {
    font-weight: bold;
    padding-bottom: 5px;
}
.room-price {
    font-size: 1.2em;
    color: #007bff;
    font-weight: bold;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive grid layout */
@media (min-width: 768px) {
    .rooms-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
    }
}
@media (min-width: 1024px) {
    .rooms-container {
        grid-template-columns: repeat(3, 1fr); /* Three columns on large screens */
    }
}
@media (min-width: 1280px) {
    .rooms-container {
        grid-template-columns: repeat(4, 1fr); /* Four columns on extra-large screens */
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eaf6f6;
    color: #333;
}

/* Header Styles */
.header {
    background: linear-gradient(45deg, #003366, #005080);
    color: #fff;
    padding: 10px;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header h2 {
    font-weight: 700;
    font-size: 1.8em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00c2a9;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: url('https://source.unsplash.com/featured/?hotel-lobby') no-repeat center center/cover;
    color: #fff;
    padding: 100px 50px;
    gap: 20px;
}

.hero-content {
    max-width: 50%;
    color: darkblue;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.search-section {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 300px;
    width: 100%;
}

.search-section h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.search-section label {
    font-size: 1em;
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.search-section input,
.search-section button {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

.search-section button {
    background-color: #00c2a9;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.search-section button:hover {
    background-color: #00a996;
}

/* Footer */
.footer {
    background: white;
    color:#999999;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    font-size: 0.9em;
    margin-top: 10px;
}

.footer a {
    color: #00c2a9;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    color: #00a996;
}
h3{
    text-align: center;
    color: darkblue;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content,
    .search-section {
        max-width: 100%;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .header h2 {
        font-size: 1.4em;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .search-section input,
    .search-section button {
        font-size: 0.9em;
        padding: 8px;
    }

}
.links-card, .content-card {
    background-color: #f9f9f9; /* Light background for cards */
    border: 1px solid #ddd; /* Light border for cards */
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Inner padding */
    margin: 10px; /* Outer margin */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}
.links-card {
    flex: 1; /* Allow links card to grow */
    min-width: 200px; /* Minimum width for links card */
    margin-right: 20px; /* Space between the two cards */
}
.content-card {
    flex: 2; /* Allow content card to take more space */
}
.search-section {
    margin-bottom: 30px;
}
.form-group a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    display: block;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.form-group a:hover {
    background-color: #007bff;
    color: #ffffff;
}
.alert {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid transparent;
    border-radius: 4px;
}
.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
}
.customer-section {
    display: none; /* Initially hide both sections */
}
/* Responsive styling for form */
.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.form-group {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .form-group {
        flex: 0 0 100%; /* Full width on small screens */
    }
}