/* Southern Elegant Estate Style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --warm-ivory: #f8f5ef;
    --soft-beige: #e9e2d5;
    --forest-green: #234033;
    --soft-gold: #c8a96b;
    --charcoal-text: #1f2937;
    --radius: 12px;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--warm-ivory);
    color: var(--charcoal-text);
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

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

/* Header */
header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--soft-beige);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--forest-green);
    font-style: italic;
}

nav a {
    text-decoration: none;
    color: var(--charcoal-text);
    margin-left: 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--soft-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 245, 239, 0.4);
    z-index: -1;
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 80px;
    border-radius: var(--radius);
    max-width: 900px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--forest-green);
}

.gold-divider {
    width: 100px;
    height: 2px;
    background: var(--soft-gold);
    margin: 20px auto;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-phone {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--forest-green);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--forest-green);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--forest-green);
    color: var(--forest-green);
}

.btn:hover {
    background: var(--soft-gold);
    border-color: var(--soft-gold);
    color: white;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--forest-green);
}

/* Signature Services */
.services {
    padding: 100px 0;
    background: var(--forest-green);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 169, 107, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--soft-gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--soft-gold);
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.why-icon {
    font-size: 1.5rem;
    color: var(--soft-gold);
}

/* Portfolio Gallery */
.portfolio {
    padding: 100px 0;
}

.masonry {
    column-count: 2;
    column-gap: 30px;
}

.masonry-item {
    margin-bottom: 30px;
    break-inside: avoid;
}

.masonry-item img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--soft-beige);
}

.testimonial-card {
    background: var(--warm-ivory);
    padding: 50px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    position: relative;
    border-left: 4px solid var(--soft-gold);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 100px 0;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--forest-green);
}

.contact-form {
    background: white;
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

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

input, textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: inherit;
    background: #f9fafb;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--soft-gold);
}

#form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--forest-green);
    color: white;
    border-radius: var(--radius);
}

/* Map */
.map {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 100px;
}

/* Footer */
footer {
    background: var(--forest-green);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--soft-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-col p, .footer-col a {
    color: #a3b3a9;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #6a7c72;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about, .why-grid, .contact, .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .masonry { column-count: 1; }
}
