/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Montserrat:wght@100..900&display=swap');

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

    /* ---- colors ---- */
    --title-color: hsl(220, 8%, 10%);
    --text-color: hsl(220, 8%, 40%);
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(220, 8%, 6%);
    --body-color: hsl(220, 8%, 99%);
    --container-color: hsl(220, 8%, 96%);
    --opacity-color-30: hsla(0, 0%, 90%, .3);
    --opacity-color-20: hsla(0, 0%, 90%, .2);

    /* ---- font and typography ---- */
    /* .5rem = 8px | 1rem = 16px | 1.5rem = 24px | 2rem = 32px */
    --body-font: 'Montserrat', sans-serif;
    --second-font: 'Dancing Script', cursive;
    --biggest-font-size: 3rem;
    --big-font-size: 1.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    /* ---- font weight ---- */
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* ---- z-index ---- */
    --z-tooltop: 10;
    --z-fixed: 100;
}

/* ---- RESPONSIVE TYPOGRAPHY ---- */
@media screen and (min-width: 1150px) {
    :root {
        --biggest-font-size: 6rem;
        --big-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--body-color);
    color: var(--text-color);
    transition: background-color .4s;
}

input,
button {
    outline: none;
    border: none;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ---- THEME ---- */
/* Variables for dark mode */
.dark-theme {
    --title-color: hsl(220, 8%, 90%);
    --text-color: hsl(220, 8%, 70%);
    --body-color: hsl(220, 8%, 8%);
    --container-color: hsl(220, 8%, 12%);
    --opacity-color-30: hsla(0, 0%, 15%, .3);
    --opacity-color-20: hsla(0, 0%, 15%, .2);
}

.dark-theme .bg-header .nav__logo img {
    filter: initial;
}

.dark-theme .bg-header {
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .4);
}

.dark-theme .scrollup {
    background-color: var(--container-color);
}

.dark-theme::-webkit-scrollbar {
    background-color: hsl(220, 6%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
    background-color: hsl(220, 6%, 40%);
}




/* ---- REUSABLE CSS CLASSES ---- */
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

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

.section {
    padding-block: 2rem 1rem;
}

.section__title {
    font-size: var(--big-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1rem;
}

.main {
    overflow: hidden;
}










/* ---- HEADER & NAVBAR ---- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: background-color .4s, box-shadow .4s;
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    column-gap: .25rem;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

.nav__logo img {
    transition: filter .4s;
}

.nav__toggle,
.nav__close,
.nav__theme {
    display: inline-flex;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white-color);
    transition: color .4s;
}

.nav__buttons {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

/* ---- Navigation for Mobile Devices ---- */
@media screen and (max-width: 1150px){
    .nav__menu{
        position: fixed;
        top: -120%;
        left: 0;
        background-color: var(--body-color);
        width: 100%;
        padding-block: 4rem;
        box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
        border-radius: 0 0 1.5rem 1.5rem;
        transition: top .4s;
    }
}

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

.nav__link {
    position: relative;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.nav__link::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--title-color);
    position: absolute;
    left: 0;
    bottom: -.5rem;
    transition: width .4s;
}

.nav__link:hover::after {
    width: 60%;
}

.nav__close {
    color: var(--title-color);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

/* SHOW MENU */
.show-menu {
    top: 0;
}

/* Change Background Header on Scroll */
.bg-header {
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
}

.bg-header :is(.nav__logo, .nav__toggle, .nav__theme){
    color: var(--title-color);
}

.bg-header .nav__logo img {
    filter: invert(100%);
}

/* ---- ACTIVE LINK ---- */
.active-link::after {
    width: 60%;
}




/* ---- HOME ---- */
.home {
    position: relative;
}

.home__bg,
.home__blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home__bg {
    object-fit: cover;
    object-position: center;
}

.home__blur {
    background-color: var(--opacity-color-20);
    backdrop-filter: blur(40px);
    transition: background-color .4s;
}

.home__container {
    position: relative;
    padding-block: 2rem 3rem;
    row-gap: 3rem;
}

.home__data {
    text-align: center;
    color: var(--white-color);
}

.home__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    line-height: 110%;
    margin-bottom: 1rem;
}

.home__description {
    margin-bottom: 2rem; 
}

.home__swiper {
    max-width: 320px;
    border-radius: 1.5rem;
}

/* Swiper Classes */
.home__swiper .swiper-button-prev::after,
.home__swiper .swiper-button-next::after {
    content: '';
}

.home__swiper :is(.swiper-button-prev, .swiper-button-next) {
    color: var(--white-color);
    font-size: 1.5rem;
    background-color: var(--opacity-color-30);
    backdrop-filter: blur(24px);
    width: 2rem;
    height: 2rem;
    border-radius: .25rem;
    top: initial;
    bottom: 1.25rem;
    transition: background-color .4s;
}

.home__swiper .swiper-button-prev{
    left: initial;
    right: 4rem;
}

.home__swiper .swiper-button-next{
    right: 1.25rem;
}

/* ---- Button ---- */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    border-radius: .5rem;
    transition: background-color .4s;
}

.button i {
    font-weight: initial;
    font-size: 1.5rem;
    transition: transform .4s;
}

.button:hover i {
    transform: translateX(.5rem);
}

.button__opa-30 {
    background-color: var(--opacity-color-30);
}


/* ---- ABOUT ---- */
.public-pdf {
    color: var(--title-color);
}

.about__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about__data .section__description {
    text-align: center;
}

.about__img {
    border-radius: 1.5rem;
    
}

#info-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

.div1 .section__description {
    text-align: center;
}

.div3 .section__description {
    text-align: center;
}







/* DESTINATION */
.destination__container {
    grid-template-columns: 300px;
    justify-content: center;
}

.destination__card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.destination__img {
    transition: transform .4s;
}

.destination__data {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: var(--opacity-color-30);
    backdrop-filter: blur(24px);
    color: var(--white-color);
    display: grid;
    row-gap: .25rem;
    border-radius: 1.5rem;
    transition: background-color .4s;
}

.destination__subtitle {
    font-size: var(--h2-font-size);
    font-family: var(--second-font);
}

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

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

.destination__country i {
    font-size: 1rem;
}

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

.destination__card:hover .destination__img {
    transform: scale(1.2);
}

/* TESTIMONIALS */
.testimonial__container {
    justify-content: center;
    gap: 0;
}

.testimonial__img {
    width: 300px;
    border-radius: 1.5rem 1.5rem 0 0;
}

.testimonial__swiper {
    max-width: 300px;
    background-color: var(--container-color);
    border-radius: 0 0 1.5rem 1.5rem;
    margin-inline: initial;
    transition: background-color .4s;
}

.testimonial__card {
    padding: 2.5rem 2rem 3rem 1.25rem;
}

.testimonial__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    margin-bottom: .75rem;
}

.testimonial__description {
    margin-bottom: 1.5rem;
}

.testimonial__profile img {
    width: 60px;
    border-radius: 50%;
}

.testimonial__info h3 {
    font-size: var(--normal-font-size);
    color: var(--title-color);
    margin-bottom: .25rem;
}

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

/* TESTIMONIALS SWIPER BUTTONS */
.testimonial__swiper .swiper-button-prev::after,
.testimonial__swiper .swiper-button-next::after {
    content: '';
}

.testimonial__swiper :is(.swiper-button-prev, .swiper-button-next) {
    color: var(--title-color);
    font-size: 1.5rem;
    top: initial;
    bottom: 1.25rem;
}

.testimonial__swiper .swiper-button-prev {
    left: initial;
    right: 3.5rem;
}

.testimonial__swiper .swiper-button-next {
    right: 1.25rem;
}

/*GALLERY */
.gallery__container {
    grid-template-columns: 300px;
    justify-content: center;
}

.gallery__card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.gallery__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, hsla(0, 0%, 0%, 0) 70%, hsla(0, 0%, 0%, .7) 100%);
}

.gallery__img {
    transition: transform .4s;
}

.gallery__data {
    position: absolute;
    left: 1.25rem;
    bottom: 1rem;
    color: var(--white-color);
}

.gallery__subtitle {
    font-size: var(--h1-font-size);
    font-family: var(--second-font);
}

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

.gallery__card:hover .gallery__img {
    transform: scale(1.2);
}







/**********Contact Us Form Starts**********/
.form__header {
    text-align: center;
    display: block;
    margin-bottom: -2rem;
}



/**********FormSpree Form Starts**********/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/** Variables **/

:root {
  --color-background: #cbd5e1;
  --color-background-alt: #3a9092;
  --color-border-active: #23494c;
  --color-border-default: #94a3b8;
  --color-highlight: #7ecac7;
  --color-primary: #23494c;
  --color-primary-active: #122d30;
  --color-text-default: #0f172a;
  --color-text-muted: #475569;

  --font-family-body: "Poppins", sans-serif;
  --font-family-display: "IBM Plex Serif", system-ui, sans-serif;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1rem;
  margin-bottom: 3rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 0.75rem;
  grid-template-columns: 1fr;
}

fieldset {
  display: grid;
  row-gap: 1rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}

.fs-label {
  color: var(--color-background);
  display: block;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 0.75rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--title-color);
  border-radius: 0.375rem;
  color: var(--body-color);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 1rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  margin: 0 auto;
}

.fs-button:hover {
  background-color: var(--color-text-muted);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 3px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-primary);
  font-size: 0.875rem;
  height: 2rem;
  line-height: 1.25rem;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.125rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-primary);
  height: 1rem;
  width: 1rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch-field {
  align-items: center;
  column-gap: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  cursor: pointer;
  height: 1.5rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.75rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-primary);
  font-size: 0.875rem;
  line-height: 1.25rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

/*=============== BREAKPOINTS ===============*/
  /* For large devices */
  @media screen and (min-width: 1024px) {
    /* Form */
    .fs-form:where(.fs-layout__2-column) {
        column-gap: 0.75rem;
        grid-template-columns: 1fr 1fr;
      }
  }













/**********FormSpree Form Ends**********/





#form {
    scroll-margin-top: 80px;
  }

/*=============== BREAKPOINTS ===============*/
  /* For large devices */
  @media screen and (min-width: 1024px) {
    /* Form */
    .form__header {
    text-align: center;
    display: block;
    }
    #form {
        scroll-margin-top: 120px;
      }
  }
/**********Contact Us Form Ends**********/







/* ---- FOOTER ---- */
.footer {
    background-color: var(--black-color);
    padding-block: 4rem 2rem;
}

.footer__container {
    row-gap: 3rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    justify-self: flex-start;
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
}

.footer__content {
    grid-template-columns: repeat(2, max-content);
    gap: 3rem;
}

.footer__title {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.footer__links {
    display: grid;
    row-gap: .75rem;
}

.footer__link {
    color: var(--white-color);
}

.footer__social {
    display: flex;
    column-gap: 1rem;
}

.footer__social-link {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: transform .4s;
}

.footer__social-link:hover {
    transform: translateY(-.25rem);
}

.contributors {
    display: block;
    margin-top: 2rem;
    color: var(--white-color);
    text-align: center;
    font-size: var(--small-font-size);
}

.footer__copy {
    display: block;
    margin-top: 2rem;
    color: var(--white-color);
    text-align: center;
    font-size: var(--small-font-size);
}









/* ---- SCROLL BAR ---- */
::-webkit-scrollbar {
    width: .6rem;
    background-color: hsl(220, 6%, 80%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(220, 6%, 60%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(220, 6%, 50%);
}




/* ---- SCROLL UP ---- */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
    color: var(--title-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    border-radius: .25rem;
    z-index: var(--z-tooltop);
    transition: bottom .4s, transform .4s, background-color .4s;
}

.scrollup:hover {
    transform: translateY(-.5rem);
}

/* ---- SHOW SCROLL UP ---- */
.show-scroll {
    bottom: 3rem;
}
/* Download icon color: dark in light mode, white in dark mode */
.ri-file-download-line {
    color: #222; /* dark in light mode */
    transition: color .4s;
}

.ri-multi-image-fill {
    color: #222; /* dark in light mode */
    transition: color .4s;
}
.dark-theme .ri-file-download-line {
    color: #fff; /* white in dark mode */
}
.dark-theme .ri-multi-image-fill {
    color: #fff; /* white in dark mode */
}

.dark-theme #calendar-iframe {
    filter: invert(1) hue-rotate(180deg);
    background: #000 !important;
}


/* FIX SCROLL SHOW */
#about {
    scroll-margin-top: 80px;
}

#gallery {
    scroll-margin-top: 80px;
}

#testimonials {
    scroll-margin-top: 80px;
}

#availability {
    scroll-margin-top: 80px;
}

#contact {
    scroll-margin-top: 80px;
}

.fs-form {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}




/* ---- MEDIA QUERIES ---- */
/* For small devices */
@media screen and (max-width: 320px) {
    .container {
        margin-inline: 1rem;
    }

    .home__title {
        font-size: 2.5rem;
    }

    .destination__container, 
    .gallery__container {
        grid-template-columns: 250px;
    }

    .footer__content {
        grid-template-columns: max-content;
    }

    #about {
        scroll-margin-top: 50px;
    }

    #gallery {
        scroll-margin-top: 50px;
    }

    #testimonials {
        scroll-margin-top: 50px;
    }

    #availability {
        scroll-margin-top: 50px;
    }

    #contact {
        scroll-margin-top: 50px;
    }
}

/* For MEDIUM devices */
@media screen and (min-width: 576px) {
    .home__container {
        grid-template-columns: 400px;
        justify-content: center;
    }

    .home__swiper {
        max-width: 400px;
    }

    .testimonial__img {
        width: 400px;
    }

    .testimonial__swiper {
        max-width: 400px;
    }

    .footer__content {
        grid-template-columns: repeat(3, max-content);
    }

    #about {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    #about {
        scroll-margin-top: 50px;
    }

    #gallery {
        scroll-margin-top: 50px;
    }

    #testimonials {
        scroll-margin-top: 50px;
    }

    #availability {
        scroll-margin-top: 50px;
    }

    #contact {
        scroll-margin-top: 50px;
    }
}

@media screen and (min-width: 768px) {
    .destination__container,
    .gallery__container {
        grid-template-columns: repeat(2, 300px);
    }

    .footer__content {
        grid-template-columns: repeat(4, max-content);
    }


    .parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    }

    #info-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    margin: 0 auto;
}

    .div1 { grid-area: 1 / 1 / 2 / 3; }
    .div2 { grid-area: 1 / 3 / 2 / 5; }
    .div3 { grid-area: 2 / 2 / 3 / 4; }

    .div1 {
        max-width: 80%;
        right: 5rem;
    }

    .div1 .section__description {
    text-align:right;
    }

    .div3 .section__description {
    text-align: center;
    }

    .about__img {
        max-width: 60%;
    }
    .parent {
        grid-template-columns: 1fr 2fr 2fr 1fr;
    }

    .div1 {
        justify-self: right;
    }

    .div2 {
        justify-self: center;
    }

    #about {
        margin-bottom: -8rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    

}

/* For LARGE devices */
@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .section {
        padding-block: 2rem 1rem;
    }

    #about {
        margin-top: 1rem;
    }
    

    .section__title {
        margin-bottom: 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        column-gap: 4rem;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__menu {
        margin-left: auto;
    }

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

    .nav__link {
        color: var(--white-color);
    }

    .nav__link::after {
        background-color: var(--white-color);
    }

    .bg-header .nav__link {
        color: var(--title-color);
    }

    .bg-header .nav__link::after {
        background-color: var(--title-color);
    }

    .home__container {
        grid-template-columns: 520px 700px;
        align-items: center;
        padding-block: 6rem 9rem;
        gap: 0;
    }

    .home__data {
        text-align: initial;
        transform: translateX(3rem);
        z-index: 5;
    }

    .home__description {
        padding-right: 6rem;
        margin-bottom: 4rem;
    }

    .home__swiper {
        max-width: 700px;
        transform: translateX(-3rem);
    }

    .home .swiper-button-prev,
    .home .swiper-button-next {
        bottom: 2rem;
    }

    .home .swiper-button-prev {
        right: 4.5rem;
    }

    .home .swiper-button-next {
        right: 2rem;
    }

    .destination__container {
        grid-template-columns: repeat(3, 340px);
        gap: 2rem;
    }

    .destination__data {
        padding-inline: 2rem;
    }

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

    .testimonial__container {
        grid-template-columns: 600px 400px;
    }

    .testimonial__img {
        width: 600px;
        border-radius: 1.5rem 0 0 1.5rem;
    }
    .testimonial__card {
        padding: 6rem 6rem 2em 2rem;
    }

    .testimonial__title {
        margin-bottom: 1rem;
    }

    .testimonial__description {
        margin-bottom: 3rem;
    }

    .testimonial__swiper {
        border-radius: 0 1.5rem 1.5rem 0;
    }

    .testimonial .swiper-button-prev,
    .testimonial .swiper-button-next {
        bottom: 2.5rem;
    }

    .testimonial .swiper-button-prev {
        right: 5rem;
    }

    .testimonial .swiper-button-next {
        right: 3rem;
    }

    .gallery__container {
        grid-template-columns: repeat(2, 500px);
        gap: 2rem;
    }

    .gallery__card {
        left: rem;
    }

    .gallery__data {
        left: 2rem;
        bottom: 2rem;
    }

    .gallery__title {
        font-size: var(--h1-font-size);
    }


    .footer {
        padding-top: 4.5rem;
    }

    .footer__container {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }

    .footer__logo {
        align-self: flex-start; 
    }

    .footer__content {
        column-gap: 4.5rem;
    }

    .footer__title {
        margin-bottom: 1.5rem;
    }

    .scrollup {
        right: 3rem;
    }

    .parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    }

    #info-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    margin: 0 auto;
}

    .div1 { grid-area: 1 / 1 / 2 / 3; }
    .div2 { grid-area: 1 / 3 / 2 / 5; }
    .div3 { grid-area: 2 / 2 / 3 / 4; }

    .div1 {
        max-width: 80%;
        right: 5rem;
    }

    .div1 .section__description {
    text-align:right;
    }

    .div3 .section__description {
    text-align: center;
    }

    .about__img {
        max-width: 60%;
    }
    .parent {
        grid-template-columns: 1fr 2fr 2fr 1fr;
    }

    .div1 {
        justify-self: right;
    }

    .div2 {
        justify-self: center;
    }

    #about {
        margin-bottom: -8rem;
    }


    .availability__calendar iframe {
                        height: 600px !important;
                        min-width: 800px !important;
                        width: 100% !important;
                        max-width: 100% !important;
                    }
                    .calendar-placeholder {
                        max-width: 100% !important;
                    }

    #about {
        scroll-margin-top: 80px;
        zoom: 1.1;
    }

    #gallery {
        scroll-margin-top: 80px;
    }

    #testimonials {
        scroll-margin-top: 80px;
    }

    #availability {
        scroll-margin-top: 80px;
    }

    #contact {
        scroll-margin-top: 80px;
    }

}


/* 2k resolutions */
@media screen and (min-width: 2048px) {
    body {
        zoom: 1.2;
    }

    #about {
        zoom: 1.2;
    }
}