/* CSS Variables */
:root {
    --primary-green: #5a6f3a;
    --dark-green: #3d4a28;
    --orange: #d97741;
    --light-cream: #f5f2ed;
    --dark-brown: #2d2520;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-color: #d4cfc7;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-cream);
}

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

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background: var(--dark-brown);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    /* Replace 'hero.jpg' with your actual hero image */
    background: url('hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61,74,40,0.35) 0%, rgba(90,111,58,0.25) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--orange);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--orange);
    opacity: 0.7;
}

/* Buttons */
.cta-button {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    padding: 15px 40px;
    background: var(--orange);
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    border: 2px solid var(--orange);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 65, 0.3);
}

.cta-button:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 65, 0.4);
}

.cta-button.outline {
    background: transparent;
    color: var(--orange);
}

.cta-button.outline:hover {
    background: var(--orange);
    color: var(--text-light);
}

.secondary-button {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    padding: 12px 35px;
    background: var(--dark-green);
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1.5px;
    border: 2px solid var(--dark-green);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: transparent;
    color: var(--dark-green);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-cream);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--dark-green);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--orange);
    margin: 20px auto 0;
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Featured/Brands Section */
.featured {
    padding: 80px 0;
    background: var(--dark-green);
    color: var(--text-light);
}

.featured .section-title {
    color: var(--text-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.brand-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05);
}

.featured-text {
    text-align: center;
    font-size: 1.1rem;
    margin: 3rem auto;
    max-width: 800px;
    line-height: 1.8;
}

/* Hours Section */
.hours-section {
    padding: 80px 0;
    background: white;
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
}

.hours-grid {
    margin-top: 2rem;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.day-row .day {
    font-weight: 600;
    color: var(--dark-green);
}

.day-row .time {
    color: #666;
}

.day-row.closed .time {
    color: #999;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--text-light);
    padding: 100px 0 80px;
    text-align: center;
}

.page-header.products-hero {
    position: relative;
    background: url('products-hero.png') center/cover no-repeat;
    padding: 120px 0 100px;
}

.page-header.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61,74,40,0.55) 0%, rgba(45,37,32,0.65) 100%);
}

.page-header.products-hero h1,
.page-header.products-hero p {
    position: relative;
    z-index: 1;
}

.page-header.contact-hero {
    position: relative;
    background: url('contact-hero.png') center/cover no-repeat;
    padding: 120px 0 100px;
}

.page-header.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61,74,40,0.55) 0%, rgba(45,37,32,0.65) 100%);
}

.page-header.contact-hero h1,
.page-header.contact-hero p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
}

.highlight-box {
    background: var(--dark-green);
    color: var(--text-light);
    padding: 40px;
    border: 4px solid var(--orange);
}

.highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: white;
}

.services-expanded {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 40px;
    background: var(--light-cream);
    border-left: 5px solid var(--orange);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.3;
}

.service-detail-card h3 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: #666;
    line-height: 1.8;
}

/* Products Page */
.products-section {
    padding: 80px 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.product-categories {
    display: grid;
    gap: 4rem;
}

.category-section {
    padding: 40px;
    background: white;
    border: 3px solid var(--border-color);
}

.category-section h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.category-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.brand-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-item {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-card {
    padding: 30px;
    background: var(--light-cream);
    border-top: 4px solid var(--orange);
}

.equipment-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.equipment-card p {
    color: #666;
    line-height: 1.6;
}

.products-cta {
    margin-top: 4rem;
}

.cta-box {
    background: var(--dark-green);
    color: var(--text-light);
    padding: 60px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

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

.payment-section {
    padding: 40px 0;
    background: var(--light-cream);
}

.payment-info {
    text-align: center;
}

.payment-info h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #444;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--orange);
}

.hours-box {
    background: var(--light-cream);
    padding: 30px;
    border-left: 5px solid var(--orange);
}

.hours-box h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.hours-list {
    display: grid;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hour-row span:first-child {
    font-weight: 600;
    color: var(--dark-green);
}

.hour-row.closed {
    opacity: 0.6;
}

.map-container {
    position: relative;
    height: 500px;
    border: 5px solid var(--border-color);
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--dark-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--orange);
}

.directions-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.directions-cta h2 {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.directions-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--dark-brown);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 80%;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        height: 500px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }
}
