/* ============================================
   THE BIG SOO - SHARED STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&family=Oswald:wght@500;700&display=swap');

:root {
  --red: #CC0000;
  --dark-red: #8B0000;
  --crimson: #7B0000;
  --navy: #1a2a5e;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8B6914;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #e8e8e8;
  --dark-gray: #333333;
  --text-gray: #555555;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 60px;
  width: auto;
  max-width: 280px;
}

.header-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  flex: 1;
  padding: 0 20px;
}

.header-tagline .t-navy { color: var(--navy); }
.header-tagline .t-red { color: var(--red); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--red);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header-inner { height: 70px; }
  .header-tagline { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-top: 2px solid var(--light-gray);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: 8px;
    margin-top: 4px;
  }
  .header-inner { position: relative; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  color: #3a2000;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 80px 20px;
}

.section-sm {
  padding: 50px 20px;
}

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

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #ffffff;
  color: #1a1a2e;
  padding: 50px 20px 30px;
  border-top: 3px solid #cc0000;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #cc0000;
  font-style: italic;
  margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 8px;
}

.footer-links a {
  display: block;
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: #cc0000; }

.footer-contact p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact a {
  color: #cc0000;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 520px) {
  .footer-links-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 40px rgba(201,168,76,0.8); }
}

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

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