@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(32, 28, 24, 0.5);
}

.hero-tabs {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}

.hero-tab {
  background-color: #999;
  color: #fff;
  padding: 10px 16px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  color: #0bffff;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: #0bffff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-btn {
  background-color: #016ace;
  color: #fff;
  padding: 20px 32px;
  font-size: 24px;
  border: none;
  border-radius: 17px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 16px;
}

.hero-btn:hover {
  background-color: #014aae;
}

.hero-secondary {
  color: #fffbfb;
  font-size: 24px;
  font-weight: 400;
}

.content-section {
  padding: 48px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.content-grid {
  display: flex;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.content-text p {
  font-size: 18px;
  color: #5a7fa0;
  text-align: left;
}

.content-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 200px;
  flex: 1;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-section {
  background-color: #f2f2f2;
  padding: 48px 32px;
  text-align: left;
  border-top: 1px solid #e1e5ea;
}

.booking-content {
  max-width: 1400px;
  margin: 0 auto;
}

.booking-title {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 24px;
}

.booking-email {
  font-size: 20px;
  color: #634cf8;
  font-weight: 400;
  margin-bottom: 32px;
  text-decoration: none;
  display: block;
}

.booking-email:hover {
  text-decoration: underline;
}

.booking-links {
  display: flex;
  gap: 16px;
  font-size: 16px;
  margin-top: 16px;
  justify-content: center;
}

.booking-links a {
  color: #634cf8;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.booking-links a:hover {
  text-decoration: underline;
  color: #5a3be0;
}
@media (min-width: 768px) {
  .hero {
    height: 100vh;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 24px;
  }
  
  .hero-btn {
    font-size: 24px;
    padding: 20px 32px;
  }
  
  .hero-secondary {
    font-size: 24px;
  }
  
  .content-section {
    padding: 48px 32px;
  }
  
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  
  .content-text p {
    text-align: center;
    font-size: 18px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .booking-section {
    padding: 48px 32px;
  }
  
  .booking-title {
    font-size: 28px;
  }
  
  .booking-email {
    font-size: 20px;
  }
  
  .booking-links {
    gap: 24px;
    font-size: 20px;
  }
}


@media (min-width: 0px) and (max-width: 500px) {
  .hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(32, 28, 24, 0.5);
    opacity: 80%;
  }

  .hero-tabs {
    position: absolute;
    top: 20px;
    left: 40%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 400px;
  }

  .hero-tab {
    background-color: #999;
    color: #fff;
    padding: 1px 2px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 100;
    text-align: center;
    flex: 1 1 auto;
    min-width: 30px;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 100%;
    padding: 16px;
    margin-top: 20px;
  }

  .hero-title {
    color: #0bffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 20px;
  }

  .hero-subtitle {
    color: #0bffff;
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .hero-btn {
    background-color: #016ace;
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 8px;
    width: 100%;
    max-width: 280px;
  }

  .hero-btn:hover {
    background-color: #014aae;
  }

  .hero-secondary {
    color: #fffbfb;
    font-size: 14px;
    font-weight: 400;
  }
  

  .content-section {
    padding: 24px 16px;
    max-width: 100%;
    margin: 0 auto;
  }

  .content-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .content-text {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .content-text p {
    font-size: 12px;
    color: #5a7fa0;
    text-align: left;
    margin: 0;
    padding: 0;
  }

  .gallery-grid {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .content-img {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0;
  }

  .booking-section {
    background-color: #f2f2f2;
    padding: 24px 16px;
    text-align: left;
    border-top: 1px solid #e1e5ea;
  }

  .booking-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .booking-title {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
  }

  .booking-email {
    font-size: 16px;
    color: #634cf8;
    font-weight: 400;
    margin-bottom: 16px;
    text-decoration: none;
    display: block;
  }

  .booking-email:hover {
    text-decoration: underline;
  }

  .booking-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    gap: 16px;
    font-size: 14px;
  }

  .booking-links a {
    color: #634cf8;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
  }

  .booking-links a:hover {
    text-decoration: underline;
    color: #5a3be0;
  }
}