/* Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font: 'Calibri';
}

.logo {
    width: 48px;
    border-radius: 50%;
    height: auto;
}

nav {
    background-color: #000;
    position: relative;
    top: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: saddlebrown;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

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

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}



.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/wildlife.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    color: #fff;
    max-width: 600px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: 3rem;
}

.hero-button {
    position: relative;
    padding: 6px 24px 6px 10px;
    font-weight: bold;
    font-size: large;
    border-radius: 8px;
    border: none;
    background-color: rgb(231, 107, 24);
    cursor: pointer;
    overflow: hidden;
}

.hero-button a {
    text-decoration: none;
    color: #000;
    position: relative;
    z-index: 2;
}

.about-section {
    padding: 4rem 2rem;
    background-color: rgb(250, 224, 194);
    color: #333;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: saddlebrown;
}

.about-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.highlight {
    flex: 1 1 250px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight h3 {
    margin-bottom: 0.5rem;
    color: #e76b18;
}

.about-cta {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e76b18;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: saddlebrown;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: rgb(250, 224, 194);
    color: #333;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: saddlebrown;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-button {
    background-color: #e76b18;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: saddlebrown;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Travel Section */
.travel {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: left;
    color: #333;
}

.travel h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: saddlebrown;
}

/* Card Container */
.travel-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card */
.card {
    background-color: rgb(253, 236, 216);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card Text */
.card h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: #e76b18;
}

.card p {
    font-size: 1rem;
    padding: 0 1rem 1.5rem;
    color: #555;
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

.footer a {
    text-decoration: none;
    margin: 0;
    font-size: 1rem;
}

.footer .social-media {
    margin-top: 0.5rem;
}

.footer .social-media a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}


/* Responsive Design */
/* Responsive Navigation */
/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
}
@media (max-width: 768px) {


    .hero-text {
        padding: 1.5rem;
        max-width: 90%;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Responsive About Highlights */
@media (max-width: 768px) {
    .about-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight {
        width: 100%;
        max-width: 400px;
    }
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }

    .contact-container h2 {
        font-size: 2rem;
    }

    .contact-container p {
        font-size: 1rem;
    }

    .submit-button {
        width: 100%;
    }
}

/* Responsive Travel Cards */
@media (max-width: 768px) {
    .travel h2 {
        font-size: 2rem;
        text-align: center;
    }

    .travel-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card img {
        height: 180px;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 0.95rem;
    }
}