/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    will-change: auto;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9748f;
}

.menu-icon {
    display: none;
    font-size: 30px;
    text-align: center;
}

.hide {
    display: none;
}

.menu-tab {
    width: 100vw;
    padding: 5px;
    background-color: #333;
    position: fixed;
    top: 65px;
    right: 0;
    z-index: 1000;

}

.nav-links2 {
    list-style-type: none;

}

.nav-links2 a {
    text-decoration: none;
    color: white;
    display: flex;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    position: sticky;
    top: 100;
    z-index: 2000;

}

.contact-head {
    display: flex;
    justify-content: space-between;
    width: 10%;
}

.contact-ph {
    background-color: #c5cacc;
    height: 30px;
    color: #930834;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-right: 2rem;
    position: sticky;
    top: 63px;
    z-index: 100;
}

.em {
    padding-right: 6rem;
}

.ph {
    padding-right: 3rem;

}

@media screen and (width >=800px) {
    .menu-tab {
        display: none;
    }
}

@media screen and (width <=800px) {
    .nav-links {
        display: none;
    }

    .contact-ph {
        font-size: 13px;
    }

    h1 {
        font-size: 25px;
    }

    .menu-icon {
        display: block;
    }


}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.cta-button {
    background-color: #c9748f;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a15371;
}

/* About Section */
.about {
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Tours Section Styling */
.tours {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Tour Cards Grid */
.tour-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Tour Card */
.tour-info {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Tour Card Image */
.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card img:hover {
    transform: scale(1.05);
}

/* Tour Details */
.tour-detail {
    padding: 1rem;
    text-align: center;
}

.tour-detail a {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #db668b;
    transition: color 0.3s ease;
}

.tour-detail a:hover {
    color: #a15371;
}

.tour-detail p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #666;
}


/* Contact Section */
.contact {
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: #c9748f;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #a15371;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}