/* BAROQ Gentlemen's Club - Website Styles */
/* Dark, luxurious vibe with baroque gold accents */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --gold-dark: #9e7e2e;
  --text-light: #e8e4dc;
  --text-muted: #9a9590;
  --text-white: #ffffff;
  --accent-red: #8b2030;
  --border-subtle: rgba(201, 168, 76, 0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--text-muted);
}

.top-bar a:hover {
  color: var(--gold);
}

.lang-switch {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-switch a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
}

.lang-switch a.active {
  color: var(--gold);
  font-weight: 700;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--bg-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===== HERO (compact, only homepage) ===== */
.hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 0.8rem;
}

.hero .subtitle,
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
}

/* ===== WEITERLESEN / READ MORE ACCORDION ===== */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
}

.read-more-content p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.read-more-content.open {
  max-height: 3000px;
}

.read-more-toggle {
  display: inline-block;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.read-more-toggle:hover {
  color: var(--gold-light);
}

.read-more-toggle::after {
  content: ' \25BE';
}

.read-more-toggle.open::after {
  content: ' \25B4';
}

/* ===== MODAL / POPUP ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal h3 {
  margin-bottom: 20px;
}

.modal p, .modal li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.modal ul {
  list-style: none;
  margin: 12px 0;
}

.modal ul li::before {
  content: '\2013\00a0';
  color: var(--gold);
}

.modal img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 16px;
}

.modal .btn {
  margin-top: 8px;
  margin-right: 10px;
  margin-bottom: 8px;
}

.modal .small-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.modal .small-link:hover {
  color: var(--gold);
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1eba57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ===== SEPAREE GRID 5 COLS ===== */
.separee-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .separee-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .separee-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* ===== CONTENT SECTIONS (text centered, good spacing) ===== */
.welcome,
.contact-block,
.faq,
.content-section,
.page-section {
  text-align: center;
}

.welcome p,
.contact-block p,
.faq p,
.content-section p,
.page-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.welcome h2,
.contact-block h2,
.faq h2,
.content-section h1,
.content-section h2,
.page-section h1,
.page-section h2 {
  margin-bottom: 1.5rem;
}

/* FAQ items left-align their text for readability */
.faq-item {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item p {
  margin-left: 0;
  margin-right: 0;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.content-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.content-img img {
  width: 100%;
  transition: transform 0.6s ease;
}

.content-img:hover img {
  transform: scale(1.03);
}

/* ===== IMAGE GRID (as section wrapper) ===== */
/* Note: .image-grid is used as a section wrapper on the homepage.
   The actual grid layout is handled by .grid-4 inside it. */

.image-grid .grid-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  aspect-ratio: 3/2;
}

.image-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-grid .grid-item:hover img {
  transform: scale(1.05);
}

/* ===== SEPAREE CARDS ===== */
.separee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.separee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.separee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.1);
}

.separee-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.separee-card .card-body {
  padding: 20px;
}

.separee-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ===== CONTACT / INFO BLOCKS ===== */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
}

.info-box h3 {
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.faq-item h3 {
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.8;
}

footer h4 {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal a {
  color: var(--text-muted);
  margin-left: 20px;
}

/* ===== EVENTS ===== */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 36px;
  margin-bottom: 24px;
}

.event-card h3 {
  margin-bottom: 12px;
}

.event-card .event-meta {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h1 {
  margin-bottom: 2rem;
  font-size: 2.4rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 24px;
  color: var(--text-light);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

/* ===== EVENT FLYER GRID ===== */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.flyer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}

.flyer-card img {
  width: 100%;
}

.flyer-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-subtle);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  color: var(--text-muted);
}

.flyer-placeholder p {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  .modal {
    padding: 28px;
    max-height: 90vh;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
    gap: 0;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid var(--border-subtle);
  }

  nav a {
    display: block;
    padding: 14px 0;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  header {
    position: relative;
  }

  header .container {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 35vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
}

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

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===== GRID LAYOUTS (used in HTML) ===== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.grid-4 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-3 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid-2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Separee grid: 3 columns on desktop, wraps nicely for 6 items */
.separee-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.separee-grid-6 .separee-card {
  text-align: center;
}

.separee-grid-6 .separee-card img {
  height: 180px;
  object-fit: cover;
}

.separee-grid-6 .separee-card h3 {
  font-size: 1.05rem;
  padding: 12px 10px 4px;
}

.separee-grid-6 .separee-card p {
  font-size: 0.85rem;
  padding: 0 10px 8px;
  color: var(--text-muted);
}

.separee-grid-6 .separee-card .btn-small {
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 16px;
  margin-bottom: 14px;
}

/* Contact info grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.contact-info-grid h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-info-grid p {
  font-size: 0.95rem;
}

/* Page sections without hero */
.page-section {
  padding: 60px 0;
}

.page-section:first-of-type {
  padding-top: 50px;
}

.page-section + .page-section {
  border-top: 1px solid var(--border-subtle);
}

/* Content section (used on subpages like separees) */
.content-section {
  padding: 60px 0;
}

.content-section h1 {
  margin-bottom: 1.5rem;
}

/* Separee card large (detail page) */
.separee-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0;
}

.separee-card-large img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.separee-card-large h2 {
  font-size: 1.2rem;
  padding: 16px 16px 4px;
  margin-bottom: 4px;
}

.separee-card-large p {
  font-size: 0.9rem;
  padding: 0 16px 16px;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.separee-card-large a {
  color: inherit;
  text-decoration: none;
}

.separee-card-large a:hover h2 {
  color: var(--gold-light);
}

/* Important note box */
.important-note {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  padding: 30px 36px;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.important-note h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.important-note p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-bottom: 0.8rem;
}

.important-note p:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

/* Image grid variants */
.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.image-grid-3 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.image-grid-1 {
  max-width: 700px;
  margin: 30px auto;
}

.image-grid-1 img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* VIP Page specific */
.vip-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.vip-features {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
}

.vip-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-light);
  font-size: 1rem;
}

.vip-features li::before {
  content: '\2013\00a0';
  color: var(--gold);
}

/* Contact info large (used on VIP page) */
.contact-info-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
  text-align: center;
}

.contact-info-large h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-info-large p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Quote section */
.quote-section {
  max-width: 600px;
  margin: 50px auto 20px;
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quote-section em {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

.quote-section strong {
  color: var(--gold);
}

/* Small button variant */
.btn-small {
  display: inline-block;
  font-size: 0.75rem;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Section spacing for welcome, separees, faq, contact etc */
.welcome,
.separees-preview,
.faq,
.contact-block,
.image-grid {
  padding: 50px 0;
}

/* Separee grid also works for .separee-card-large */
.separee-grid-6 .separee-card-large {
  text-align: center;
}

.separee-grid-6 .separee-card-large img {
  height: 200px;
  object-fit: cover;
}

.separee-grid-6 .separee-card-large h2 {
  font-size: 1.05rem;
  padding: 12px 10px 4px;
}

.separees-preview {
  background: var(--bg-section);
}

.faq {
  border-top: 1px solid var(--border-subtle);
}

.contact-block {
  background: var(--bg-section);
}

.contact-block h2 {
  margin-bottom: 30px;
}

/* Responsive grids */
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .separee-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .separee-grid-6 {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .image-grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-info-large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .image-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-large {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MAP / RESERVATION ===== */
.map-container {
  margin: 30px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.reservation-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* ===== SUITE DETAIL (separees page) ===== */
.suite-detail {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-subtle);
}

.suite-detail:last-child {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.suite-detail h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.suite-detail h2 a {
  color: var(--gold);
}

.suite-detail h2 a:hover {
  color: var(--gold-light);
}

.suite-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.suite-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Single image in suite (VIP Room) */
.suite-images img:only-child {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  height: 320px;
}

.suite-detail p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .suite-images {
    grid-template-columns: 1fr;
  }
  .suite-images img {
    height: 220px;
  }
}

/* ===== DECORATIVE ===== */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 40px; }
