.hero {
  background-image: url("images/boat-service-hero-image.png");
   height: 100vh;
}

 

/* Hero Section Styles */
.hero-text h1 {
  color: #fff;
  font-family: Soligant;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 56px */
  -webkit-text-stroke-width: 0px;
  /* -webkit-text-stroke-color: #000; */
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Better alignment of text and button */
  top: 200px;
  position: relative; /* Added to make 'top' work properly */
  width: 100%;
  padding: 0 5%; /* Added horizontal padding */
  box-sizing: border-box; /* Ensures padding is included in width */
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}

.btn-primary {
  padding: 15px 30px; /* Increased horizontal padding */
  border-radius: 50px; /* Assuming it's rounded like in the image */
  background-color: #c84c6e; /* Based des the image color */
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block; /* Better text alignment */
  text-align: center;
  white-space: nowrap; /* Prevents text from wrapping */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.btn-primary:hover {
  background-color: #b53e5f; /* Darker shade for hover state */
  transform: translateY(-2px);
}

/* Large Desktop Screens */
@media screen and (min-width: 1440px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .btn-primary {
    padding: 15px 30px;
    font-size: 18px;
  }
}

/* Desktop Screens */
@media screen and (max-width: 1439px) and (min-width: 1025px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

/* Small Laptop Screens - This is where you had issues */
@media screen and (max-width: 1024px) and (min-width: 992px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

/* Small Laptop Screens - This is where you had issues */
@media screen and (max-width: 1024px) and (min-width: 992px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-content {
    /* top: 200px; Adjusted position */
    flex-wrap: wrap; /* Allow wrapping if needed */
  }

  .hero-buttons {
    /* margin-top: 40px; */
  }

  .btn-primary {
    padding: 14px 24px; /* Slightly reduced padding */
    font-size: 15px;
  }
}

/* Tablet Large Screens */
@media screen and (max-width: 991px) and (min-width: 769px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    top: 150px;
    flex-wrap: wrap;
  }

  .hero-buttons {
    /* margin-top: 30px; */
  }

  .btn-primary {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* Tablet and Mobile Screens */
@media screen and (max-width: 768px) {
.hero {
  height: 75vh;
}

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    flex-direction: column;
    top: 100px;
    align-items: center; /* Center content on mobile */
    text-align: center;
  }

  .hero-buttons {
    /* margin-top: 30px; */
    justify-content: center; /* Center buttons */
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Small Mobile Screens */
@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-content {
    top: 70px;
    /* text-align: left;
    align-items: flex-start; */
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Why Us Section */

.why-us-section {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background: #fdf7f9;
  padding: 35px;
}

.why-us-heading {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  letter-spacing: 2.8px;
  opacity: 0.75;
}

.why-us-logo {
  width: 182px;
  margin: 10px auto 20px;
}

/* .logo img {
  width: 100%;
  height: auto;
} */

.heading {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-us-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 660px;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .why-us-section {
    padding: 15px;
  }

  .heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .description {
    font-size: 14px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 13px;
  }

  .why-us-heading {
    font-size: 12px;
  }
}






/* House-Boats Section */
.houseboat-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 60px 120px;
  display: grid;
  gap: 20px;
}

/* .houseboats {
  margin: 20px 0;
} */

.second {
  background: #fdf7f9;
}

.houseboat-section.fourth {
  margin: 0 auto;
  padding: 60px 80px;
  background-color: #fef7f9;
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 30px; */
  /* align-items: start; */
}
.houseboat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.houseboat-header.fourth {
  /* grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 25px; */
}

.houseboat-title {
  flex: 1;
  min-width: 280px;
  margin-right: 20px;
  padding-bottom: 10px;
}

.houseboat-name {
  color: var(--primary-rose, #bc2649);
  font-family: Soligant;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 56px */
}

.houseboat-type {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.houseboat-ideal {
  font-size: 14px;
  color: #666;
}

.houseboat-features {
  /* flex: 1; */
  min-width: 280px;
}

.houseboat-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}

.houseboat-feature-icon {
  color: #d14d72;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.houseboat-feature-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.houseboat-media-container {
  width: 100%;
}

.houseboat-media-container.fourth {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
}

.houseboat-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  transform: scale(0.98);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.houseboat-video-container:hover {
  transform: scale(1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.houseboat-video-container.fourth {
  padding-bottom: 56.25%;
}

.houseboat-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.houseboat-video:hover {
  transform: scale(1.02);
}

.houseboat-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.5s ease;
}

.houseboat-video iframe:hover {
  transform: scale(1.02);
}

/* Remove old thumbnail and play button styles since we're not using them anymore */
.houseboat-video-thumbnail,
.houseboat-play-button {
  display: none;
}

.houseboat-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 10px;
  perspective: 1000px;
}

.houseboat-gallery.fourth {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 210px;
}

.houseboat-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
}

.houseboat-gallery-item.fourth {
  aspect-ratio: 4/4;
}

.houseboat-gallery-item:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.houseboat-gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.houseboat-gallery-item:hover::after {
  opacity: 1;
}

.houseboat-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.houseboat-gallery-item:hover .houseboat-gallery-img {
  transform: scale(1.1);
}

/* Loading animation for videos */
@keyframes videoLoad {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.houseboat-video-container.loading {
  animation: videoLoad 0.6s ease-out forwards;
}

/* Hover effect for feature cards */
.houseboat-feature {
  transition: transform 0.3s ease;
}

.houseboat-feature:hover {
  transform: translateX(5px);
}

.houseboat-feature-icon {
  transition: transform 0.3s ease;
}

.houseboat-feature:hover .houseboat-feature-icon {
  transform: scale(1.1);
}

/* Responsive animations */
@media (max-width: 768px) {
  .houseboat-video-container {
    transform: none;
  }
  
  .houseboat-video-container:hover {
    transform: none;
  }
  
  .houseboat-gallery-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 1024px) {
  .houseboat-video-container.fourth {
    aspect-ratio: 3/4;
  }

  .houseboat-gallery.fourth {
    margin-top: 145px;
  }
}

@media (max-width: 992px) {
  .houseboat-section {
    padding: 20px 15px;
  }

  .houseboat-section.fourth {
    padding: 40px 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .houseboat-header.fourth {
    grid-column: 1;
    grid-row: 1;
  }

  .houseboat-media-container.fourth {
    grid-column: 1;
    grid-row: 2;
  }

  .houseboat-gallery.fourth {
    grid-column: 1;
    grid-row: 3;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .houseboat-header {
    flex-direction: column;
  }

  .houseboat-section {
    padding: 40px 30px;
  }

  .houseboat-section.fourth {
    padding: 40px 30px;
  }

  .houseboat-title {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .houseboat-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .houseboat-gallery-item {
    aspect-ratio: 6/3;
  }

  .houseboat-gallery.fourth {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .houseboat-video-container {
    padding-bottom: 56.25%;
  }

  .houseboat-video-container.fourth {
    padding-bottom: 56.25%;
  }
}

@media (max-width: 480px) {
  .houseboat-section {
    padding: 20px 15px;
  }

  .houseboat-section.fourth {
    padding: 15px 15px;
  }

  .houseboat-gallery.fourth {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 0;
  }

  .houseboat-gallery-item {
    aspect-ratio: 4/3;
  }

  .houseboat-gallery-item.fourth {
    aspect-ratio: 4 / 3;
}

  .houseboat-name {
    font-size: 28px;
  }

  .houseboat-type {
    font-size: 18px;
  }

  .houseboat-feature-text {
    font-size: 13px;
  }

  .houseboat-video-container {
    padding-bottom: 56.25%;
  }

  .houseboat-video-container.fourth {
    padding-bottom: 56.25%;
  }
}

/* vaneessa features Section */

.vaneessa-features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.vaneessa-features-subtitle {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  letter-spacing: 2.8px;
  margin-bottom: 15px;
  opacity: 0.75;
}

.vaneessa-features-title {
  color: #000;
  text-align: center;

  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 67.2px */
  margin-bottom: 15px;
}

.vaneessa-features-description {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.75;
}

.vaneessa-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.vaneessa-feature-card {
  background-color: #fef0f3;
  border-radius: 16px;
  padding: 35px 30px;
  text-align: left;
  display: grid;
  align-items: flex-start;
  min-height: 140px;
  transition: transform 0.3s ease;
  gap: 7px;
}

.vaneessa-feature-card:hover {
  transform: translateY(-5px);
}

.vaneessa-feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(#bc2649, #e06683);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  box-shadow: 0 4px 8px rgba(209, 77, 114, 0.2);
}

.vaneessa-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.vaneessa-feature-content {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.vaneessa-feature-title {
  color: var(--dark, #04151f);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 28.6px */
  max-width: 320px;
}

@media (max-width: 1024px) {
  .vaneessa-features-section {
    padding: 60px 60px;
  }
}

@media (max-width: 992px) {
  .vaneessa-features-grid {
    max-width: 800px;
    gap: 20px;
  }

  .vaneessa-feature-card {
    padding: 30px 25px;
  }

  .vaneessa-feature-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .vaneessa-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .vaneessa-features-title {
    font-size: 32px;
  }

  .vaneessa-features-description {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 40px;
    text-align: justify;
  }

  .vaneessa-feature-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .vaneessa-features-section {
    padding: 40px 15px;
  }

  .vaneessa-features-title {
    font-size: 28px;
  }

  .vaneessa-feature-card {
    flex-direction: column;
    padding: 15px 20px;
  }

  .vaneessa-feature-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .vaneessa-feature-content {
    width: 100%;
  }

  .vaneessa-feature-title {
    font-size: 16px;
  }
}

.hero-description {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 600px;
  opacity: 0.9;
}

.houseboat-description {
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
  /* max-width: 500px; */
  opacity: 0.85;
}

.vaneessa-features-description {
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  opacity: 0.85;
}

.connect-section .description {
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  opacity: 0.85;
}

/* Responsive styles for descriptions */
@media screen and (max-width: 768px) {
  .hero-description {
    font-size: 1rem;
    margin-top: 15px;
  }

  .houseboat-description {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .vaneessa-features-description,
  .connect-section .description {
    font-size: 1rem;
    margin: 15px auto;
  }
}

@media screen and (max-width: 480px) {
  .hero-description {
    font-size: 0.9rem;
    margin-top: 12px;
  }

  .houseboat-description {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .vaneessa-features-description,
  .connect-section .description {
    font-size: 0.9rem;
    margin: 12px auto;
  }
}


/* Amenities Section */
.resort-amenities {
  padding: 3rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
}

.amenities-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.amenity-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.resort-cta {
  padding: 4rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/houseboat-big-2.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Boat Company Section */
.boat-company-section {
  /* background: #fdf7f9; */
  padding: 40px 0;
  text-align: center;
}

.boat-company-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.boat-company-text {
  text-align: left;
}

.boat-company-text p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.boat-company-text h2 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.boat-company-logo {
  width: 120px;
  height: auto;
}

.boat-company-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive Design for Boat Company Section */
@media (max-width: 768px) {
  .boat-company-section {
    padding: 30px 0;
  }



  
  .boat-company-content {
    /* flex-direction: column; */
    gap: 20px;
    text-align: center;
  }
  
  .boat-company-text {
    text-align: center;
  }
  
  .boat-company-text h2 {
    font-size: 24px;
  }
  
  .boat-company-logo {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .boat-company-section {
    padding: 25px 0;
  }
  
  .boat-company-text h2 {
    font-size: 20px;
  }
  
  .boat-company-logo {
    width: 80px;
  }
}
