/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
font-family: 'Montserrat', sans-serif;
height: 100%;
}

/* ----------------------------------  HERO SECTI0N------------------------------------------------------------------------ */

/* ================= HERO VIDEO SECTION ================= */

.hero-video {
  margin-top: 90px;
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 50px;
}

/* Background Video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Text Content */
.hero-text {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: #d4af37;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button */
.hero-text .btn-book {
  display: inline-block;
  background-color: #fcd977;
  color: #4b0082;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(252, 217, 119, 0.4);
}

.hero-text .btn-book:hover {
  background-color: #f6e3b4;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(252, 217, 119, 0.6);
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero-video {
    height: 420px;
    padding: 0 30px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-video {
    height: 340px;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-text .btn-book {
    padding: 0.7rem 1.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-video {
    height: 280px;
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }
}


/* ----------------------------------  ABOUT-US-SECTION------------------------------------------------------------------------ */

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 5rem 1rem;
  background-color: #fff8f0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* TEXT */
.about-text {
  flex: 1 1 520px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #4b0082;
  margin-bottom: 1.2rem;
}

.about-text h2 span {
  color: #d4af37;
}

.about-text p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 0.8rem;
  line-height: 1.7;
  text-align: justify;
}

/* IMAGE */
.about-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(246, 227, 180, 0.3);
}

/* BUTTON */
.about-text .btn-book {
  display: inline-block;
  margin-top: 1.2rem;
  background-color: #fcd977;
  color: #4b0082;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(252, 217, 119, 0.4);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .about-image img {
    height: 360px;  /* moderate image height for tablets */
  }
}
.about-text {
  flex: 1 1 300px;
}

/* Mobile ONLY */
@media (max-width: 768px) {

  .about-section {
    padding: 50px 20px; /* less top/bottom padding for mobile */
    background-color: #fff8f0;
  }

  .about-container {
    flex-direction: column-reverse; /* IMAGE UP, TEXT DOWN */
    text-align: center;
    gap: 1rem; /* reduced gap for cleaner spacing */
  }

  .about-image {
    margin-bottom: 0; /* no extra bottom space */
  }

  .about-image img {
    max-width: 90%;
    height: 300px; /* fixed for mobile */
  }

  .about-text {
    margin-top: 0; /* remove unnecessary top space */
  }

  .about-text p {
    text-align: center;
    margin-top: 0.4rem; /* minimal spacing */
    line-height: 1.6;
  }

  .about-text .btn-book {
    margin-top: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .about-section {
    padding: 30px 15px; /* smaller padding for tiny screens */
  }

  .about-image img {
    height: 260px; /* small mobile image height */
    width: 600px;
  }

  .about-text h2 {
    font-size: 1.8rem; /* smaller heading */
  }

  .about-text p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .about-text .btn-book {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
}


/* ----------------------------------  SERVICE SECTI0N------------------------------------------------------------------------ */
/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 3.5rem 0; /* 🔥 TOP & BOTTOM SPACE REDUCED */
  background-color: #faf8fd;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */

.services-header {
  text-align: center;
  margin-bottom: 2.5rem; /* reduced */
}

.services-header h2 {
  font-size: 2.6rem;
  color: #4b0082;
  margin-bottom: 0.3rem; /* reduced */
}

.services-header h2 span {
  color: #d4af37;
}

.services-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.3rem; /* reduced */
}

/* ================= GRID ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* ================= CARD ================= */

.service-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid #f6e3b4;
  box-shadow: 0 12px 30px rgba(246, 227, 180, 0.25);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(246, 227, 180, 0.4);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* CONTENT */
.service-card h3 {
  color: #4b0082;
  font-size: 1.5rem;
  margin: 1.1rem 0 0.4rem;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  padding: 0 1.4rem;
  margin-bottom: 1.3rem;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  margin-bottom: 1.6rem;
  padding: 0.6rem 1.6rem;
  background-color: #fcd977;
  color: #4b0082;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #f6e3b4;
  box-shadow: 0 6px 18px rgba(252, 217, 119, 0.5);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .services-header h2 {
    font-size: 2.3rem;
  }

  .services-grid {
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 20px 15px; /* 🔥 less top space on mobile */
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .service-card img {
    height: 500px; /* 🔥 FIXED (500px was too big) */
  }
  portfolio-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
}

/* Small Mobile */
@media (max-width: 480px) {
  .services-header h2 {
    font-size: 1.7rem;
  }

  .service-card img {
    height: 500px;
  }

  .service-card p {
    font-size: 0.95rem;
  }
}

/* ----------------------------------  PORTFOLIO SECTI0N------------------------------------------------------------------------ */


.section-title {
  color: #4b0082;
  text-align: center;
  font-size: 36px;
}

.golden {
  color: #d4af37;
}

.section-subtitle {
  text-align: center;
  margin: 10px 0 30px;
  color: #666;
}

.container-gallery {
  width: 100%;
}

.portfolio {
  padding: 60px 40px;
  background: #faf7fb;
}

/* ================= FILTER BUTTONS ================= */

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  background: #3c2144;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 15px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #eed4f7;
  color: #000;
}

/* ================= BUTTON ================= */

.btn {
  display: inline-block;
  padding: 14px 38px;
  background-color: #fcd977;
  color: #4b0082;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 1.5px solid #f6e3b4;
  box-shadow: 0 8px 25px rgba(246, 227, 180, 0.35);
  transition: all 0.35s ease;
}

.btn:hover {
  background: #f6e3b4;
  box-shadow: 0 6px 18px rgba(252, 217, 119, 0.5);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ================= GRID ================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* ================= PORTFOLIO ITEM ================= */

.portfolio-item {
  border: 2px solid #d4af37;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  height: 300px;
  background: #fff;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

/* Hover Effects (Desktop) */
.portfolio-item:hover {
  box-shadow: 0 0 15px 4px #d4af37;
  transform: scale(1.05);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* Large Tablets / Small Laptops */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .portfolio-item {
    height: 260px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .portfolio-item {
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .portfolio-filters {
    gap: 10px;
    margin-bottom: 25px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .portfolio-item {
    height: 220px;
  }

  /* Disable zoom on mobile */
  .portfolio-item:hover {
    transform: none;
    box-shadow: 0 0 8px 2px #d4af37;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-title {
    font-size: 35px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    height: 400px;
  }

  .btn {
    padding: 12px 26px;
    font-size: 0.9rem;
  }
}

/* <---------------------------------------------testiomnial SECTION--------------------------> */

.testimonials-section {
  padding: 80px 8%;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #3c2144;
  margin-bottom: 50px;
}

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slide 20s linear infinite;
}

.testimonial-card {
  background: #3c2144;
  border-radius: 20px;
  padding: 30px 20px;
  min-width: 300px;
  max-width: 300px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #d4af37;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #f9f9f9;
  line-height: 1.5;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Auto Slide Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: 250px;
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .testimonial-card {
    min-width: 220px;
    max-width: 220px;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .testimonials-track {
    gap: 20px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 180px;
    padding: 15px 10px;
  }
  .testimonial-card h3 {
    font-size: 1rem;
  }
  .testimonial-card p {
    font-size: 0.85rem;
  }
}

/* -------------------------------- BLOG SECTION -------------------------------- */

.blog {
  padding: 60px 20px;
  background-color: #fdf6f6;
}

/* Title */
.section-blog-title {
  color: #4b0082;
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

/* Container */
.container-blog {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= GRID ================= */
/* Modern responsive grid (better than flex widths) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ================= CARD ================= */
.blog-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ================= IMAGE ================= */
/* 🔥 FIXED PROBLEM HERE */
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;   /* responsive height */
  object-fit: contain;
  display: block;
}

/* ================= CONTENT ================= */
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-title {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ================= BUTTON ================= */
.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
  background-color: #fcd977;
  color: #4b0082;
  padding: 0.7rem 1.8rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.blog-card .btn:hover {
  background-color: #f6e3b4;
  transform: translateY(-2px);
}

/* -------------------------------- RESPONSIVE -------------------------------- */

/* Tablet */
@media (max-width: 992px) {
  .section-blog-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .section-blog-title {
    font-size: 26px;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }

  .blog-card .btn {
    align-self: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .section-blog-title {
    font-size: 22px;
  }

  .blog-content {
    padding: 15px;
  }
}
