* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Libertinus Sans", sans-serif;
  background: #000;
  color: #333;
  overflow-x: hidden;
}

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: transparent;
  width: auto;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("images/front-house.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-placeholder {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    linear-gradient(135deg, #2c3e50, #34495e);
  background-size: cover;
  background-position: center;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5a5f, #ff385c);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 58, 92, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 58, 92, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  text-align: center;
}

.scroll-arrow {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Gallery Section */
.gallery-section {
  background: #2c2c2c;
  padding: 5rem 0;
  height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Image Carousel - Pure Image Focus */
.carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.carousel-main {
  flex: 1;
  max-width: 600px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.carousel {
  display: flex;
  width: 600%; /* 6 images x 100% each */
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  width: 16.666%; /* 100% / 6 images */
  height: 100%;
  flex-shrink: 0;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

/* Text content alongside carousel */
.carousel-text-content {
  flex: 1;
  max-width: 350px;
  padding: 2.5rem 2rem 1rem 2rem;
  text-align: left;
  margin: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.carousel-text-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.carousel-text-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Booking Button */
.booking-button-container {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-btn {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* Progress Bar */
.progress-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0;
}

.progress-bar {
  width: 60px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #ff5a5f;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}

.progress-ring {
  width: 24px;
  height: 24px;
  position: relative;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 3;
}

.progress-ring-progress {
  fill: none;
  stroke: #ff5a5f;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* Carousel indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff5a5f;
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 250px;
    text-align: center;
  }

  .carousel-container {
    height: 300px;
    margin: 0 1rem;
  }

  .carousel-text-content {
    padding: 1.5rem;
    margin: 0 1rem 2rem 1rem;
  }

  .carousel-text-title {
    font-size: 1.3rem;
  }

  .carousel-text-description {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  .progress-ring {
    width: 35px;
    height: 35px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Image placeholder for loading errors */
.image-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #999;
  font-weight: 500;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive design for carousel layout */
@media (max-width: 768px) {
  .carousel-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-main {
    max-width: 100%;
  }

  .carousel-text-content {
    max-width: 100%;
    text-align: center;
    padding: 1rem;
  }
}

/* Reviews Section */
.reviews-section {
  background: #1a1a1a;
  padding: 5rem 0;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  font-weight: 400;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #2c2c2c;
  padding: 1.2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.review-stars {
  font-size: 1rem;
  color: #ff5a5f;
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #e0e0e0;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.reviewer-info {
  border-top: 1px solid #444;
  padding-top: 0.6rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.1rem;
}

.reviewer-location {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .booking-button-container {
    flex-direction: column;
    align-items: center;
  }
  
  .booking-btn {
    width: 100%;
    max-width: 300px;
  }
}
