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

:root {
    --bg-color: #fcfcfc;
    --text-color: #1a1a1a;
    --accent-color: #8a3d21; /* Earthy reddish-brown from original */
    --accent-color-light: #f0a1a0;
    --muted-color: #5c5a51;
    --white: #ffffff;
    --header-height: 80px;
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 400;
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg-color);
    padding: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--muted-color);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h1 span {
    font-weight: 400;
    font-style: italic;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 320px;
    height: auto;
}

/* About Section */
.about {
    background: #f8f8f8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-text h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--muted-color);
}

/* Conservation Section */
.conservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 2px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* School Section */
.school {
    background: var(--accent-color);
    color: var(--white);
}

.school .section-title {
    color: var(--white);
}

.school .section-title::after {
    background: var(--white);
}

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

.course-item {
    text-align: center;
    padding: 20px;
}

.course-item img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.course-item h3 {
    margin-bottom: 15px;
}

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

.contact-info div {
    margin-bottom: 25px;
}

.contact-info h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--muted-color);
    margin-bottom: 5px;
}

.contact-info p, .contact-info a {
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #eee;
    color: var(--muted-color);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container, .about-grid, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        justify-content: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    nav ul {
        display: none; /* Mobile menu needed but keeping it simple for now */
    }
}
