:root {
    /* Brand Colors from Style Guide */
    --primary-dark: #371419;
    --primary-green: #3a9b2a;
    --dark-green: #1b5e20;
    --light-green: #a5d6a7;
    --accent-green: #7b9b6f;
    --accent-beige: #feebb4;
    
    /* Background & Neutral Colors */
    --light-bg: #f9f5f0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
    background-image: url('../files/PATTERN.png');
    background-repeat: repeat;
    background-size: 200px;
    background-blend-mode: multiply;
    background-color: rgba(249, 245, 240, 0.9);
    padding-top: 80px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
}

h1 {
    color: var(--dark-green);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    border-radius: 2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(55, 20, 25, 0.75), rgba(58, 88, 42, 0.75));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(55, 20, 25, 0.15);
    position: fixed;
    width: calc(100% - 40px);
    margin: 10px 20px;
    top: 0;
    z-index: 1000;
    height: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

header.hide-header {
    transform: translateY(-120px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    height: 100%;
}

.logo img {
    height: 40px;
    width: auto;
    max-height: 40px;
    object-fit: contain;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--accent-beige);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-beige);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
}

header .call-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    font-size: 0.85rem;
}

header .call-btn:hover {
    background: var(--accent-beige);
    color: var(--primary-dark);
    border-color: var(--accent-beige);
}

header .book-now-btn {
    background: var(--accent-beige);
    color: var(--primary-dark);
    padding: 8px 16px;
    font-size: 0.85rem;
}

header .book-now-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.book-now-btn, .call-btn, .hero-btn, .package-btn, .submit-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.book-now-btn:hover, .call-btn:hover, .hero-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1rem;
}

/* Cards */
.package-card, .facility-card, .testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(55, 20, 25, 0.1);
    transition: transform 0.3s;
    border: 2px solid var(--accent-beige);
}

.package-card:hover, .facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(55, 20, 25, 0.15);
}

.package-header {
    background-color: var(--primary-green);
    color: white;
    padding: 25px 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-beige);
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--accent-beige);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent-beige);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .header-buttons {
        display: none;
    }
    
    .mobile-header-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }
}

/* ===== PAGE HEADER STYLES (Shared Across All Pages) ===== */
.page-header {
    background-size: cover;
    background-position: center;
    color: var(--accent-beige);
    padding: 150px 0 80px;
    text-align: center;
    background-blend-mode: multiply;
}

.page-header h1 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    padding: 16px 32px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 2.8rem;
    margin: 0;
}

/* ===== INDEX/HERO PAGE STYLES ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 70px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 90%;
    padding: 0 15px;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 250px;
}

.hero-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
}

/* ===== MENU PAGE STYLES ===== */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-tab, .category-filter {
    padding: 12px 25px;
    background-color: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--primary-dark);
}

.category-tab.active,
.category-tab:hover,
.category-filter.active,
.category-filter:hover {
    background-color: var(--primary-green);
    color: white;
}

.menu-category-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category-content.active,
.gallery-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.menu-section {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(55, 20, 25, 0.1);
    border: 2px solid var(--accent-beige);
}

.menu-header {
    background-color: var(--primary-green);
    color: white;
    padding: 20px;
    text-align: center;
}

.menu-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.menu-header .subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.menu-item {
    padding: 20px;
    border-bottom: 1px solid rgba(123, 155, 111, 0.15);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FACILITY PAGE STYLES ===== */
.facility-category {
    margin: 60px 0;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-header h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    display: inline-block;
    padding: 0 20px;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-green);
    z-index: 1;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.facility-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(55, 20, 25, 0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(58, 155, 42, 0.1);
    transition: all 0.3s ease;
    font-size: 2rem;
    color: var(--primary-green);
}

.facility-card:hover .facility-icon {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.facility-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.facility-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(55, 20, 25, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(55, 20, 25, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(55, 20, 25, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(55, 20, 25, 0.1);
    border: 2px solid var(--accent-beige);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(123, 155, 111, 0.2);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    background-color: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-content p {
    margin: 5px 0;
    color: var(--text-light);
}

.info-content a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(55, 20, 25, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(123, 155, 111, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    pointer-events: none;
}

.story-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(55, 20, 25, 0.2);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== PACKAGES PAGE STYLES ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.package-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(55, 20, 25, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--accent-beige);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(55, 20, 25, 0.2);
}

.package-header {
    background-color: var(--primary-green);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.package-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-beige);
}

.package-body {
    padding: 30px 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(123, 155, 111, 0.15);
    color: var(--text-dark);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 8px;
}

.package-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
}

/* ===== TESTIMONIALS/REVIEWS ===== */
.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 15px;
}

.testimonial-rating {
    color: #FFD700;
    margin-top: 10px;
}

/* ===== RESPONSIVE DESIGN EXTENSIONS ===== */
@media (max-width: 768px) {
    .story-container,
    .contact-main {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
        padding: 12px 24px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.4rem;
        padding: 10px 20px;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category-grid,
    .facilities-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}