* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* TOP BAR */
.top-bar {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 3;
}

.contact-btn {
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
}

/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.75)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 20px;
}

/* SINCE */
.since {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* TITLE */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  animation: titleFade 1s ease forwards;
}

.hero-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: underlineReveal 1s ease forwards 0.5s;
}

.hero-content h1:hover::after {
  transform: translateX(-50%) scaleX(1.1);
}

/* TAGLINE */
.tagline {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* LOGOS */
.logos {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}

.logo-card {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.logo-card img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  transition: all 0.4s ease;
}

/* LOGO IMAGE HOVER */
.logo-card:hover img {
  transform: scale(1.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.logo-card:hover {
  transform: translateY(-5px);
}
.logo-card span {
  margin-top: 12px;

  /* CURSIVE LUXURY FONT */
font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  line-height: 1.4;
  color: #f5e6c8; /* soft gold tone */

  opacity: 0;
  transform: translateY(20px);

  animation: textFadeUp 0.8s ease forwards;
  transition: all 0.3s ease;
}
/* STAGGER */
.logo-card:nth-child(1) span {
  animation-delay: 0.4s;
}
.logo-card:nth-child(2) span {
  animation-delay: 0.7s;
}
.logo-card:nth-child(3) span {
  animation-delay: 1s;
}

/* TEXT HOVER */
.logo-card:hover span {
  color: #d4af37;
  transform: translateY(-3px) scale(1.05);
  letter-spacing: 0.5px;
}

/* UNDERLINE FOR EACH HOTEL NAME */
.logo-card span::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #d4af37;
  margin-top: 4px;
  transition: width 0.3s ease;
}

.logo-card:hover span::after {
  width: 100%;
}

/* SEARCH */
.search-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 14px;
}

.search-box select,
.search-box button {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  min-width: 160px;
}

.search-box select {
  background: #fff;
  color: #000;
}

.search-box button {
  background: #d4af37;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.search-box button:hover {
  background: #c19b2e;
}

/* ANIMATIONS */
@keyframes underlineReveal {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes titleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .logos {
    gap: 25px;
  }

  .logo-card {
    width: 140px;
  }

  .search-box {
    flex-direction: column;
    width: 100%;
  }

  .search-box select,
  .search-box button {
    width: 100%;
  }

  .top-bar {
    right: 15px;
    top: 15px;
  }
}