/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'CircularStd', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  /* max-width: 1200px; */
  margin: 0 auto;
  background-color: white;
  width: 100%;
}

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

/* Hero Section Styles */
.hero {
  position: relative;
  height: auto;
  overflow: hidden;
  background-color: #008080; /* Teal background color */
  max-height: 700px;
}

.logo {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  top: 6%;
}

.logo {
  height: 50px !important;
  margin: 0 auto;
  width: 162px !important;
}
.hero {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 1024px) {
  .hero {
    height: 500px;
  }

  .hero {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
  }

  .hero {
    height: 350px;
  }

  .hero-big-text {
    font-size: 48px;
  }

  .hero-small-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 280px;
  }

  .hero {
    height: 280px;
  }

  .hero-big-text {
    font-size: 36px;
  }

  .hero-small-text {
    font-size: 16px;
  }
}


.hero-content {
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  line-height: 1;
}

.hero-big-text {
  font-family: 'parkside', 'CircularStd', cursive;
  font-size: 150px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-small-text {
  font-size: 36px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: 'CircularStd';
  position: relative;
}

/* Section Styles */
.section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.section-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  font-family: 'CircularStd';
  font-style: normal;
}

/* Destinations Grid - CORRECTED to match design exactly */
@media (min-width:501px){

  .destinations-grid {
    display: grid
  ;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
  }}

.destination-card {
  display: flex;
  flex-direction: row; /* Horizontal layout */
  /* background-color: white; */
  overflow: hidden;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  border-radius: 25px; /* No border radius in the design */
}

.destination-image {
  width: 50%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 25px;
}

.destination-info {
  padding: 20px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  text-transform: uppercase;
  line-height: 1;
}

.price-range {
  color: #00b3a7; /* Brighter teal color to match design */
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hotel-name {
  color: #333;
  font-size: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #FA7268; /* Bottom border line */
}
@media (max-width:500px){
/* Benefits Section */
.benefits-section {
  padding: 0px 20px;
  background-color: white;
}}
@media (min-width:501px){

.benefits-section { 
  padding: 20px 20px;
  background-color: white;
}}
@media (max-width:500px){

.destinations-grid {
  display: grid
;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}}

.benefits-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  flex-direction: row; /* Image on left, text on right */
  background-color: white;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

.benefit-image {
  width: 40%;
  height: 307px;
  object-fit: cover;
}
@media (min-width:501px){
.benefit-content {
  padding: 60px;
  width: 60%;
  background-color: #00565d; /* Darker teal background from the design */
  color: white;
  justify-content: center;
  /* align-items: stretch; */
  /* display: flex; */
}}
@media (max-width:500px){
.benefit-content {
  padding: 30px;
  width: 60%;
  background-color: #00565d;
  color: white;
  justify-content: center;
  /* align-items: stretch; */
  /* display: flex
; */
}}

.benefit-title {
  font-size: 26px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.2;
}

.benefit-description {
  color: white;
  line-height: 1.6;
  font-size: 16px;
  font-family: 'CircularStd';
  font-style: normal;
  font-weight: 100;
}

/* Footer */
.footer {
  /* background-color: #f5f5f5; */
  padding: 30px 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer p {
  margin-bottom: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    height: 300px;
  }
  
  .hero-big-text {
    font-size: 48px;
  }
  
  .hero-small-text {
    font-size: 18px;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    flex-direction: column;
  }
  
  .benefit-image {
    width: 100%;
    height: 200px;
  }
  
  .benefit-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 250px;
  }
  
  .hero-big-text {
    font-size: 57px;
  }
  
  .hero-small-text {
    font-size: 15px;
  }
  
  .section-title, .benefits-title {
    font-size: 24px;
  }
  
  .destination-card {
    flex-direction: column;
  }
  
  .destination-image {
    width: 100%;
    height: 95%;
  }
  
  .destination-info {
    width: 100%;
  }
}

/* Font faces from your CSS */
@font-face {
  font-family: 'CircularStd';
  src: url('https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/CircularStd-MediumItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'CircularStd';
  src: url('https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/CircularStd-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'CircularStd';
  src: url('https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/CircularStd-BookItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'CircularStd';
  src: url('https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/CircularStd-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: bold;
}

/* For the Margaritaville script font */
@font-face {
  font-family: 'CircularStd';
  src: url('https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/CircularStd-Book-2.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
/* For the Margaritaville script font */
@font-face {
  font-family: 'margaritaville-script';
  src: url('https://use.typekit.net/mwi3vnu.css');
  font-weight: normal;
  font-style: normal;
}



.mv-logo{
  height: 36px;
}
.offer-container {
  background-color: #EBEBEB;
  border: #EBEBEB;
  border-radius: 4px;
  padding: 20px 30px;
  font-family: 'CircularStd';
  font-style: normal;
}
@media (max-width:500px){
.mv-logo {
  height: 26px;
}}

@media (min-width:1024px){
  .hero-bg {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center 30%;
  }
  }

@media (min-width:1024px){
  .benefit-description {
    color: white;
    line-height: 1.6;
    font-size: 20px;
    font-family: 'CircularStd';
    font-style: normal;
    font-weight: 100;
}
  }