:root{
  --bg:#0b0a09;
  --gold:#d4af37;
  --text:#e8dcc6;
  --muted:#b9a98f;

  --font-head:'Playfair Display',serif;
  --font-body:'Inter',sans-serif;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
}

/* ================= GLOBAL CONTAINER ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ================= FLOATING NAV ================= */
.floating-nav{
  position:fixed;
  top:24px;
  right:80px;
  z-index:1200;
}

.nav-links{
  display:flex;
  gap:26px;
  padding:12px 22px;
  background:rgba(11,10,9,.55);
  backdrop-filter:blur(16px);
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}

.nav-links a:hover{ color:var(--gold); }

.nav-contact{
  padding:6px 14px;
  border:1px solid var(--gold);
  border-radius:20px;
  color:var(--gold);
  margin-right:18px;
}

/* ================= LOGO (LEFT – SAFE) ================= */
.brand-logo{
  position: fixed;
  top: 32px;
  left: 80px;
  z-index: 4000;
}

.brand-logo img{
  height: 150px;
  width: auto;
  display: block;
  pointer-events: auto;
}

/* ================= ABOUT HERO ================= */
.about-hero {
  position: relative;
  min-height: 70vh;
  padding: 160px 0 120px;
  background:
    radial-gradient(circle at top center, rgba(255, 102, 0, 0.22), transparent 60%),
    linear-gradient(to bottom, #2a1a12 0%, #160f0c 70%, #0b0a09 100%);
  overflow: hidden;
}

.about-hero-overlay { display: none; }

.about-hero-content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89b6a;
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: #e4d1b0;
  margin-bottom: 28px;
}

.about-hero p {
  font-size: 16px;
  line-height: 1.9;
  color: #c8b6a2;
  max-width: 720px;
  margin: 0 auto;
}

.about-hero-divider {
  width: 160px;
  height: 1px;
  margin: 54px auto 0;
  background: linear-gradient(to right, transparent, rgba(184,155,106,0.6), transparent);
}

/* ================= FIX HERO → CONFERENCE GAP ================= */
.about-hero { min-height: unset; }
.about-hero { padding-bottom: 60px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .about-hero { padding: 120px 0 100px; }
  .about-hero h1 { font-size: 40px; }
}

@media (max-width: 600px) {
  .about-hero h1 { font-size: 34px; }
  .about-hero p { font-size: 15px; }
}

/* ================= CONTACT PAGE ================= */
.contact-page-main {
  padding: 120px 0;
  background: linear-gradient(to bottom, #0b0a09 0%, #120c08 55%, #0b0a09 100%);
}

/* LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}

/* ================= LEFT INFO ================= */
.contact-info h2 {
  font-family: var(--font-head);
  color: var(--gold);
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--text);
  line-height: 1.8;
}

.contact-info-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.contact-info-list li {
  margin-bottom: 12px;
  color: var(--muted);
}

/* ================= FORM CARD ================= */
.contact-form-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 24px;
  padding: 42px;
  overflow: visible; /* needed for dropdown */
}

.contact-form-card h3 {
  font-family: var(--font-head);
  color: var(--gold);
  margin-bottom: 26px;
}

/* FORM ELEMENTS */
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row label {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-control {
  background: rgba(11,10,9,0.8);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ================= BUTTON ================= */
.contact-form-card .btn-primary {
  margin-top: 12px;
  background: linear-gradient(135deg, #e6c67a, #c9a23a, #b8922e);
  border: none;
  color: #0b0a09;
  font-weight: 500;
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212,175,55,0.35);
}

/* ================= LOCATIONS SECTION ================= */

.locations-section{
  padding: 110px 0;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 55%,
    #0b0a09 100%
  );
}

/* ================= SECTION HEADER ================= */

.section-header.center-header{
  text-align: center;
}

.section-header.center-header h2{
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: .2px;
}

.section-header.center-header p{
  color: var(--muted) !important;
  line-height: 1.8;
}

.section-header .section-accent{
  background: linear-gradient(
    90deg,
    rgba(212,175,55,0),
    rgba(212,175,55,0.75),
    rgba(212,175,55,0)
  ) !important;
  height: 2px !important;
  width: 260px !important;
  border-radius: 999px !important;
  margin: 16px auto 0;
}

/* ================= LOCATIONS GRID ================= */

.locations-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* FIX: force single row */
  gap: 36px;
  justify-content: center;
  max-width: 1200px; /* FIX: allow 3 cards */
  margin: 0 auto;
}

/* ================= LOCATION CARD ================= */

.location-card{
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 22px;
  padding: 26px;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.location-card:hover{
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.location-card h3{
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.location-card p{
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.location-card a{
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.20);
}

.location-card iframe{
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.05) brightness(0.95);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1100px){
  .locations-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card{
    padding: 22px;
  }
}

/* Mobile */
@media (max-width: 680px){
  .locations-grid{
    grid-template-columns: 1fr;
  }
}

/* ================= Footer================= */

.site-footer {
  padding: 40px 20px;
  background: #0b0a09; /* same as site background */
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-flex {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  text-align: center;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
  line-height: 1.6;
}

.site-footer strong {
  color: #ffffff;
  font-weight: 500;
}
