.brand-title {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    /* Goldish title */
}




.hero-section {
    min-height: 100vh;
    background-size: cover !important;
}

.highlight-text {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.hostess-img,
.room-img {
    /* width: 100%;
            border-radius: 10px;
            border: 1px solid #444; */

    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #444;
}

.hostess-grid,
.rooms-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hostess-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.hostess-img:hover,
.room-img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}


.highlight-text {
    color: #d4af37 !important;
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('{{ asset("images/ez_bg.jpeg") }}') no-repeat center 25% / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
}

.hero p {
    font-size: 1.25rem;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Buttons */
.hero .btn {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* Section Styling */
section {
    padding: 5rem 1rem;
    text-align: center;
    background-color: #0b0b0b;
}

.section-dark {
    background-color: #111;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    color: #ddd;
}

.content p {
    font-size: 1.25rem;
    /* matches Poseidon’s .lead size */
    line-height: 1.9;
}

/* Lounge Cards */
.lounges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.lounge-card {
    background-color: #1a1a1a;
    width: 300px;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.lounge-card:hover {
    transform: scale(1.03);
}

.lounge-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lounge-card h4 {
    margin-top: 1rem;
    color: #e6d8a9;
    font-size: 1.25rem;
}

.lounge-card p {
    color: #ccc;
    padding-bottom: 1rem;
    font-style: italic;
    font-size: 1rem;
}

/* === Typography & Brand === */
/* .brand-title,
h1,
h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  letter-spacing: 1px;
} */


/* === Booking Container === */
.booking-container {
  width: 100%;
  max-width: 550px;
  padding: 3rem 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid #d4af37;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* === Paragraphs === */
.booking-container p {
  color: #e0d5a8;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === Form Elements === */
.form-control,
.form-select {
  background-color: transparent;
  border: 1px solid #d4af37;
  border-radius: 0;
  color: #bfae7e;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
  color: #bfae7e;
}

.form-select option {
  background-color: #000;
  color: #d4af37;
}

.form-control:focus,
.form-select:focus {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #e6d8a9;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
  outline: none;
}

.eliminate-physical-space {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}


/* === Submit Button === */
.btn-submit {
  display: block;
  width: 100%;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  padding: 0.85rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.03);
}

/* === Notes & Links === */
.note {
  color: #bfae7e;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.5;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}


/* === Footer === */
/* footer {
  margin-top: 2rem;
  color: #777;
  font-size: 0.85rem;
  text-align: center;
} */

/* === Responsive Enhancements === */
@media (max-width: 576px) {
  .booking-container {
    padding: 2rem 1.25rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
}
