/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #093029;
    overflow-x: hidden;
}


/* Header */
header {
    background-color: #004d40;
    color: white;
    padding: 20px 0;
    text-align: center;
    
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Property Details Section */
#property-details {
    text-align: center;
    padding: 30px;
    background-color: white;
    color: #04372e;
    font-family: emoji;
}

.details-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.details-box {
    width: 300px;
    background-color: #00796b;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.details-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #76e2cf;
}

.details-box p {
    margin: 0;
    font-size: 16px;
    color: #c1e0db;
}

.details-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #c1e0db;
}

.details-box ul li {
    font-size: 16px;
}

/* Guest Details Section */
#guest-details {
    background: #c8e6c9;
   
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
}

#guest-details h2 {
    color: #093029;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.guest-info label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    color: #093029;
}

.guest-info input {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
#guest-details form {
    display: flex;
    flex-direction: column;
}

/* Booking Section */
#booking {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #aee0bf;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h2 {
    text-align: center;
    color: #004d40;
    
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 12px;
    font-size: 18px;
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #004d40;
}



/* Price Display */
h3 {
    text-align: center;
    color: #004d40;
    font-size: 25px;
    margin-top: 30px;
    font-family: emoji;
}

/* Centering Headings */
.image-section {
    text-align: center;
    margin-bottom: 30px;
}

.image-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* Closed Dates Notice Box */
.closed-dates-box {
    background-color: #ffe6e6; 
    color: #b30000; 
    padding: 15px;
    border-radius: 8px;
    margin: 20px auto;
    font-weight: bold;
    border: 2px solid #ff4d4d; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    text-align: center;
}

/* Closed Dates List Styling */
.closed-dates-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.closed-dates-box li {
    padding: 5px 0;
    font-size: 16px;
    color: #800000; 
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .closed-dates-box {
        padding: 10px;
        font-size: 14px;
        width: 90%;
    }
}


/* Image Container */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Uniform Image Size */
.image-grid img, .image-carousel img {
    width: 250px; 
    height: 180px; 
    object-fit: cover;
    border-radius: 10px;
}

/* Horizontal Scroll for Carousel */
.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
}


.logo {
    width: 120px; 
    height: auto;
    
}

#location {
    width: 90%; 
    max-width: 800px; 
    height: auto; 
    margin: 40px auto; 
    text-align: center;
    padding: 20px; 
}
#location iframe {
    width: 100%; 
    height: 400px; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

/* Media Query for Mobile */
@media (max-width: 600px) {
    #location iframe {
        height: 250px; 
    }
}

html, body {
    overflow-x: hidden;
}

* {
    max-width: 100vw;
}
