@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

a{
    text-decoration: none;
    color: inherit;
}

ul{
list-style: none;
}

.active {
    color:  #1F4529;
    text-decoration: underline;
    font-weight: bold;
}
body , html {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
position: absolute;
top: 0;
left: 0;
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
padding: 20px;
color: #f9f9f9;
transition: all 0.3s ease;
z-index: 1000;
}

.navbar-scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.menu-toggle {
    display: none;
    cursor: pointer;
    background-color: transparent;
    padding: 10px;
    z-index: 1100;
}

.menu-btn {
    color: white;
    font-size: 24px;
}


.logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-left: 20px;
    letter-spacing: 1px;
}


.nav-links {
    display: flex;
    align-items: center;
    
    }


.nav-links li {
    margin: 0 30px;
}

.nav-links li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #1F4529;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li:hover:after {
    width: 100%;
}



header {
    width: 100vw;
    height: 100vh;
    background-image:  linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)),url('img/nordwood-themes-Tmz8FThN_BE-unsplash.jpg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.header-content {
margin-bottom: 150px;
color:  #f9f9f9;
text-align: center;
animation: fadeIn 1.5s ease-in-out;

}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.header-content h2 {
 font-size: 4vmin;
 text-shadow: 2px 2px 4px rgba(0,0,0,0.5);

}

.line { 
width: 150px;
height: 4px;
background-color: #47663B;
margin: 10px auto;
border-radius: 5px;

}

.header-content h1{
    font-size: 7vmin;
    margin-top: 50px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.menu-btn {
    display: none;
font-size: 24px;
color: #ffff;
cursor: pointer;
}
  


.title {
    text-align: center;
    font-size: 4vmin;
    color: #49497e;
}


section {
    width: 80%;
    margin: 80px auto;
    
    }

.row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 2rem;
}

.row .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 48%; 
}

.row .col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.row .col h4 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.row .col p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

 .events {
margin-top: 100px;
 }
 h4 {
    font-size: 3vmin;
    color: #484872;
    margin: 20px auto;
 }

 p {
    color:#7c7c7c;
    padding: 0px 20px;
 }
 .events .ctn {
    margin-top: 30px;
 }

 .explore {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('img/megan-thomas-xMh_ww8HN_Q-unsplash.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-attachment: fixed;
 }

 .explore-content {
width: 60%;
padding: 50px;
color: #ffff;
display: flex;
align-items: center;
flex-direction: column;
background-color: rgba(0,0,0,0.5);
border-radius: 10px;
backdrop-filter: blur(5px);
 }

 .explore-content h1 {
    font-size: 7vmin;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
 }
 .explore-content .line {
    margin-bottom: 50px;
 }
 .explore-content p {
color: #ffff;
font-size: 1.1rem;
line-height: 1.6;

 }
 .explore-content .ctn {
    margin-top: 40px;
 }

 
 .tours {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.content-col {
    flex: 1;
}

.content-col h1 {
    font-size: 7vmin;
    color: #484872;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-col .line {
    margin-left: 0;
}


.content-col p {
    font-size: 1.1rem;
    color: #7c7c7f;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 0;
}



.ctn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1F4529;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.5s ease;
}

.ctn:hover {
    background-color: whitesmoke;
    color: #1F4529;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);

}

.image-col {
    flex: 1;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer{
    width: 100%;
    min-height: 100px;
    padding: 20px 80px;
    margin: 0;
    background-color: #1F4529;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
margin: 0 auto;

}
.footer p {
color: #ffff;
margin: 15px auto;
font-size: 1rem;
}
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s ease;
}
.social-icons a img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}
.social-icons a:hover {
    transform: scale(1.2);
    .social-icons a i {
        font-size: 24px;
        color: white;
        transition: color 0.3s ease, transform 0.3s ease;
    }
}
    
    .social-icons a:hover i {
        color: #FFD700;
        transform: scale(1.2);
    }

    
@media only screen and (max-width: 1024px) {
    .row {
        gap: 1.5rem;
    }
    
    .explore-content {
        width: 70%;
    }
 }

@media only screen and (max-width: 850px) {
    body, html {
        width: 100%;
        overflow-x: hidden;
    }
    
    .navbar-container {
        width: 95%;
        padding: 0 10px;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        padding: 50px 0;
        transition: var(--transition);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links.mobile-menu {
        right: 0;
    }
    
    header {
        margin-top: 0;
    }
    
    .header-content {
        margin-bottom: 80px;
        width: 90%;
        padding: 0 10px;
    }
    
    section {
        width: 90%;
        margin: 40px auto;
    }
    
    .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .row .col {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }
    
    .explore-content {
        width: 85%;
        padding: 30px 20px;
    }
    
    .explore-content h1 {
        font-size: 6vmin;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .header-content h1 {
        font-size: 10vmin;
    }
    
    .header-content h2 {
        font-size: 6vmin;
    }
    
    .title h1 {
        font-size: 7vmin;
    }
    
    .explore-content {
        width: 92%;
        padding: 20px 15px;
    }
    
    .explore-content h1 {
        font-size: 8vmin;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ctn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 30px 10px;
    }
}