:root {
    --primary-color: #2e8b57;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --white: #fff;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    padding: 0 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1920x1080.png?text=Chemakuti+Landscape') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #216a40;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content img {
    max-width: 50%;
    border-radius: 10px;
}

/* Tours Section */
.tour-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    text-align: center;
    padding-bottom: 20px;
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-card h3 {
    margin: 20px 0 10px;
}

.tour-card p {
    padding: 0 20px;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-family);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    cursor: pointer;
    border: none;
}

.contact-form .btn:hover {
    background-color: #216a40;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: left;
    }

    .nav-links {
        padding-top: 10px;
    }

    .nav-links li a {
        display: block;
        padding: 5px 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img {
        max-width: 100%;
    }
}