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

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

/* Container for centering content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Navigation  */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
    border-radius: 15px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #c8a96b;

}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('image/herosecttion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
    padding: 140px 20px;
}

/* Hero Content */
.hero-content {
    max-width: 700px;
    margin: auto;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Main Button */
.btn {
    display: inline-block;
    background-color: #c8a96b;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #a88950;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #131414;
    padding: 8px 20px;
    text-decoration: none;
    border: 2px solid #a88950;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #a88950;
    color: white;
}

/* Cards */
.card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Vision and Mission Section */
.vision-mission {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.vision-mission .card {
    flex: 1;
}

.vision-mission h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #c8a96b;
    padding-bottom: 10px;
    display: inline-block;
}

/* About Developer Section */
.about-developer {
    margin-bottom: 50px;
}

.about-card {
    border-left: 5px solid #c8a96b;
}

.about-card h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.developer-desc {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

/* Contact Section */
.contact-section {
    margin-bottom: 60px;
}

.contact-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c8a96b;
}

.contact-info iframe {
    margin-top: 15px;
    border-radius: 8px;
}

/* Page Hotel Categories */
.page-title {
    background-color: #ffffff;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title h2 {
    color: #2c3e50;
    font-size: 32px;
}

.page-title p {
    color: #7f8c8d;
    margin-top: 10px;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Category Images */
.image-placeholder {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #ddd;
}


.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Categories Styling */
.category-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Room Styling */
.room-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.amenities {
    list-style-position: inside;
    color: #555;
    margin-bottom: 15px;
}

.amenities li {
    margin-bottom: 5px;
}

.price {
    font-size: 18px;
    color: #0b7cd8;

}

/* Reservation Section */
.reservation-section {
    margin-bottom: 60px;
}

.reservation-card {
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid #c8a96b;
}

.reservation-card h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.reservation-card p {
    margin-bottom: 20px;
    color: #666;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.result-box {
    margin-top: 25px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
}

.book-btn {
    margin-top: 15px;
}

/* Popup */
.popup-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 420px;
    border-radius: 10px;
    text-align: center;
    border-top: 5px solid #c8a96b;
}

.popup-content h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 10px;
}

/* Footer Styling */
footer {

    background-color: #c7b081;
    color: white;
    padding: 20px 0;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vision-mission,
    .contact-container {
        flex-direction: column;
    }
}