/* =========================
   GLOBAL STYLES
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
     background-image: url("images/background.jpg");
  background-size: cover;        /* fills screen */
  background-position: center;   /* centers image */
  background-repeat: no-repeat;
    color: #222;
    line-height: 1.7;
}

img{
    max-width: 100%;
    display: block;
}

section{
    padding: 100px 8%;
}

h1,
h2,
h3{
    font-family: 'Montserrat', sans-serif;
}

.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 2.5rem;
    color: #0d3c00;
    margin-bottom: 10px;
}

.section-title p{
    color: #666;
    font-size: 1rem;
}


/* =========================
   HEADER
========================= */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 78, 25, 0.911);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: 0.3s ease;
}

header.scrolled{
    background: #0dafd8;
    height: 80px;
}

.logo img{
    height: 200px;
    object-fit: contain;
}

nav{
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #ff9800;
    transition: 0.3s ease;
}

nav a:hover::after{
    width: 100%;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    display: flex;
    gap: 10px;
}

.social-icons a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: 0.3s ease;
}

.social-icons a:hover{
    background: #ff9800;
}


/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}


/* =========================
   HERO SECTION
========================= */

.hero{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.slider{
    width: 100%;
    height: 100%;
    position: relative;
}

.slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
}

.slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.caption{
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    width: 90%;
    z-index: 2;
}


/* =========================
   CARDS SECTION
========================= */

.grid,
.news-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.park-card,
.news-card{
    position: relative;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.park-card:hover,
.news-card:hover{
    transform: translateY(-10px);
}

.park-card img,
.news-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content{
    padding: 20px;
}

.card-content h3{
    margin-bottom: 10px;
    color: #0d3c00;
}

.card-content p{
    color: #666;
    margin-bottom: 20px;
}


/* =========================
   BUTTONS
========================= */

.card-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.book-btn,
.read-more-btn{
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-btn{
    background: #ff9800;
    color: white;
}

.read-more-btn{
    background: #0d3c00;
    color: white;
}

.book-btn:hover,
.read-more-btn:hover{
    transform: scale(1.05);
}


/* =========================
   ABOUT SECTION
========================= */

.about{
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
}

.about-image,
.about-text{
    flex: 1;
}

.about-image img{
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.about-text h2{
    font-size: 2.5rem;
    color: #0d3c00;
    margin-bottom: 20px;
}

.about-text p{
    margin-bottom: 18px;
    color: #444;
}


/* =========================
   FOOTER
========================= */

footer{
    background: #071b11;
    color: white;
    padding: 70px 8% 30px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box{
    flex: 1;
    min-width: 220px;
}

.footer-box h3{
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-box p{
    margin-bottom: 10px;
    color: #ccc;
}

.footer-box a{
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.footer-box a:hover{
    color: #ff9800;
}

.footer-bottom{
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}


/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 999;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1000px){

    .grid,
    .news-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .about{
        flex-direction: column;
    }

}

@media(max-width: 768px){

    header{
        padding: 0 5%;
    }

    nav{
        position: fixed;
        top: 90px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #071b11;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        transition: 0.4s ease;
    }

    nav.active{
        right: 0;
    }

    .menu-toggle{
        display: block;
    }

    .caption{
        font-size: 2rem;
    }

}

@media(max-width: 600px){

    .grid,
    .news-grid{
        grid-template-columns: 1fr;
    }

    section{
        padding: 80px 5%;
    }

    .caption{
        font-size: 1.5rem;
    }

    .about-image img{
        height: 350px;
    }

}
.itinerary-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.itinerary-card{
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.itinerary-card:hover{
    transform: translateY(-8px);
}

.itinerary-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.itinerary-content{
    padding: 20px;
}

.itinerary-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.itinerary-header h3{
    font-size: 1.2rem;
    color: #0d3c00;
}

.tag{
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.itinerary-card ul{
    list-style: none;
    margin-bottom: 15px;
}

.itinerary-card ul li{
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.trip-page{
    padding: 120px 8%;
    background: #f5f5f5;
}

.trip-header{
    text-align: center;
    margin-bottom: 40px;
}

.trip-header h2{
    font-size: 2.5rem;
    color: #0d3c00;
}

.trip-images{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.trip-images img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.trip-story,
.trip-itinerary,
.trip-hotels{
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trip-story p{
    color: #444;
    line-height: 1.7;
}

.trip-itinerary ul{
    list-style: none;
    padding-left: 0;
}

.trip-itinerary li{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.trip-hotels table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.trip-hotels th,
.trip-hotels td{
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.trip-hotels th{
    background: #0d3c00;
    color: white;
}

.trip-action{
    text-align: center;
    margin-top: 30px;
}

.image-container{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* Vector price ribbon */

.price-tag{
    position:absolute;
    top:15px;
    right:-10px;

    background:#145203;
    color:white;

    padding:10px 30px 10px 20px;

    font-size:14px;
    font-weight:700;

    clip-path: polygon(
        0 0,
        100% 0,
        85% 50%,
        100% 100%,
        0 100%,
        10% 50%
    );

    box-shadow:0 5px 15px rgba(230, 39, 39, 0.815);

    z-index:999;
      opacity:1;
    visibility:visible;
}
/* more trips */
.more-trips{
    padding:80px 8%;
    text-align:center;
}

.trip-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.trip-item{
    position:relative;
    height:250px;
    border-radius:15px;
    overflow:hidden;
    text-decoration:none;
}

.trip-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.trip-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:1;
}

.trip-name{
    position:absolute;
    bottom:20px;
    left:20px;
    color:white;
    font-size:1.4rem;
    font-weight:700;
    z-index:2;
}

.trip-item:hover img{
    transform:scale(1.1);
}

.trip-item:hover .trip-name{
    bottom:30px;
    transition:0.4s;
}


.booking-modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.booking-content{
    background:#fff;
    width:90%;
    max-width:450px;
    margin:5% auto;
    padding:25px;
    border-radius:12px;
    position:relative;
}

.close-modal{
    position:absolute;
    right:20px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}

.booking-content h2{
    margin-bottom:20px;
}

.booking-content label{
    display:block;
    margin-top:12px;
    font-weight:600;
}

.booking-content input{
    width:100%;
    padding:10px;
    margin-top:5px;
    border:1px solid #ddd;
    border-radius:6px;
}

.submit-booking{
    width:100%;
    margin-top:20px;
    padding:12px;
    border:none;
    border-radius:6px;
    background:#026627;
    color:white;
    cursor:pointer;
    font-size:16px;
}
