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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
}

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

/* Navigation */
.navbar {
    background: #1a1410;
    color: white;
    padding: 1.2rem 0;
    border-bottom: 3px solid #d4a574;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4a574;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #d4a574;
}

/* Hero Section */
.hero {
    background: #1a1410;
    color: white;
    padding: 60px 20px;
    border-bottom: 4px solid #d4a574;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #d4a574;
    color: #1a1410;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #c49564;
}

/* About Section */
.about {
    padding: 70px 20px;
    background: white;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1410;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #d4a574;
    padding-left: 20px;
}

.about p {
    font-size: 1.05rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 70px 20px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1410;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #d4a574;
    padding-left: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-left: 6px solid #d4a574;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.2s;
}

.service-card:hover {
    border-left-width: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1410;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery {
    padding: 70px 20px;
    background: white;
    border-top: 1px solid #ddd;
}

.gallery h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1410;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #d4a574;
    padding-left: 20px;
}

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

.gallery-item {
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    border: 2px solid #e0e0e0;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 70px 20px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1410;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #d4a574;
    padding-left: 20px;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1410;
    font-weight: 800;
    text-transform: uppercase;
}

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

.info-item strong {
    color: #1a1410;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

.info-item a {
    color: #5a4a3a;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.info-item a:hover {
    color: #1a1410;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #d4a574;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a4a3a;
}

.submit-button {
    width: 100%;
    background: #1a1410;
    color: white;
    padding: 16px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #d4a574;
    color: #1a1410;
}

/* Footer */
.footer {
    background: #1a1410;
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 3px solid #d4a574;
}

.footer p {
    font-size: 0.95rem;
}

.footer-credit {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.footer-credit a {
    color: #d4a574;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-credit a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

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

    .hero-content p {
        font-size: 1.05rem;
    }

    .about h2,
    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 50px 20px;
    }

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

    .about h2,
    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
}
