:root {
    --primary: #2d4a3e;
    --accent: #a3b18a;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark); overflow-x: hidden; }

/* Navigation */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 10%; background: var(--white); position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.site-logo { height: 60px; width: auto; }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 25px; }
nav ul li a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }

/* Hero Section - Fixed Text Rendering */
.hero {
    position: relative;
    height: 85vh;
    background: url('hero-bg.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens the image for text clarity */
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; padding: 20px; }
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 1rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Service Cards - Slim Design */
.services { padding: 80px 10%; background: var(--light); text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover { transform: translateY(-5px); border: 1px solid var(--accent); }
.service-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.3rem; }
.service-card p { color: #555; font-size: 0.95rem; line-height: 1.5; }

/* Buttons & Form */
.btn-primary { background: var(--primary); color: white; padding: 14px 28px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--accent); }
.btn-secondary { color: white; padding: 12px 28px; border: 2px solid white; border-radius: 6px; margin-left: 10px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-secondary:hover { background: white; color: var(--primary); }

.booking { padding: 80px 10%; }
.booking-container { max-width: 700px; margin: 0 auto; padding: 40px; background: white; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.form-group { display: flex; gap: 15px; margin-bottom: 15px; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; margin-bottom: 15px; }

footer { background: var(--dark); color: white; padding: 40px 10%; text-align: center; font-size: 0.9rem; }
footer a { color: var(--accent); text-decoration: none; margin-top: 10px; display: block; }

@media (max-width: 768px) {
    .form-group { flex-direction: column; gap: 0; }
    .hero-content h1 { font-size: 2.5rem; }
    nav ul { display: none; }
}