/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    animation: fadeIn 1s ease-in-out;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

.logo img {
    height: 60px;        /* adjust size */
    width: auto;
    object-fit: contain;
}

/* Fix navbar width */
.navbar {
    width: 100%;
    box-sizing: border-box;
}

/* Ensure all sections respect viewport */
section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fix containers */
.video-container,
.best-itinerary,
.blog-section,
.adventures-section,
.about-us-container {
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

svg {
    width: 25px;
}


/* ================= HEADER ================= */
/* NAVBAR */
.navbar {
    width: 100%;
    height: 80px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    gap: 2rem;
    top: 0;
    left: 0;
    z-index: 1000;
    margin-left: auto;
    /* Clean transparency */
    background: transparent; 
    backdrop-filter: none; 
    border: none;
}

/* LOGO HOVER EFFECT */
.logo img {
    height: 105px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: right;
}

.search-box input {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px); /* Professional glass effect */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px; 
    padding: 8px 8px; /* Increased side padding for text breathing room */
    color: white;
    outline: none;
    width: 180px;
    transition: all 0.3s ease;
}

.menu{
    list-style:none;
    display:flex;
    gap:22px;
    margin:0; /* Added - removes default margin */
    padding:0; /* Added - removes default padding */
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:17px;
    transition:0.3s;
    white-space: nowrap; /* Added - prevents menu items from wrapping */
}

.menu a:hover{
    color:rgb(220,53,69);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    z-index: 999;
    animation: slideDown 0.3s ease;
    background: transparent; 
    backdrop-filter: none; 
    border: none;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: rgb(220, 53, 69);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= HERO ================= */
.hero-section{
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content{
    position: relative;
    color: white;
    text-align: center;
}

.hero-content h1{
    font-size: 80px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-content .motto{
    font-size: 28px;
    letter-spacing: 4px;
}

.social-sidebar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999; /* Ensures they stay above the video and slider */
}

.social-icon img {
    width: 26px; /* "Small small" size as requested */
    height: 26px;
    filter: invert(1); /* Turns icons white to pop against the dark video/images */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-icon:hover img {
    opacity: 1;
    transform: scale(1.70); /* Slight grow effect on hover */
    filter: invert(1) drop-shadow(0 0 8px rgba(210, 74, 87, 0.8)); /* Glows red on hover */
}


/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px){
    .navbar{
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        align-items: flex-start;
        height: auto;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
    }

    .search-box {
        display: none;
    }

    .nav-right{
        flex-direction: column;
    }

    .hero-content h1{
        font-size: 50px;
    }

    .hero-content .motto{
        font-size: 20px;
    }

    header {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    header .logo {
        text-align: center;
        grid-column: 1;
    }
    
    header .menu {
        grid-column: 1;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 16px;
    }
    
    .video-container {
        flex-direction: column;
    }
    
    .text-container {
        margin-left: 0;
        padding: 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                     0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                     0 0 20px rgba(255, 215, 0, 0.8),
                     0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Video Container Section */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1200');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    box-shadow: inset 0 0 10px rgb(88, 182, 95);
}

.promo-video {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease-in-out;
}

.text-container {
    margin-left: 15px;
    animation: fadeIn 2s ease-in-out;
    padding: 35px 50px;
    max-width: 600px;
}

.text-container h2 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    text-align: center;
}

.text-container h3 {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: -15px;
}

.text-container p {
    font-size: 18px;
    text-align: justify;
    color: white;
    line-height: 1.6;
}

/* Best Itinerary Section */
.best-itinerary{
    padding: 80px 20px;
    background: linear-gradient(135deg, #7f87d6, #ffffff);
    color: white;
}

.section-title{
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
}

.itinerary-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.itinerary-text{
    max-width: 500px;
}

.itinerary-text h2{
    font-size: 38px;
    margin-bottom: 20px;
}

.itinerary-text p{
    font-size: 18px;
    line-height: 1.7;
}

/* Slideshow */
.itinerary-slider{
    width: 450px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.itinerary-slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.itinerary-slider img.active{
    opacity: 1;
}

/* BLOG SECTION SPLIT LAYOUT */
.blog-section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

.blog-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.blog-text {
    flex: 1;
    min-width: 300px;
}

.blog-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.blog-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.blog-text .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.blog-text .btn:hover {
    background: #b02a37;
}

/* SLIDESHOW ON RIGHT */
.image-box {
    flex: 1;
    min-width: 300px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.image-box .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-box .slide.active {
    display: block;
    opacity: 1;
}

/* Adventures Section Styling */
.adventures-section {
    width: 100%;
    position: relative;
}

.adventures-container {
    position: relative;
    background: url('tig.jpg') center/cover no-repeat; /* replace with your image */
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.adventures-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
    z-index: 1;
}

.adventures-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.adventures-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.adventures-content .highlight-text {
    color: rgb(247, 231, 85);
    font-size: 3.5rem;
    font-weight: bold;
}

.adventures-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.see-more-button {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #dc3545;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more-button:hover {
    background-color: #d5d0e8;
    transform: scale(1.05);
}

.view-more-button {
    padding: 15px 30px;
    border: none;
    font-size: 20px;
    background-color: white;
    color: #667eea;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.view-more-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

/* About Us Section */
.about-us-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

.about-us-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-us-image {
    flex: 1;
    min-width: 300px;
}

.about-us-image img {
    width: 100%;
    height: 700px; /* as requested */
    object-fit: cover;
    border-radius: 15px;
}

.about-us-text {
    flex: 1;
    min-width: 300px;
}

.about-us-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-us-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.see-more-button {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #dc3545;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-button:hover {
    background-color: #b02a37;
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: rgb(17, 19, 41);
    color: white;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}

.left-side-footer ul {
    list-style: none;
    padding: 0;
}

.left-side-footer ul li {
    margin: 10px 0;
}

.footer-navlinks {
    color: white;
    text-decoration: none;
}

.footer-navlinks:hover {
    color: rgb(220, 53, 69);
}

.left-side-footer-2 a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.left-side-footer-2 a:hover {
    color: rgb(220, 53, 69);
}

.subscribe-container {
    max-width: 400px;
}

.subscribe-input input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.subscribe-button {
    width: 100%;
    padding: 12px;
    background-color: rgb(220, 53, 69);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.subscribe-button:hover {
    background-color: rgb(180, 40, 50);
}

/* Placeholder Image */
.placeholder-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}