*{
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}


header{
    background-color: rgb(54, 54, 177);
    color: aliceblue;
    padding: 20px;
    font-family: Poppins;
    display: flex;
    align-items: center;
    justify-content: space-between;
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header h1{
    margin-left: 20px;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Desktop */
header nav ul {
    display: flex;
    list-style: none;
}

/* Mobile */

@media (max-width: 770px) {
    .menu-toggle {
        display: block;
    }

    header nav.show {
        display: block;
    }
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgb(54, 54, 177);
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
        border-radius: 0 0 15px 15px;
        display: none;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 12px;
        margin-top: 15px;
    }
}

@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }

    header nav.show {
        display: block;
    }
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgb(54, 54, 177);
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
        border-radius: 0 0 15px 15px;
        display: none;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 12px;
        margin-top: 15px;
        list-style: none;
    }
}

header nav ul li a{
    text-decoration: none;
    margin-left: 20px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    color: #333;
    background: white;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    border-radius: 18px;
    padding: 2px 8px;
    
}

header nav ul li a:hover{
    background: rgb(54, 54, 177);
    color: white;
    border: 2px solid white;
}

#home{
    background: url(mountain.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#home h1{
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
}

#home h2{
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
}

#home button{
    padding: 10px 20px;
    background-color: rgb(219, 55, 55);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
}

#home button:hover{
    background: white;
    color:rgb(219, 55, 55);
    transition: 0.3s;
}

#event{
    background: black;
    min-height: 100vh;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

#event h1{
    font-size: 50px;
    margin-top: 30px;
}

#event h2{
    font-size: 30px;
    margin-top: 10px;
}

.event_cont{
    display: flex;
}

.event_cont img{
    width: 200px;
    height: 200px;
    border-radius: 20px;
    margin: 20px;
}

.event_cont img:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

@media (max-width: 750px) {
    .event_cont{
        flex-direction: column;
    }
    .event_cont img{
        width: 400px;
        height: 300px;
    }
}


.event_cont h3{
    font-size: 25px;
    margin-bottom: 10px;
}

.event_cont p{
    font-size: 18px;
    margin-bottom: 10px;
}

.event_cont a{
    text-decoration: none;
    color: white;
}

.event_cont button{
    padding: 10px 20px;
    background-color: rgb(219, 55, 55);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
}

.event_cont button:hover{
    background: white;
    color:rgb(219, 55, 55);
    transition: 0.3s;
}

/* Explore Section */
#explore{
    background: url(explore.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.explore_{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 600px;
    height: 400px;
    border-radius: 20px;
    border: 2px solid rgba(141, 129, 129, 0.5);
    background: rgba(141, 129, 129, 0.5);
    margin: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.explore_ h1{
    font-size: 50px;
    margin-top: 30px;
}

.explore_ p{
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.explore_ button{
    padding: 10px 20px;
    background-color: rgb(219, 55, 55);
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
}
.explore_ a{
    text-decoration: none;
    color: white;
}

.explore_ button:hover, a:hover{
    background: white;
    color:rgb(219, 55, 55);
    transition: 0.3s;
}

/* Tours Section */
#tours{
    background: url(bac.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#tours h1{
    font-size: 50px;
    margin-top: 30px;
}

#tours h2{
    font-size: 30px;
    margin-top: 10px;
}

.tours_cont{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tours-box{
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgba(141, 129, 129, 0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tours_cont img{
    width: 250px;
    height: 250px;
    border-radius: 20px;
    margin: 20px;
}

.tours_cont img:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.tours_cont button{
    padding: 10px 20px;
    background-color: rgb(219, 55, 55);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
}
.tours_cont a{
    text-decoration: none;
    color: white;
}

.tours_cont button:hover, a:hover{
    background: white;
    color:rgb(219, 55, 55);
    transition: 0.3s;
}

/* About Section */
#about {
    background: url(about.jpg) center/cover no-repeat;
    min-height: 100vh;
    color: white;
}

.about-overlay {
    background: rgba(0, 0, 0, 0.65);
    min-height: 100vh;
    padding: 80px 20px;
}

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

#about h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Text */
.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text button {
    padding: 12px 25px;
    background: rgb(219, 55, 55);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.about-text button:hover {
    background: white;
    color: rgb(219, 55, 55);
}

/* Stats */
.about-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stat-box h2 {
    font-size: 36px;
    color: rgb(219, 55, 55);
}

.stat-box p {
    margin-top: 8px;
    font-size: 16px;
}


/* Contact Section */
#contact {
    background: url(contact.jpg) center/cover no-repeat;
    min-height: 100vh;
    color: white;
    position: relative;
}

/* Dark overlay for readability */
.contact-overlay {
    background: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
}

#contact h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Layout */
.contact-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-box i {
    font-size: 30px;
    margin-bottom: 10px;
    color: rgb(219, 55, 55);
}

.contact-box h3 {
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: rgb(219, 55, 55);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
    color: rgb(219, 55, 55);
}


/* Footer */
#footer {
    background: #111;
    color: #ddd;
    padding-top: 60px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Brand */
.footer-brand {
    max-width: 350px;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
}

/* Links */
.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 15px;
}

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

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

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: rgb(219, 55, 55);
}

/* Contact */
.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-contact i {
    margin-right: 8px;
    color: rgb(219, 55, 55);
}

/* Bottom */
.footer-bottom {
    background: #000;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    color: #aaa;
}
