/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.navbar {
    background-color: #5b1f15; /* Dark brown background */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Logo and Title - Desktop Layout */
.logo {
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    text-align: center;
    width: 100%; /* Ensures full width for centering */
}

/* Logo Styling */
.logo img {
    width: 80px; /* Adjust as needed */
    height: 80px; /* Adjust logo size */
    margin-right: 10px;
}

/* Hotel Name */
.logo h1 {
    font-size: 20px;
    font-weight: bold;
    color: gold;
    margin-left: 10px; 
}

/* 📱 Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically */
        text-align: center;
    }

    .logo {
        flex-direction: column; /* Stack logo and title */
    }

    .logo img {
        width: 80px; /* Slightly bigger logo for mobile */
    }

    .logo h1 {
        font-size: 22px; /* Adjust text size */
    }
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hotel Info Section */
.hotel-info {
    text-align: left; /* Ensures overall left alignment */
    font-family: "Arial", sans-serif; /* Change font family */
    padding: 20px;
    color: #333;
}

.hotel-info h2 {
    font-size: 28px; /* Increase font size */
    font-family: "Georgia", serif; /* Change font */
    color: #a52a2a; /* Change color (brownish shade) */
    margin-bottom: 8px;
    line-height: 2.0;
    margin-right: -60px;
}

.hotel-info p {
    text-align: left; /* Aligns text to the left */
    font-size: 16px; /* Increase font size */
    font-family: "Verdana", sans-serif; /* Change font */
    color: #011f16; /* Change text color */
    margin-right: -45px; /* Moves the paragraph more to the left */
    line-height: 3.0;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Enquiry Form Card */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 375px;
    height: auto; /* Ensures height adjusts based on content */
    min-height: 200px; /* Optional: Set a minimum height */
}

.card h3 {
    margin-top: 0;
    text-align: center;
}

/* Form Elements */
.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: #a52a2a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.form-group button:hover {
    background-color: #8b1e1e;
}

/* 📱 Mobile Responsive Styles */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hotel-info {
        width: 90%;
        padding: 10px;
    }

    .card {
        width: 90%;
        padding: 15px;
    }
}
