/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 190;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}


/*=============== HOME ===============*/

.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* ===== BACKGROUND SLIDER ===== */

.home__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* Slides */
.home__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;                 /* ⭐ IMPORTANT FIX */

  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* Visible slide */
.home__img.active {
  opacity: 1;
}

/* Dark overlay */
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

/* ===== CONTENT LAYOUT ===== */

.home__container {
  position: relative;
  height: 100vh;                  /* ⭐ CRITICAL FIX */
  align-content: center;
  row-gap: 3rem;
}

/* Text */
.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
  letter-spacing: 0.5px;
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
  line-height: 1.1;
}

/* ===== SOCIAL ===== */

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.3rem;
  width: max-content;
  transition: 0.3s;
}

.home__social-link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* ===== INFO CARD ===== */

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: 0.75rem;

  position: absolute;
  right: 0;
  bottom: 1.5rem;

  width: 230px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

.home__info-overlay {
  overflow: hidden;
  border-radius: 10px;
}

.home__info-img {
  width: 150px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/* ===== RESPONSIVE ===== */

@media screen and (max-width: 768px) {
  .home__data-title {
    font-size: 2rem;
  }

  .home__social {
    flex-direction: row;
    column-gap: 1.5rem;
  }

  .home__info {
    position: static;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .home__data-title {
    font-size: 1.7rem;
  }

  .home__data-subtitle {
    font-size: var(--small-font-size);
  }
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title, 
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: cover;
  transition: var(--img-transition);
}


.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one {
  width: 400px;
  height: 250px;
  object-fit: cover;
  transition: var(--img-transition);
}

.experience__img-two {
  width: 250px;
  height: 300px;
  object-fit: cover;
  transition: var(--img-transition);
}


.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== GALLERY SECTION ===============*/

.gallery-section{
  padding: 4.5rem 1rem 2.5rem;
  text-align: center;
}

.gallery-section h2{
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
}

/* FILTER BUTTONS */

.gallery-filters{
  margin-bottom: var(--mb-2);
}

.gallery-filters button{
  padding: .6rem 1.2rem;
  margin: .3rem;
  border-radius: 2rem;
  background-color: var(--input-color);
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: .3s;
  border: none;
  cursor: pointer;
}

.gallery-filters button:hover,
.gallery-filters button.active{
  background-color: var(--first-color);
  color: var(--white-color);
}

/* GRID */

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1000px;
  margin: auto;
}

/* CARD */

.gallery-item{
  height: 260px;
  border-radius: 1rem;
  overflow: hidden;
  display: none;
  cursor: pointer;
  position: relative;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--img-transition);
}

.gallery-item:hover img{
  transform: var(--img-scale);
}

/* SHOW BUTTON */

.show-btn{
  margin-top: var(--mb-2);
}

.show-btn button{
  background-color: var(--first-color);
  color: var(--white-color);
  padding: .8rem 2rem;
  border-radius: 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  border: none;
  cursor: pointer;
}

.show-btn button:hover{
  background-color: var(--first-color-alt);
}

/* LIGHTBOX */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: var(--z-fixed);
}

.lightbox img{
  max-width: 92%;
  max-height: 82%;
  border-radius: 1rem;
}

.lightbox span{
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white-color);
  cursor: pointer;
}

/* ================= TABLET ================= */

@media screen and (max-width: 768px){

  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item{
    height: 220px;
  }
}

/* ================= MOBILE ================= */

@media screen and (max-width: 480px){

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-item{
    height: 240px;
  }

  .gallery-filters button{
    padding: .55rem 1rem;
    font-size: var(--smaller-font-size);
  }
}




/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*=============== PLACES ===============*/

.place__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

/* Card */
.place__card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.place__img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: var(--img-transition);
}

/* Hover effect */
.place__card:hover .place__img {
  transform: var(--img-scale);
}

/* Content Overlay */
.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: var(--white-color);
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: 1rem;
}

.place__price {
  font-size: var(--small-font-size);
}

/* Rating */
.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: .8rem;
  margin-right: 4px;
}

.place__rating-number {
  font-size: var(--small-font-size);
}

/* Button */
.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/* ================= MOBILE ================= */

@media screen and (max-width: 768px) {
  .place__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .place__img {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .place__container {
    grid-template-columns: 1fr;
  }

  .place__img {
    height: 220px;
  }
}


/*=============== SUBSCRIBE ===============*/
.contact-section {
    padding: 4rem 8%;
    background: #f8f9fb;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.contact-description {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Cards */
.contact-box {
    background: white;
    padding: 28px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.contact-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.contact-box h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.contact-box p {
    font-size: 0.9rem;
    color: #475569;
    margin: 3px 0;
}

/* Hover Effect */
.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* WhatsApp Icon Green (Nice Detail) */
.contact-box:first-child i {
    color: #25D366;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}

/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/*=============== FOOTER ===============*/
.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.85);
    padding: 3.5rem 8% 2rem;
    font-size: 0.9rem;
}

.footer__container {
    max-width: 1200px;
    margin: auto;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 2.5rem;
}

.footer__title {
    color: white;
    margin-bottom: 10px;
}

.footer__subtitle {
    color: white;
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer__description {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Links */
.footer__link {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer__link:hover {
    color: white;
    transform: translateX(3px);
}
.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}


/* Contact Info */
.footer__info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    color: rgba(255,255,255,0.75);
}

.footer__info i {
    color: #25D366; /* WhatsApp green vibe */
}

/* Social Icons */
.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer__social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.footer__social:hover {
    background: #25D366;
    transform: translateY(-3px);
}

/* Bottom Area */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
}

.footer__bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 12px;
}

.footer__bottom a:hover {
    color: white;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .footer__content {
        grid-template-columns: 1fr;
    }
}


/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  
}
.whatsapp-float {
    position: fixed;
    left: 20px;              /* left side position */
    bottom: 80px;            
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-decoration: none;
    z-index: 999;
    transition: 0.3s ease;
}

/* Hover animation */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}



.tour__gallery {
    display: flex;
    justify-content: center;
    gap: 22px;              
    margin-top: 1.5rem;
}

.tour__gallery-img {
    width: 320px;          
    height: 420px;          
    object-fit: cover;
    border-radius: 20px;
    transition: 0.35s;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);  /* modern look */
}

.tour__gallery-img:hover {
    transform: translateY(-6px) scale(1.03);   /* smooth hover */
}

/* Text spacing */
.tour__content {
    max-width: 800px;
    margin: 1.2rem auto 0;   /* center block */
    text-align: center;      /* text center */
}

.tour__description {
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .tour__gallery-img {
        width: 30%;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .tour__gallery {
        flex-direction: column;
        align-items: center;
    }

    .tour__gallery-img {
        width: 92%;
        height: 210px;
    }
}


/* ===== DETAILS SECTION ===== */

.details__container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

.details__box {
    flex: 1;
}

.details__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0b3c49;
}

.details__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

/* Icons */
.details__list i {
    font-size: 1.1rem;
    color: #1bb6d9; /* blue side */
}

/* Included Box Styling */
.details__box.included {
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

/* Green icons for included */
.details__box.included i {
    color: #27ae60;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .details__container {
        flex-direction: column;
        gap: 30px;
    }
}

.plan__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0b3c49;
}

.plan__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.plan__tab {
    border: none;
    background: #eef7fb;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.plan__tab:hover {
    background: #d9eef7;
}

.plan__tab.active {
    background: #19a7ce;
    color: white;
}

.plan__list {
    list-style: none;
    padding: 0;
}

.plan__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    animation: fadeIn 0.25s ease;
}

.plan__list i {
    color: #19a7ce;
    font-size: 1.1rem;
}

.plan__button {
    margin-top: 1.5rem;
}

.plan__custom-btn {
    display: inline-block;
    background: #19a7ce;
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.3s;
}

.plan__custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

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



.plan__custom-btn {
    display: inline-block;
    background: #19a7ce;
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
}


.dayplan__tabs {
    display: flex;
    gap: 12px;
    margin: 1rem 0 1.5rem;
}

.dayplan__tab {
    border: none;
    background: #eef7fb;
    padding: 8px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.dayplan__tab.active {
    background: #19a7ce;
    color: white;
}

.dayplan__list {
    list-style: none;
    padding: 0;
}

.dayplan__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    animation: fadeDay 0.25s ease;
}

.dayplan__list i {
    color: #19a7ce;
}

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


#map {
    width: 100%;
    height: 420px;          /* CRITICAL */
    margin-top: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.plan__button {
    text-align: center;
    margin-top: 40px;
}
.provide {
    padding: 60px 0;
}

.provide__title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #0b3b44;
}

.provide__card {
    display: flex;
    gap: 60px;
    background: white;
    border-radius: 18px;
    padding: 35px 45px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    align-items: flex-start;
}

.provide__list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 260px;
}

.provide__list li {
    margin-bottom: 14px;
    font-size: 15px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.provide__list i {
    color: #16a34a; /* green icons */
    font-size: 18px;
}

.provide__text {
    flex: 1;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .provide__card {
        flex-direction: column;
        gap: 25px;
    }
}


/* ===== TOUR PLAN SECTION ===== */

.tour-plan {
  padding: 2rem 1rem;
}

.tour-plan h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Tabs Container */
.tour-days {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Individual Day Button */
.tour-day {
  padding: 10px 20px;
  border-radius: 14px;
  border: none;
  background: #f3f8fb;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
  white-space: nowrap;
}

.tour-day:hover {
  background: #e4f1f7;
}

.tour-day.active {
  background: #11a8e2;
  color: white;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .tour-day {
    font-size: 14px;
    padding: 9px 16px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .tour-plan h2 {
    font-size: 1.5rem;
  }

  .tour-day {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .tour-day {
    flex: 1 1 100%;
  }
}
.container {
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.dayplan__tabs {
    display: flex;
    gap: 10px;
    margin: 1rem 0 1.5rem;

    overflow-x: auto;          /* ⭐ critical */
    white-space: nowrap;       /* ⭐ prevents wrap */
    padding-bottom: 6px;

    scrollbar-width: none;
}

.dayplan__tabs::-webkit-scrollbar {
    display: none;
}

/* Prevent button shrinking */
.dayplan__tab {
    flex: 0 0 auto;
    border: none;
    background: #eef7fb;
    padding: 9px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
    font-size: 0.9rem;
}

.dayplan__tab:hover {
    background: #d9eef7;
}

.dayplan__tab.active {
    background: #19a7ce;
    color: white;
}

