/* --- 1. CORE & SETUP --- */
:root {
    --forest-green: #2C4A3C;
    --cream: #F5F5F3;
    --terracotta: #E47D3A;
    --charcoal: #333333;
    --light-gray: #EAEAEA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--forest-green);
}

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

section {
    padding: 100px 0;
}

/* --- 2. HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(245, 245, 243, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--forest-green);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--terracotta);
}

.cta-button {
    background-color: var(--terracotta);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--forest-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-toggle { display: none; }


/* --- 3. HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: brightness(0.6);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(44, 74, 60, 0.4), rgba(44, 74, 60, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    font-family: 'Lora', serif;
    margin-bottom: 40px;
}

.hero-search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-search-bar input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.1rem;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.hero-search-bar input::placeholder { color: rgba(255,255,255,0.7); }
.hero-search-bar input:focus { border-color: var(--terracotta); background-color: rgba(0,0,0,0.2); }

.hero-search-bar .material-symbols-outlined {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--terracotta);
}

/* --- 4. SERVICES SECTION --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

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

/* --- 5. FOOTER --- */
.main-footer {
    background-color: var(--forest-green);
    color: rgba(255,255,255,0.8);
    padding: 80px 0;
    font-family: 'Manrope', sans-serif;
}

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

.footer-grid h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--terracotta);
    padding-left: 5px;
}

.footer-contact-info { list-style: none; }
.footer-contact-info li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-contact-info .material-symbols-outlined { color: var(--terracotta); }


.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* --- 6. RESPONSIVENESS --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .main-nav { display: none; } /* Simplified for preview */
    .menu-toggle { display: block; cursor: pointer; } /* Placeholder for mobile menu */
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    section { padding: 60px 0; }
    .section-title h2 { font-size: 2.2rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-about p { margin-left: auto; margin-right: auto; }
    .footer-contact-info li { justify-content: center; }
}
