/* ═══════════════════════════════════════════
   SCB — Global Stylesheet
   Dark luxury theme · Teal accents
═══════════════════════════════════════════ */

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

:root {
  --dark:      #0a0d0f;
  --dark2:     #111518;
  --dark3:     #181e22;
  --mid:       #2a3a3a;
  --teal:      #00c9b1;
  --teal-dim:  #007d6f;
  --teal-glow: rgba(0,201,177,0.12);
  --gold:      #c9a84c;
  --text:      #e8ecea;
  --muted:     #7a9090;
  --nav-h:     72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--teal-dim); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10,13,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,201,177,0.1);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1.5px solid var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  transition: border-color 0.3s;
}

.nav-logo:hover .logo-mark { border-color: var(--teal); }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-badge {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal-dim);
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-h); }

/* ── SECTION BASE ── */
.section {
  padding: 90px 80px;
}

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

.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.teal-rule {
  width: 48px; height: 2px;
  background: var(--teal);
  margin-bottom: 32px;
}

.section-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ── CARDS ── */
.card {
  background: var(--dark3);
  border: 1px solid rgba(0,201,177,0.08);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--teal-dim);
  transform: translateY(-3px);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  transition: all 0.3s;
}

.btn-teal {
  background: var(--teal);
  color: var(--dark);
}
.btn-teal:hover { background: #00b39d; }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal-dim);
}
.btn-outline:hover { background: var(--teal-glow); border-color: var(--teal); }

/* ── LOADING SPINNER ── */
.loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 40px 0;
}

.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--dark3);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  border: 1px dashed rgba(0,201,177,0.15);
  border-radius: 8px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(0,201,177,0.1);
  padding: 36px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal); }

.footer-copy {
  font-size: 10px;
  color: rgba(122,144,144,0.4);
  letter-spacing: 1px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.9s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .section { padding: 60px 24px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
/* SCB FAMILY — COMPLETE STYLESHEET */
:root {
  --dark: #0a0d0f;
  --dark2: #111518;
  --dark3: #1a2025;
  --teal: #00c9b1;
  --teal-dim: #008f7e;
  --text: #e8e8e8;
  --text-dim: #888;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--teal-dim); border-radius: 3px; }

/* NAV */
nav.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,13,15,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,201,177,0.08);
}
.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero-top-line {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  z-index: 2;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px 60px;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: calc(var(--nav-h) + 60px);
  display: flex;
}
@media (min-width: 700px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  margin-top: 16px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-right { text-align: left; max-width: 100%; }
@media (min-width: 700px) { .hero-right { text-align: right; max-width: 360px; } }
.hero-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.hero-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--teal);
  font-style: normal;
  text-transform: uppercase;
}

/* CELEBRATIONS STRIP */
.section-celebrations {
  background: var(--dark2);
  padding: 32px 40px;
  border-bottom: 1px solid rgba(0,201,177,0.1);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.month-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.cel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cel-chip, .cel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid rgba(0,201,177,0.15);
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 180px;
}
.cel-icon { font-size: 1.4rem; }
.cel-name { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.cel-sub { font-size: 0.75rem; color: var(--teal); margin-top: 2px; }

/* EVENTS STRIP */
.section-events {
  background: var(--dark);
  padding: 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.section-celebrations h2, .section-events h2, .section-about h2, .section-gallery-preview h2, .section-members-preview h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
}
.events-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.event-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark2);
  border: 1px solid rgba(0,201,177,0.12);
  border-radius: 8px;
  padding: 16px 24px;
  min-width: 220px;
  flex: 1;
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.event-month {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}
.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}
.event-title { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.event-loc { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }

/* ABOUT */
.section-about {
  background: var(--dark2);
  padding: 80px 40px;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.teal-line {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin: 20px 0;
}
.about-desc {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: var(--dark3);
  border: 1px solid rgba(0,201,177,0.1);
  border-radius: 8px;
  padding: 24px;
}
.about-card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.about-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}
.about-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-teal {
  background: var(--teal);
  color: #000;
}
.btn-teal:hover { background: #00e0c5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,177,0.3); }
.btn-outline-sm {
  padding: 8px 18px;
  border: 1px solid rgba(0,201,177,0.4);
  color: var(--teal);
  font-size: 0.68rem;
  background: transparent;
}
.btn-outline-sm:hover { border-color: var(--teal); background: rgba(0,201,177,0.08); }

/* GALLERY PREVIEW */
.section-gallery-preview { padding: 60px 40px; max-width: 1200px; margin: 0 auto; }
.photo-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 20px; }
.photo-preview-grid a { display: block; height: 180px; overflow: hidden; border-radius: 4px; }
.photo-preview-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.photo-preview-grid a:hover img { transform: scale(1.05); }

/* MEMBERS PREVIEW */
.section-members-preview { padding: 60px 40px; max-width: 1200px; margin: 0 auto; border-top: 1px solid #1a2a2a; }
.members-preview-strip { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; padding: 20px 0; }
.member-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: Montserrat,sans-serif; font-weight: 600; font-size: 1.1rem; color: #fff; cursor: pointer; transition: transform .2s,box-shadow .2s; }
.member-avatar:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,201,177,.3); }
.member-avatar-more { background: #1a2a2a !important; border: 2px solid #00c9b1; color: #00c9b1 !important; font-size: 1.3rem; }
.member-avatar-link { text-decoration: none; }

/* FOOTER */
footer, .footer {
  background: var(--dark2);
  border-top: 1px solid rgba(0,201,177,0.1);
  padding: 48px 40px;
  text-align: center;
}
.footer-container { max-width: 800px; margin: 0 auto; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--teal); letter-spacing: 4px; margin-bottom: 8px; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 24px; }
.footer-nav { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
.footer-nav a:hover { color: var(--teal); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }

/* LOADING */
.loading { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 0.85rem; padding: 20px 0; }
.spinner { width: 20px; height: 20px; border: 2px solid rgba(0,201,177,0.2); border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.9s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-container { padding: 0 24px; }
  .nav-links { display: none; }
  .section-celebrations, .section-events, .section-about, .section-gallery-preview, .section-members-preview { padding: 40px 24px; }
  footer, .footer { padding: 32px 24px; }
  .photo-preview-grid { grid-template-columns: repeat(2,1fr); }
}

/* Homepage cel-card flex layout */
.cel-card { display: flex; align-items: center; gap: 14px; background: rgba(0,201,177,.06); border: 1px solid rgba(0,201,177,.15); border-radius: 4px; padding: 16px 20px; min-width: 190px; }
.cel-icon { font-size: 1.4rem; line-height: 1; }
.cel-name { font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 500; color: var(--text); margin: 0 0 3px; }
.cel-date { font-family: 'Montserrat', sans-serif; font-size: .75rem; color: var(--teal); margin: 0; }
