/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6 {
    padding: 0 15px;
    flex: 1;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.top-bar {
    background: #2c5530;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
    text-align: center;
}

.main-header {
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    position: relative;
    margin-left: 30px;
}

.menu > li > a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.menu > li > a:hover,
.menu > li > a.active {
    color: #d4af37;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #d4af37;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 85, 48, 0.7), rgba(44, 85, 48, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 100px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h5 {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.features h2 {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature h5 {
    color: #2c5530;
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-text h2 {
    color: #2c5530;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: #f8f9fa;
}

.rooms h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.rooms h2 {
    margin-bottom: 50px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.room-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Garden Section */
.garden {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/garden.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.garden-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.garden-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Location Section */
.location {
    padding: 80px 0;
}

.location h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.location h2 {
    margin-bottom: 20px;
}

.location > .container > .text-center > p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.attractions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.attraction {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.attraction:hover {
    transform: translateY(-3px);
}

.attraction h5 {
    color: #2c5530;
    margin-bottom: 15px;
}

.attraction p {
    line-height: 1.6;
}

/* Room Overview Section */
.room-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.room-description {
    margin-bottom: 30px;
}

.room-description p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.room-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h1 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.room-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Facilities Section */
.facilities {
    padding: 80px 0;
}

.facility-category {
    margin-bottom: 50px;
}

.facility-category h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.facility-category h2 {
    margin-bottom: 30px;
}

.facility-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item h5 {
    color: #2c5530;
    margin-bottom: 10px;
}

/* Photo Gallery */
.photo-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Rates Section */
.rates-overview {
    padding: 80px 0;
}

.rate-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-10px);
}

.rate-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rate-content {
    padding: 25px;
}

.rate-content h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.rate-content h5 {
    color: #d4af37;
    margin-bottom: 15px;
}

.rate-content p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.amenities-header {
    text-align: center;
    margin-bottom: 50px;
}

.amenities-header h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.amenity-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
}

.amenity-item h5 {
    color: #2c5530;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #d4af37;
}

.contact-info {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quick-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.quick-contact h4 {
    color: #19673f;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-contact p {
    margin-bottom: 10px;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials h2 {
    text-align: center;
    color: #19673f;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

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

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #d4af37;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #19673f;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.testimonial-author::before {
    content: '★';
    color: #d4af37;
    margin-right: 8px;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
}

/* Booking Sidebar Styles */
.booking-sidebar {
    padding: 20px;
}

.host-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #19673f;
}

.host-info h3 {
    color: #19673f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.booking-details-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.booking-details-card:hover {
    box-shadow: 0 4px 16px rgba(25,103,63,0.12);
}

.booking-details-card h4 {
    color: #19673f;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-details-card h4 i {
    color: #d4af37;
    font-size: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.detail-value {
    color: #19673f;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

/* Directions Section */
.directions-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h6 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.direction-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.direction-card h5 {
    color: #2c5530;
    margin-bottom: 20px;
}

.direction-card ul {
    list-style: none;
    padding: 0;
}

.direction-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.direction-card li:before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Booking Info */
.booking-info {
    padding: 80px 0;
    background: #2c5530;
    color: #fff;
}

.booking-details p,
.cancellation-policy p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cancellation-policy p:first-child {
    font-weight: bold;
    color: #d4af37;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #d4af37;
    color: #fff;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright,
.footer-credit {
    flex: 1;
    text-align: center;
}

.footer-social {
    flex: 1;
    text-align: center;
}

.social-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Partners Section */
.partners {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
    text-align: center;
}
.partners h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #19673f;
    font-weight: 700;
    letter-spacing: 1px;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 900px;
}
.partner {
    flex: 0 1 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 18px 12px;
    transition: box-shadow 0.2s;
    min-height: 120px;
}
.partner:hover {
    box-shadow: 0 4px 16px rgba(25,103,63,0.12);
}
.partner img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    margin-bottom: 0;
    object-fit: contain;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.2s, transform 0.2s;
}
.partner img:hover {
    filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px #19673f22);
    transform: scale(1.07);
}
@media (max-width: 900px) {
    .partners-grid {
        gap: 1.5rem;
    }
    .partner {
        flex: 0 1 40vw;
        min-width: 120px;
    }
}
@media (max-width: 600px) {
    .partners {
        padding: 40px 0 20px 0;
    }
    .partners-grid {
        flex-direction: column;
        gap: 1.2rem;
    }
    .partner {
        width: 90vw;
        min-width: 0;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu > li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu > li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .room-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .room-overview,
    .facilities,
    .photo-gallery,
    .rates-overview,
    .amenities-section,
    .contact-section,
    .directions-section,
    .map-section,
    .booking-info,
    .features,
    .about,
    .rooms,
    .garden,
    .location {
        padding: 60px 0;
    }
} 