/* === WATWOOD CONTRACTING - PROFESSIONAL SITE === */

:root {
    --sand: #d0caba;
    --dark: #2d2416;
    --green: #5a7859;
    --brown: #7d5a3c;
    --white: #ffffff;
    --light-gray: #f5f2ed;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* === HEADER === */
.header {
    background: var(--sand);
    padding: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.header-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* === HERO SECTION === */
.hero-section {
    background: var(--sand);
    padding: 4rem 0 5rem;
    text-align: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 400;
    font-style: italic;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--white);
    padding: 5rem 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--brown));
    border-radius: 2px;
}

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

.founder-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(90, 120, 89, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(90, 120, 89, 0.3);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--brown);
    line-height: 1.6;
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--sand);
    padding: 5rem 0;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--green), var(--brown));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(90, 120, 89, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown), var(--green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-button:hover::before {
    opacity: 1;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(90, 120, 89, 0.4);
}

.contact-button svg,
.contact-button span {
    position: relative;
    z-index: 1;
}

/* === CONTACT FORM === */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(90, 120, 89, 0.2);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(90, 120, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--green), var(--brown));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(90, 120, 89, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown), var(--green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover::before {
    opacity: 1;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(90, 120, 89, 0.4);
}

.submit-button svg,
.submit-button span {
    position: relative;
    z-index: 1;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(90, 120, 89, 0.1);
    color: var(--green);
    border: 2px solid var(--green);
}

.form-message.error {
    display: block;
    background: rgba(200, 50, 50, 0.1);
    color: #c83232;
    border: 2px solid #c83232;
}

.direct-contact {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
}

.direct-contact h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--brown);
    transform: translateX(5px);
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
    text-align: center;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .header-logo {
        max-width: 280px;
    }
    
    .hero-section {
        padding: 3rem 0 4rem;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .bio-text {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-button {
        font-size: 0.95rem;
        padding: 16px 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 240px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}
