@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

:root {
  --white: #ffffff;
  --background-color: #ffffff; /* White background */
  --body-color: #ffffff;
  --footer-bg-color: #f8f9fa; /* Light footer background */
  --footer-text-color: #6c757d; /* Darker text for the footer */
  --hero-bg-color: #f0f0f0; /* Light hero background */
  --navbar-link-color: #555555; /* Darker links */

  --card-bg-dark: #ffffff; /* White card background */
  --card-text-color: #000000; /* Black card text */

  /*  Colors */
  --text-color: #000000;
  --dark-50: #f2f2f5;
  --dark-100: #e6e6e9;
  --dark-200: #ccccd1;
  --dark-300: #b3b3b8;
  --dark-400: #9999a0;
  --dark-500: #808087;
  --dark-600: #2a2a3c;
  --dark-700: #1f1f2b;
  --dark-800: #171721;
  --dark-850: #13131b;
  --dark-900: #0f0f16;
  --dark-950: #000000;

  --primary-100: #ccf2fc;
  --primary-200: #99e5fa;
  --primary-300: #66d8f7;
  --primary-400: #33ccf5;
  --primary-500: #02bced;
  --primary-600: #029fce;
  --primary-700: #027ca5;

  --second-text-color: #555555;
  --link-color: #007bff;
  --link-hover-color: #0056b3;
  --gray-first-shade: #bbbbbb;
  --gray-second-shade: #cccccc;
  --gray-third-shade: #f8f9fa;

  /*========== Fonts and Typography ==========*/
  --font-size-small: 14px;
  --font-size-medium: 12px;
  --font-size-large: 15px;
  --font-size-xlarge: 19px;
  --font-size-xxlarge: 25px;
  --font-size-xxxlarge: 32px;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  --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: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Margenes Bottom ==========*/
  --mb-none: 0;
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /* Margins */

  --margin-small: 0.25rem;
  --margin-medium: 1rem;
  --margin-large: 1.5rem;

  /* Paddings */
  --padding-small: 0.5rem;
  --padding-medium: 1rem;
  --padding-large: 1.5rem;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: var(--background-color) !important;
  color: var(--text-color) !important;
  overflow-x: hidden;
  font-family: var(--body-font);
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
  .container {
    margin-left: var(--mb-none) !important;
    margin-right: var(--mb-none) !important;
  }
}

.card {
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .gradient-background {
    width: 100%;
    height: auto;
  }
}

@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: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

.btn {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
}

p {
  font-size: var(--font-size-medium) !important;
  font-weight: var(--font-weight-regular) !important;
}

h1 {
  font-size: var(--font-size-xxxlarge);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-xxlarge);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--font-size-xlarge);
  font-weight: var(--font-weight-bold);
}

h4 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
}

h5 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
}

h6 {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
}

ul {
  list-style: none;
  padding: 0;
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-regular);
}

li {
  margin-bottom: 0.5em;
}

a {
  color: var(--dark-950);
  text-decoration: none;
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-regular);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--link-hover-color);
}

@media (min-width: 768px) {
  p {
    font-size: var(--font-size-medium);
  }

  h1 {
    font-size: var(--font-size-xxxlarge);
  }

  h2 {
    font-size: var(--font-size-xxlarge);
  }

  h3 {
    font-size: var(--font-size-xlarge);
  }

  h4 {
    font-size: var(--font-size-large);
  }

  h5 {
    font-size: var(--font-size-medium);
  }

  h6 {
    font-size: var(--font-size-small);
  }

  ul {
    font-size: var(--font-size-large);
  }

  a {
    font-size: var(--font-size-large);
  }
}

@media (max-width: 767px) {
  p {
    font-size: var(--font-size-small);
  }

  h1 {
    font-size: var(--font-size-xxlarge);
  }

  h2 {
    font-size: var(--font-size-xlarge);
  }

  h3 {
    font-size: var(--font-size-large);
  }

  h4 {
    font-size: var(--font-size-medium);
  }

  h5 {
    font-size: var(--font-size-small);
  }

  h6 {
    font-size: var(--font-size-small);
  }

  ul {
    font-size: var(--font-size-small);
  }

  a {
    font-size: var(--font-size-small);
  }
}

@media (min-width: 768px) {
  .btn {
    font-size: var(--font-size-large);
  }
}

.card {
  word-wrap: break-word;
}

.text-primary {
  color: var(--primary-500) !important;
}
.text-dark {
  color: var(--dark-950) !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: var(--font-size-small);
  }
}

.footer-basic {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 100;
}
.overlay {
  position: relative;
  box-shadow: 0px -407px 216px -203px rgba(0, 0, 0, 20.95) inset;
  -webkit-box-shadow: 0px -407px 216px -203px rgba(0, 0, 0, 20.95) inset;
  -moz-box-shadow: 0px -407px 216px -203px rgba(0, 0, 0, 20.95) inset;
}
.left-overlay {
  box-shadow: 373px 105px 1113px 224px rgba(0, 0, 0, 1.54) inset;
  -webkit-box-shadow: 373px 105px 1113px 224px rgba(0, 0, 0, 1.54) inset;
  -moz-box-shadow: 373px 105px 1113px 224px rgba(0, 0, 0, 1.54) inset;
}
.image-wrapper {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#hero {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--hero-bg-color);
  position: relative;
  animation: backgroundMotion 10s infinite linear;
}

@keyframes backgroundMotion {
  0% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}

.no-hover-decoration:hover {
  text-decoration: none;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

#hero .content {
  position: absolute;
  z-index: 1000;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

#title {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-size: 22px;
  margin-top: 40px;
}

#subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: bold;
}

#hero-bottom {
  color: var(--text-color);
}

.p-top {
  font-size: 26px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  margin-bottom: 0;
}

.p-bot {
  font-size: 12px;
  font-weight: 100;
}

@media (max-width: 767px) {
    .mySwiper {
        height: 50vh; 
    }
}

.reserve-button:hover,
.reserve-button:focus,
.reserve-button:active {
  background-color: var(--gray-third-shade) !important;
  border: 3px solid var(--body-color) !important;
  box-shadow: none !important;
}

.reserve-button {
  background-color: var(--gray-third-shade);
  border: 2px solid var(--body-color);
  padding: 4px;
  border-radius: 30px;
  color: var(--text-color) !important;
}

.btn.btn-link.btn-block.arrow-button {
  color: var(--text-color);
  font-size: 32px;
}

#hero-bottom .container {
  max-width: 700px;
  text-align: center;
}

.col.with-borders {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  border-bottom: 0;
}

#aero {
  width: 100%;
  height: 100vh;
  background-image: url("../../assets/gear.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#aero .container {
  margin-top: 300px;
}

#aero .h3,
h3 {
  font-family: Montserrat, sans-serif;
}

#interior {
  width: 100%;
  height: 60vh;
}

@media (min-width: 768px) {
  #interior {
    width: 100%;
    height: 100vh;
  }
}

#interior .figure {
  max-width: 90%;
}

@media (min-width: 768px) {
  #interior .figure {
    max-width: 70%;
  }
}

#interior .figure-caption {
  color: var(--text-color);
  margin-top: 15px;
}

#caption-title {
  margin-right: 20px;
  font-size: 20px;
  font-family: Montserrat, sans-serif;
}

#topview {
  width: 100%;
  height: 120vh;
  background-image: url("../../assets/see.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#topview .container {
  margin-bottom: 150px;
}

#topview .h4,
h4 {
  font-family: Montserrat, sans-serif;
}

#topview p {
  font-weight: 100;
}

.clean-block.dark {
  background-color: #222425;
}

.clean-block {
  background-color: #222425;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* cards */

/* Dark theme for the card */
.card.bg-dark {
  background-color: var(--card-bg-dark);
  color: var(--card-text-color);
}

/* Card image styling */
.card-img-top {
  border-radius: 15px 15px 0 0;
}

/* Card body styling */
.card-body {
  padding: 1.5rem;
}

/* Card title styling */
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Card text styling */
.card-text {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s;
}

/* Card shadow effect */
.card.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Card border radius */
.card {
  border-radius: 15px;
}

.photo-gallery {
  margin-top: 30px;
}

.bottom-space {
  margin: 8rem 0;
}

.section {
  padding: 4.5rem 0 2.5rem;
  background-color: var(--dark-50);
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--dark-800);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 100%;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--primary-500);
  color: #fff;
  padding: 1rem 2rem;
  font-weight: var(--font-weight-bold);
  transition: 0.3s;
  border-radius: 0.5rem;
  text-align: center;
}

.button:hover {
  background-color: var(--primary-400);
  color: var(--body-color);
  text-decoration: none;
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

.button--black {
  background-color: var(--dark-950);
  color: var(--body-color);
}

.button--black:hover {
  background-color: var(--dark-950);
  color: var(--body-color);
}

/*=============== OUTLINE BUTTON ===============*/
.button--outline {
  background-color: transparent;
  color: var(--primary-500);
  border: 2px solid var(--primary-500);
}

.button--outline:hover {
  background-color: var(--primary-500);
  color: #fff;
}

/*=============== 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;
  position: relative;
}

.about__img-one {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.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);
}

/*=============== MEDIA QUERIES ===============*/

/* For medium devices */

@media screen and (min-width: 768px) {
  .section {
    padding: 7rem 0 2rem;
  }

  .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);
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .about__img-one {
    width: 40rem;
    height: 30rem;
    object-fit: cover;
    object-position: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 992px) {
  .custom-padding {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
}

/* swiper */

.swiper-container-wrapper {
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: var(--dark-900);
}

swiper-container {
  width: 100%;
  height: 100vh;
}

swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
  color: #fff;
  height: 100%;
  overflow: hidden;
  transition: transform 0.5s ease;
  border-radius: 15px;
  /* Ensure slides have rounded corners */
}

/* Ensure images have rounded corners */
swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
  border-radius: inherit;
  /* Inherit border-radius from slide */
}

/* Overlay should also have rounded corners */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  border-radius: inherit;
  /* Inherit border-radius from slide */
}

swiper-slide:hover img {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 3;
  padding: 50px;
  padding-left: 10rem;
  max-width: 800px;
  text-align: left;
}

.slide-content h2 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  color: #fff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.slide-content p {
  font-size: 18px;
  margin: 20px 0;
  color: #eaeaea;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .slide-content {
    padding: 20px;
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }
  .left-overlay {
    overflow: hidden;
  }
  .position-relative {
    height: auto;
  }
}

/* feature */

.img-container {
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
}

.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.3s ease;
  /* Smooth zoom effect */
}

.img-container img:hover {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

.service-card {
  transition: transform 0.3s ease;
  /* Smooth scaling */
  border: 1px solid transparent;
  /* Border for hover effect */
  border-radius: 10px;
  /* Rounded corners for the service cards */
  padding: 15px;

  /* Padding for better spacing */
  background: #f9f9f9;
  /* Light background for contrast */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
}

.service-card:hover {
  transform: translateY(-5px);
  /* Lift effect on hover */
  border: 1px solid #007bff;
  /* Highlight border on hover */
  background: #ffffff;
  /* Change background on hover for contrast */
}

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Ensures it appears above other elements */
}

.whatsapp-chat img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-chat img:hover {
  transform: scale(1.1);
}
