/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Navigation styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b6b4a;
}

/* Hero section styles */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/resort-background.jpg') no-repeat center center/cover;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        padding: 0px 0;
    }
    
    .nav-menu li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}
/* Additional styles for all pages */
.page-header {
    padding: 120px 20px 40px;
    text-align: center;
    background-color: #f8f5f2;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #8b6b4a;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Rooms and Cottages styles */
.rooms-container,
.cottages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.room-card,
.cottage-card {
    display: flex;
    margin-bottom: 40px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.room-image,
.cottage-image {
    flex: 1;
    min-width: 300px;
}

.room-image img,
.cottage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details,
.cottage-details {
    flex: 1;
    padding: 30px;
}

.room-details h2,
.cottage-details h2 {
    font-family: 'Playfair Display', serif;
    color: #8b6b4a;
    margin-bottom: 15px;
}

.room-meta,
.cottage-meta {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    color: #666;
}

.btn {
    display: inline-block;
    background-color: #8b6b4a;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #6d5438;
}

/* Activities styles */
.activities-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.activity-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-details {
    padding: 20px;
}

.activity-details h2 {
    font-family: 'Playfair Display', serif;
    color: #8b6b4a;
    margin-bottom: 10px;
}

.activity-meta {
    margin: 15px 0;
    font-weight: 600;
}

/* About page styles */
.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    color: #8b6b4a;
    margin: 20px 0 15px;
}

.features-section {
    background-color: #f8f5f2;
    padding: 60px 20px;
}

.features-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #8b6b4a;
    margin-bottom: 40px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    color: #8b6b4a;
    margin-bottom: 10px;
}

/* Contact page styles */
.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: #8b6b4a;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    min-height: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .room-card,
    .cottage-card,
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .room-image,
    .cottage-image {
        min-width: 100%;
        height: 250px;
    }
    
    .page-header {
        padding: 100px 20px 30px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}
/* Booking system styles */
.booking-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.booking-details {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.room-info, .activity-info {
    flex: 1;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.booking-details form {
    flex: 1;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.booking-details h2 {
    color: #8b6b4a;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-details {
        flex-direction: column;
    }
}
/* Base Styles */
