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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e2d;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #1a2e1b;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e2d;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #4a6741;
    margin-bottom: 2rem;
}

/* Header/Hero */
.hero {
    background: linear-gradient(135deg, #f7f5f3 0%, #e8e2dc 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #d4c5b9;
}

.logo-placeholder {
    display: inline-block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a2e1b;
    margin-bottom: 0.5rem;
}

.logo-tagline {
    font-size: 1.1rem;
    color: #6b7c5c;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Main Sections */
main {
    padding: 0;
}

section {
    padding: 4rem 0;
}

.about {
    background-color: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-content p {
    color: #3a4f3b;
}

.expertise-areas {
    background: linear-gradient(135deg, #f0f4ec 0%, #e8f0e3 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6b8e5a;
}

.expertise-areas ul {
    list-style: none;
}

.expertise-areas li {
    padding: 0.5rem 0;
    color: #2c3e2d;
    position: relative;
    padding-left: 1.5rem;
}

.expertise-areas li:before {
    content: "•";
    color: #6b8e5a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f7f5f3 0%, #ede7e0 100%);
    border-top: 1px solid #d4c5b9;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-info a {
    color: #6b8e5a;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #4a6741;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e2d;
    color: #e8e2dc;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Resource page specific styles */
.resource-section {
    margin-bottom: 3rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6b8e5a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    color: #1a2e1b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.resource-card p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.resource-card a {
    color: #6b8e5a;
    text-decoration: none;
    font-weight: 500;
}

.resource-card a:hover {
    color: #4a6741;
    text-decoration: underline;
}

.emergency-notice {
    background: linear-gradient(135deg, #f8f4f4 0%, #f0e8e8 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d47373;
    margin-top: 3rem;
}

.emergency-notice h3 {
    color: #8b4141;
    margin-bottom: 1rem;
}

.emergency-notice ul {
    list-style: none;
    padding-left: 0;
}

.emergency-notice li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.emergency-notice li:before {
    content: "⚠";
    color: #d47373;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 1rem;
    }
}
