/* Base Styles */
:root {
    --primary-color: #2C5E2E;
    --secondary-color: #6B8E4E;
    --accent-color: #9CA777;
    --light-color: #F7F7F2;
    --dark-color: #333;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('./img/1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

/* Rooms Section */
.room-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.room-card {
    flex: 0 0 calc(33.33% - 2rem);
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.room-card h3, .room-card p {
    padding: 0 1.5rem;
}

.room-card h3 {
    margin-top: 1.5rem;
}

.room-card p {
    padding-bottom: 1.5rem;
}

/* Nature Experience Section */
.nature-experience {
    background-color: var(--light-color);
}

.experience-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.experience-card {
    flex: 0 0 calc(33.33% - 2rem);
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Surrounding Beauty Section */
.attraction-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.attraction-card {
    flex: 0 0 calc(33.33% - 2rem);
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.attraction-card h3, .attraction-card p {
    padding: 0 1.5rem;
}

.attraction-card h3 {
    margin-top: 1.5rem;
}

.attraction-card p {
    padding-bottom: 1.5rem;
}

/* Dining Section */
.dining {
    background-color: var(--light-color);
}

.dining-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.dining-card {
    flex: 0 0 calc(33.33% - 2rem);
    margin-bottom: 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dining-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dining-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.dining-card h3, .dining-card p {
    padding: 0 1.5rem;
}

.dining-card h3 {
    margin-top: 1.5rem;
}

.dining-card p {
    padding-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(44, 94, 46, 0.9), rgba(44, 94, 46, 0.9)),
                url('https://via.placeholder.com/1920x1080/2C5E2E/FFFFFF?text=Testimonials') no-repeat center center/cover;
    color: white;
}

.testimonials h2 {
    color: white;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 0 0 calc(33.33% - 2rem);
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.guest-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.guest-name {
    font-weight: bold;
    text-align: right;
}

/* Features Section */
.feature-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.feature-card {
    flex: 0 0 calc(33.33% - 2rem);
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info {
    flex: 0 0 40%;
    padding-right: 3rem;
}

.contact-form {
    flex: 0 0 60%;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 0 0 30%;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
}

.footer-links {
    flex: 0 0 30%;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    flex: 0 0 30%;
}

.contact-item {
    display: flex;
    margin-bottom: 1.2rem;
}

.contact-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Privacy and Terms Pages */
.page-header {
    height: 30vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://via.placeholder.com/1920x1080/2C5E2E/FFFFFF?text=Forest+Haven') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.page-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: -50px auto 5rem;
    position: relative;
    max-width: 1000px;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
    height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 72px;
}

.thank-you-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
}

.thank-you-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.thank-you-card p {
    margin-bottom: 2rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .room-card,
    .experience-card,
    .attraction-card,
    .dining-card,
    .testimonial-card,
    .feature-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .contact-info {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        flex: 0 0 100%;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        padding: 1rem 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .room-card,
    .experience-card,
    .attraction-card,
    .dining-card,
    .testimonial-card,
    .feature-card {
        flex: 0 0 100%;
    }
    
    .page-content {
        padding: 1.5rem;
        margin-top: -30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}