/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #1a3a5f;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: #f8c15c;
}

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

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Page Title Section */
.page-title {
    background-color: #1a3a5f;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Room Category Section */
.room-category {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-title {
    text-align: center;
    margin-bottom: 40px;
}

.category-title h2 {
    color: #1a3a5f;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.category-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Room Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.room-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.room-item:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    color: #1a3a5f;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.room-price {
    color: #1a3a5f;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.room-description {
    margin-bottom: 20px;
    color: #555;
}

.room-features {
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.view-details-btn {
    display: block;
    width: 100%;
    background-color: #f8c15c;
    color: #1a3a5f;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.view-details-btn:hover {
    background-color: #e9b348;
}

/* Call to Action */
.cta-section {
    background-color: #1a3a5f;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #f8c15c;
    color: #1a3a5f;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #e9b348;
}

/* Footer Styles */
footer {
    background-color: #1a3a5f;
    color: white;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-container h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f8c15c;
}

.footer-container ul {
    list-style: none;
}

.footer-container ul li {
    margin-bottom: 8px;
}

.footer-container ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container ul li a:hover {
    color: #f8c15c;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: #ddd;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: absolute;
        flex-direction: column;
        background-color: #1a3a5f;
        width: 100%;
        top: 100%;
        left: 0;
        padding: 20px;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .category-title h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

