@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Geist+Mono:wght@100..900&family=Marcellus&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root{
  --primary: #8B5A2B;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background: #8B5A2B;
  border-radius: 2px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

    /* ===== Hero Section ===== */
    .beverage-hero {
      height: 103vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: -80px;
    }
    
    .beverage-parallax {
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                  url('../images/booking_hero.webp');
      background-size: cover;
      background-position: center;
      will-change: transform;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 6rem);
      font-weight: 400;
      color: #fff;
      letter-spacing: 5px;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .hero-line {
      width: 150px;
      height: 2px;
      background: var(--primary);
      margin: 0 auto;
      position: relative;
    }
    
    .hero-line::before, 
    .hero-line::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary);
      top: 50%;
      transform: translateY(-50%);
    }
    
    .hero-line::before { left: -5px; }
    .hero-line::after { right: -5px; }

.hotels-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.hotel-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  animation: slideInUp 0.8s ease-out;
}

.hotel-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hotel-image {
  width: 100%;
  height: 280px !important;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-image {
  transform: scale(1.1);
}

.hotel-info {
  padding: 30px;
}

.hotel-name {
  font-size: 2rem !important;
  font-weight: 500 !important;
  margin-bottom: 15px;
  color: #2c3e50;
  position: relative;
  font-family: "Playfair Display", serif !important;
}

.hotel-name1::after {
  background: #264787;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.hotel-name2::after {
  background: #026008;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.hotel-card:hover .hotel-name::after {
  width: 100px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}

.info-icon {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #667eea;
  min-width: 20px;
}

.reserve-btn {
  display: inline-block;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.reserve-btn1 {
  background: #244a88;
}

.reserve-btn2 {
  background: #026008;
}

.reserve-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.reserve-btn:hover::before {
  left: 100%;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.reserve-btn:active {
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hotels-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px;
  }

  .hotel-info {
    padding: 20px;
  }
}
