/*=============== 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 ==========*/
  --hue-color: 195;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 4%, 45%);
  --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), 48%, 60%);
  --text-color-light: hsl(var(--hue-color), 48%, 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);
}

/* ===== Language toggle (global) ===== */
.lang-zh { display: none; }
body.zh .lang-zh { display: revert; }
body.zh .lang-en { display: none; }

/*=============== 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; }

.nav__logo-wrap{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.nav__logo-img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/*=============== 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: 0 auto;
}

.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__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.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);
}

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

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

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button { font-size: var(--smaller-font-size); }
.home__info-overlay { overflow: var(--img-hidden); }

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

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

/*=============== 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; }

/*=============== PLAN ===============*/
.plan {
  padding: 4rem 0;
  color: var(--text-color);
  text-align: center;
}

.plan__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.plan__content {
  flex: 1;
  max-width: 500px;
}

.plan__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  align-items: center;
}

.plan__description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.plan__input-group label { color: var(--title-color); }

.ai-highlight {
  background: linear-gradient(45deg, #ffcc00, #ff6699, #ff33cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.1em;
  animation: aiGlow 1.5s infinite alternate;
}

@keyframes aiGlow {
  from { text-shadow: 0px 0px 8px rgba(255, 204, 0, 0.8); }
  to   { text-shadow: 0px 0px 12px rgba(255, 102, 153, 1); }
}

.plan__form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plan__input-group {
  margin-bottom: 1rem;
  text-align: left;
}

.plan__input-group label {
  font-size: 0.9rem;
  font-weight: bold;
}

.plan__input {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  border-radius: 5px;
  font-size: 1rem;
  background-color: var(--input-color);
  color: var(--text-color);
}

.plan__input:focus {
  border: 2px solid #ffcc00;
  background: white;
}

.ai-highlight a { color: inherit; text-decoration: none; }
.ai-highlight a:hover { text-decoration: underline; }

.plan__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem;
  background: #ffcc00;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.plan__button:hover {
  background: #ff9900;
  transform: scale(1.05);
}

.plan__output {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 10px;
  display: none;
}

.plan__output-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan__image {
  flex: 1;
  text-align: center;
}

.plan__image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .plan__container { flex-direction: column; text-align: center; }
  .plan__content { max-width: 100%; }
}

/*=============== ATTRACTION GRID (single source of truth) ===============*/
.attraction__grid{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

.attraction__card{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-width: 0;
}

.attraction__img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.attraction__data{
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}

.attraction__title,
.attraction__description{
  color: var(--white-color);
}

@media (max-width: 1024px){
  .attraction__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px){
  .attraction__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px){
  .attraction__grid{ grid-template-columns: 1fr; }
  .attraction__img{ height: 200px; }
}

.attraction__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.attraction__card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
  cursor: pointer;
}

/*=============== DESTINATION ===============*/
.destination__card {
  position: relative;
  width: 300px;
  overflow: var(--img-hidden);
}

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

.destination__title,
.destination__description {
  color: var(--white-color);
}

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

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

.destination__img {
  transition: var(--img-transition);
}

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

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

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

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

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

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

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

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

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

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

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

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

/*=============== 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; }

/*=============== FLEET (responsive + true centered images) ===============*/
.fleet__container{
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.fleet__card{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-width: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

/* Fleet media viewport */
.fleet__media{
  height: 360px;                 /* control visible area */
  display: flex;
  align-items: center;           /* vertical center */
  justify-content: center;       /* horizontal center */
  background: rgba(0,0,0,.06);
  overflow: hidden;              /* keep it tidy */
  padding: 12px;                 /* optional breathing room */
}

/* Image fits INSIDE the viewport */
.fleet__img{
  width: 100%;
  height: 100%;                  /* important */
  object-fit: contain;           /* show full car */
  object-position: center;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Hover zoom still works */
.fleet__card:hover .fleet__img{
  transform: var(--img-scale);
}

/* Overlay content */
.fleet__content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
  pointer-events: none;         /* optional: prevents overlay blocking clicks */
}

/* Let the button remain clickable */
.fleet__button{
  pointer-events: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/* Text readability */
.fleet__title,
.fleet__content{
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Responsive */
@media (max-width: 1024px){
  .fleet__container{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px){
  .fleet__container{ grid-template-columns: 1fr; }
  .fleet__media{ height: 220px; }
  .fleet__img{ padding: .6rem; }
}

/* Responsive breakpoints */
@media (max-width: 1024px){
  .fleet__container{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px){
  .fleet__container{ grid-template-columns: 1fr; }
  .fleet__img{ height: 220px; padding: .6rem; }
}



/*=============== FJORDS GALLERY (FIXED) ===============*/
/*=============== FJORDS TRIP CARDS ===============*/
.fjords-trips__grid{
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.fjords-trip{
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

.fjords-trip__media{
  position: relative;
  overflow: hidden;
}

/* cover image (no cropping, works with portrait 1620×2160) */
.fjords-trip__cover{
  width: 100%;
  height: 260px;
  object-fit: contain;          /* ✅ no cropping */
  object-position: center;
  display: block;
  background: rgba(0,0,0,.06);
}

.fjords-trip__badge{
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(0,0,0,.35);
  color: var(--white-color);
  padding: .4rem .7rem;
  border-radius: 999px;
  font-size: var(--smaller-font-size);
  backdrop-filter: blur(8px);
}

.fjords-trip__body{
  padding: 1.25rem;
}

.fjords-trip__title{
  font-size: var(--h2-font-size);
  margin-bottom: .5rem;
}

.fjords-trip__desc{
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Responsive grid */
@media (min-width: 768px){
  .fjords-trips__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px){
  .fjords-trips__grid{ grid-template-columns: repeat(3, 1fr); }
}

/*=============== FJORDS GALLERY (legacy-safe, no aspect-ratio) ===============*/
.fjords-gallery{
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Balanced thumbnail tiles */
.fjords-gallery__img{
  width: 100%;
  height: 15px;            /* ✅ controls vertical size */
  object-fit: contain;      /* ✅ no cropping, no distortion */
  object-position: center;
  display: block;
  padding: .35rem;
  border-radius: 12px;
  background: rgba(0,0,0,.06);
}

/* Tablet */
@media (max-width: 1024px){
  .fjords-gallery{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Phone */
@media (max-width: 768px){
  .fjords-gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fjords-gallery__img{
    height: 170px;
  }
}

/* Small phone */
@media (max-width: 480px){
  .fjords-gallery{
    grid-template-columns: 1fr;
  }
  .fjords-gallery__img{
    height: 220px;
  }
}

/*=============== CONTACT (images above form) ===============*/
.contact__images-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__img{
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: transparent;
  border-radius: 14px;
}

/* Single mobile rule (deduped) */
@media (max-width: 480px){
  .contact__images-row{ grid-template-columns: 1fr; }
  .contact__img{ height: 180px; }
}

.contact{
  position: static;
  z-index: auto;
}

.contact-form{
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.contact-form label{
  display: block;
  margin-bottom: .5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  background-color: var(--input-color);
  color: var(--text-color);
  padding: .9rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  outline: none;
}

.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}

.contact-form button{
  width: 100%;
  border-radius: 8px;
}

.contact__status{
  margin-top: 12px;
  font-size: var(--small-font-size);
}

@media screen and (min-width: 768px){
  .contact__container{
    grid-template-columns: 1fr 1fr;
  }
}

/*=============== FOOTER ===============*/
.footer__container { row-gap: 5rem; }

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title { margin-bottom: var(--mb-0-5); }
.footer__description { margin-bottom: var(--mb-2); }

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle { margin-bottom: var(--mb-1); }

.footer__item { margin-bottom: var(--mb-0-75); }

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

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

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

/*========== 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 ===============*/
@media screen and (max-width: 340px) {
  .fleet__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .guide__content { padding: 0; }
  .guide__overlay:nth-child(1) { width: 190px; }
  .guide__overlay:nth-child(2) { width: 80px; }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .guide__img,
  .video__container {
    padding: 0;
  }
}

@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .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; }

  .plan__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .plan__data, .plan__title { text-align: center; }

  .plan__title { margin-bottom: var(--mb-1-5); }
  .plan__description { margin-bottom: var(--mb-2); }

  .destination__container {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .destination__container,
  .fleet__container { padding-top: 2rem; }

  .guide__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }

  .guide__overlay:nth-child(2) { width: 160px; }

  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

@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; }
  .plan__img-one { width: 230px; }

  .destination__card { width: 200px; }
  .destination__container { width: 800px; }

  .destination__data {
    left: 1.5rem;
    bottom: 2rem;
  }

  .destination__title { font-size: var(--h2-font-size); }

  .guide__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }

  .guide__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }

  .guide__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }

  .video__container { grid-template-columns: .7fr; }
  .video__description { padding: 0 8rem; }

  .fleet__container { gap: 3rem 2rem; }

  .footer__content { justify-items: center; }
}

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

@media screen and (min-height: 721px) {
  body { margin: 0; }
  .home__container, .home__img { height: 640px; }
}
