/* =====================================
   RESET & BASE STYLES
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-color: #2C5530;
    --secondary-color: #8FBC8F;
    --accent-color: #F4A460;
    --text-dark: #2F4F4F;
    --text-light: #708090;
    --background-light: #F8F9FA;
    --background-white: #FFFFFF;
    --gold-accent: #DAA520;
    --hover-color: #1E3A21;
    
    /* Typography - Mobile First */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 14px;
    --line-height-base: 1.5;
    
    /* Spacing - Mobile First */
    --section-padding: 40px;
    --container-padding: 15px;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--background-white);
}

/* =====================================
   LAYOUT & UTILITIES - MOBILE FIRST
===================================== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding: 0 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.section-title.white {
    color: var(--background-white);
}

/* =====================================
   BUTTONS - MOBILE FIRST
===================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 280px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--background-white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--gold-accent);
    color: var(--background-white);
    border-color: var(--gold-accent);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

/* =====================================
   HEADER & NAVIGATION - MOBILE FIRST
===================================== */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--background-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
}

.nav-links {
    display: none; /* Hidden on mobile */
}

/* Mobile Menu Button (if needed) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--background-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =====================================
   HERO SECTION - MOBILE FIRST
===================================== */
.hero {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(143, 188, 143, 0.8));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-white);
    padding: 60px 0 40px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
    padding: 0 10px;
}

/* =====================================
   SECTIONS - MOBILE FIRST
===================================== */
section {
    padding: var(--section-padding) 0;
}

/* =====================================
   ABOUT SECTION - MOBILE FIRST
===================================== */
.about {
    background-color: var(--background-light);
}

.about-content {
    display: block;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 2rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.image-placeholder .icon {
    font-size: 3.5rem;
    color: var(--background-white);
    z-index: 1;
}

/* =====================================
   SERVICES SECTION - MOBILE FIRST
===================================== */
.services {
    background-color: var(--background-white);
}

.services-grid {
    display: block;
    margin-top: 30px;
}

.service-card {
    background: var(--background-white);
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(143, 188, 143, 0.1);
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: grayscale(0.2);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* =====================================
   CONTACT SECTION - MOBILE FIRST
===================================== */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: var(--background-white);
}

.contact-content {
    display: block;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info h3 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.opening-hours-title {
    margin-top: 30px !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 0 10px;
}

.contact-icon {
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.hours-list div {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--background-white);
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* =====================================
   FOOTER - MOBILE FIRST
===================================== */
footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.9rem;
    padding: 0 20px;
}

/* =====================================
   TABLET STYLES (min-width: 768px)
===================================== */
@media (min-width: 768px) {
    :root {
        --font-size-base: 16px;
        --section-padding: 60px;
        --container-padding: 20px;
    }
    
    .container {
        max-width: 750px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: auto;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2.2rem;
    }
    
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        text-align: left;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder .icon {
        font-size: 4rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        margin-bottom: 0;
        padding: 30px 25px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
    
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-info {
        margin-bottom: 0;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* =====================================
   DESKTOP STYLES (min-width: 1024px)
===================================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 20px;
    }
    
    .container {
        max-width: 1200px;
    }
    
    nav {
        justify-content: space-between;
    }
}