/* South Course Landscaping - Premium Native Landscaping Fort Lauderdale */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --forest-dark: #1a3a2e;
    --forest-medium: #2d5a3d;
    --forest-light: #4a6741;
    --earth-warm: #8b6f47;
    --earth-light: #b8956a;
    --cream: #f8f5f1;
    --cream-warm: #f5f0ea;
    --gold-subtle: #c9a96e;
    --gold-accent: #b8956a;
    --text-dark: #2c3e2d;
    --text-medium: #4a5d4b;
    --white-soft: #fefefe;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--forest-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-weight: 400;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: -0.01em;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-accent);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 58, 46, 0.7), rgba(45, 90, 61, 0.8)), 
                var(--forest-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.5s;
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .lead {
    color: var(--cream);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--forest-dark);
    border-color: var(--gold-accent);
}

.btn-primary:hover {
    background: var(--earth-light);
    border-color: var(--earth-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--forest-dark);
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

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

.section-dark {
    background: var(--forest-dark);
    color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
    color: var(--cream);
}

.section-dark p {
    color: rgba(248, 245, 241, 0.9);
}

.section-light {
    background: var(--cream-warm);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Cards */
.card {
    background: var(--white-soft);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(26, 58, 46, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-accent);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 58, 46, 0.15);
}

.card h3 {
    color: var(--forest-dark);
    margin-bottom: 1rem;
}

/* Image Placeholders */
.img-placeholder {
    background: var(--forest-medium);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 2rem;
    min-height: 300px;
}

.img-hero {
    min-height: 500px;
    border-radius: 8px;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: var(--white-soft);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 58, 46, 0.1);
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 58, 46, 0.1);
    border-color: var(--gold-accent);
}

/* Contact Form */
.contact-form {
    background: var(--white-soft);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(26, 58, 46, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--forest-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 2px solid rgba(26, 58, 46, 0.2);
    background: var(--cream-warm);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

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

/* Footer */
footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(248, 245, 241, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    border-top: 1px solid rgba(248, 245, 241, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(248, 245, 241, 0.6);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--forest-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}