* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    color: white;
    /* z-index: 10; */
    background: rgba(0, 0, 0, 0.5);
    border-end-end-radius: 50px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: red;
    background: rgba(255,255,255,0.1);
}

.ctn {
    padding: 8px 15px;
    background-color: red;
    border-radius: 30px;
    color: white;
    transition: all 0.3s ease;
}

.ctn:hover {
    background-color: darkred;
    transform: scale(1.05);
}

.menu-btn {
    display: none;
    cursor: pointer;
    width: 30px;
}

/* Header */
header {
    height: 100vh;
    width: 100%;
    background-image: url('mountain.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-content {
    color: white;
    padding: 0 20px;
}

.header-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.line {
    width: 150px;
    height: 4px;
    background-color: red;
    margin: 15px auto;
    border-radius: 5px;
}

.header-content h1 {
    font-size: 5rem;
    margin: 30px 0;
}

/* Events Section */
section {
    width: 80%;
    margin: 80px auto;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

.title h1 {
    font-size: 2.5rem;
    color: #333;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}


.imgs {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.col h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.col p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Explore Section */
.explore {
    width: 100%;
    height: 70vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('explore.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.explore-content {
    width: 60%;
    padding: 0 5%;
    color: white;
}

.explore-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.explore-content .line {
    margin-left: 0;
    margin-bottom: 30px;
}

.explore-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Tours Section */
.tours .row {
    align-items: center;
}

.content-col {
    padding-right: 40px;
}

.img-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.img-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.img-gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0;
    text-align: center;
}

footer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media only screen and (max-width: 850px) {
    
    .logo {
        position: static;
        font-size: 1.8rem;
    }
    
    .menu-btn {
        display: block;
        z-index: 100;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.9);
        flex-direction: column;
        justify-content: center;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.8s ease-out;
        pointer-events: none;
    }
    
    .nav-links.mobile-menu {
        clip-path: circle(1500px at 90% -10%);
        pointer-events: all;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        margin-bottom: 40px;
    }
    
    .header-content h1 {
        font-size: 3rem;
    }
    
    .explore {
        height: auto;
        /* background-attachment: scroll; */
        padding: 80px 0;
    }
    
    .explore-content {
        width: 100%;
    }
    
    .tours .row {
        flex-direction: column;
    }
    
    .content-col {
        padding: 0;
        text-align: center;
    }
    
    .img-gallery {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .title h1 {
        font-size: 2rem;
    }
    
    .explore-content h1 {
        font-size: 2.5rem;
    }
}