@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&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");


:root {
  --primary-color: #0376c1;
  --primary-color-dark: #002954;
  --text-dark: #12110f;
  --text-light: #6b7280;
  --extra-light: #fbf7f6;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  columns: var(--text-dark);
  text-align: center;
}

.section__description {
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--text-light);
  text-align: center;
}


.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo span {
  color: white;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #d0d4dd;
}

/* Base link styles (keeping your existing settings) */
.nav-link,
.navbar-nav .nav-link {
  color: #ffffff;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-weight: 500;
  transition: all 0.3s ease; /* Smooth transition for scale and shadow */
  display: inline-block; /* Required for transform/scale to work properly */
}

/* Hover State: Scale up and add the specific colored shadow */
.nav-link:hover {
  color: #ffffff; /* Ensures text stays white */
  transform: scale(1.1); /* Makes the button "little big" */
  text-shadow: 0px 4px 8px #07b2e6; /* Shadow of your specific color below name */
}

/* Active State: Show a border/box shadow of that color */
/* This triggers if the link has the .active class */
.nav-link.active {
  color: #ffffff;
  box-shadow: 0px 4px 0px 0px #07b2e6; /* Creates a solid border-like shadow at the bottom */

}

/* Cleanup for nav__links conflict */
.nav__links a:hover {
  background: transparent;
}



.navbar-brand img {
  width: auto !important;     /* override global width: 100% */
  object-fit: contain;
}

@media (min-width: 1024px) {
  .navbar-brand img {
    height: 150px;
  max-height: 150px;
  }
}

@media (max-width: 1024px) {
  .navbar-brand img {
    height: 120px;
  max-height: 150px;
  }
}


@media (max-width: 768px) {
  .navbar-brand img {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 90px;
  }
}




/* Default styles for PC and larger screens */
            .tour-category-h2 {
                margin-top: 25px;
                margin-bottom: 25px;
                font-weight: 900;
                font-size: 3rem;
                text-align: center;
            }

            /* Tablet screens */
            @media (max-width: 1024px) {
                .tour-category-h2 {
                    font-size: 3rem; /* keep same or adjust if needed */
                }
            }

            /* Mobile screens */
            @media (max-width: 576px) {
                .tour-category-h2 {
                    font-size: 2rem;
                }
            }


footer{
  background-color: #12110f;
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  margin-block: 1rem;
  font-family: var(--header-font);
  color: white;
  line-height: 1.5rem;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  font-size: 1.25rem;
  color: white;
}

.footer__socials a:hover {
  color: white;
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-family: var(--header-font);
  color: white;
}

.footer__links a:hover {
  color: white;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: white;
  text-align: center;
}

@media (min-width: 540px)  {
.navbar-glass {
    background: rgba(0, 0, 0, 0.25) ;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) ;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {
.navbar-glass {
    background: rgba(0, 0, 0, 0.25) ;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) ;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

}

@media (min-width: 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  /* Completely invisible navbar – only text & hamburger remain */
.glass-navbar {
  background: transparent ;
  backdrop-filter: none ;
  -webkit-backdrop-filter: none ;
  border: none ;
  border-bottom: none ;
  box-shadow: none ;
  padding: 1rem 0; /* keep some vertical spacing if you want */
}

/* Nav links – pure white, no background ever */
.glass-navbar .nav-link,
.navbar-nav .nav-link {
  color: #ffffff ;
  background: transparent ;
  padding: 0.5rem 1rem ;
  border-radius: 0 ;
  font-weight: 500;
  transition: all 0.25s ease;
}

  .nav__header {
    padding: 0;
    background-color: transparent;
    border: none;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 3rem;
    background-color: transparent;
    transform: none;
    border: none;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
   .glass-navbar {
  background: transparent ;
  backdrop-filter: none ;
  -webkit-backdrop-filter: none ;
  border: none ;
  border-bottom: none ;
  box-shadow: none ;
  padding: 1rem 0; 
}

}
