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

:root {
    --primary-green: #4a6b4f;
    --accent-orange: #e8772e;
    --dark-brown: #3d2817;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --cream: #f4ebe1;
    --text-dark: #333;
    --text-light: #fff;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header & Navigation */
header {
    background: var(--cream);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-call {
    background: var(--accent-orange);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.btn-call:hover {
    background: #d0631e;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/rockwood-stacked.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--accent-orange);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-light);
}

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

.btn-secondary {
    background: var(--accent-orange);
    color: var(--text-light);
}

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

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--light-bg);
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-green);
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
    background: var(--dark-bg);
    color: var(--text-light);
}

.product-card .btn:hover {
    background: var(--primary-green);
}

/* Coverage Section */
.coverage {
    padding: 4rem 0;
    background: white;
}

.coverage h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.coverage-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 2;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    cursor: pointer;
}

#map.scroll-enabled {
    cursor: grab;
}

.coverage-note {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.coverage-note a {
    color: var(--primary-green);
    font-weight: bold;
    text-decoration: none;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
}

.info-item a {
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 1.1rem;
}

.info-item a:hover {
    color: var(--primary-green);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: var(--accent-orange);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

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