/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (Mounds View Fencing Club)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* HSL Tailored Color Palette */
  --bg-darker: hsl(220, 25%, 7%);
  --bg-dark: hsl(220, 20%, 11%);
  --bg-card: hsla(220, 20%, 15%, 0.6);
  --bg-card-hover: hsla(220, 20%, 18%, 0.85);
  
  --primary-gold: hsl(45, 85%, 55%);
  --primary-gold-hover: hsl(45, 95%, 45%);
  --primary-gold-glow: hsla(45, 85%, 55%, 0.25);
  
  --accent-blue: hsl(195, 90%, 55%);
  --accent-blue-glow: hsla(195, 90%, 55%, 0.25);
  
  --text-primary: hsl(210, 20%, 98%);
  --text-secondary: hsl(210, 10%, 75%);
  --text-muted: hsl(210, 10%, 50%);
  
  --border-glass: hsla(210, 20%, 25%, 0.4);
  --border-gold-glass: hsla(45, 85%, 55%, 0.3);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 16px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 24px -4px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px var(--primary-gold-glow);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darker);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-darker);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: hsla(220, 25%, 7%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

header.scrolled {
  background: hsl(220, 25%, 7%);
  border-bottom-color: var(--border-gold-glass);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-normal);
}

header.scrolled .nav-wrapper {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary-gold);
  filter: drop-shadow(0 0 4px var(--primary-gold-glow));
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--primary-gold);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  position: relative;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

nav a:hover, nav a.active {
  color: var(--text-primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

nav a:hover::after, nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================================================
   SPA ROUTING PAGES (TABS)
   ========================================================================== */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 200px); /* Adjust based on footer */
}

.page {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--transition-slow) ease, transform var(--transition-slow) cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 4rem 0;
}

.page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HERO / BANNER SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsla(220, 25%, 7%, 0.95) 40%, hsla(220, 25%, 7%, 0.3) 100%),
              url('fencing_banner.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(45, 85%, 55%, 0.15);
  border: 1px solid var(--border-gold-glass);
  color: var(--primary-gold);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(45, 85%, 55%, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 184, 56, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(229, 184, 56, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 184, 56, 0); }
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--primary-gold);
  background: linear-gradient(to right, var(--primary-gold), hsl(50, 100%, 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Schedule Card (Glassmorphic) */
.schedule-card {
  background: hsla(220, 20%, 12%, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold-glass);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.schedule-icon {
  background: var(--primary-gold);
  color: var(--bg-darker);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(229, 184, 56, 0.5);
}

.schedule-details h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.schedule-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--bg-darker);
  box-shadow: 0 4px 14px rgba(229, 184, 56, 0.4);
}

.btn-primary:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 184, 56, 0.6);
  color: var(--bg-darker);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: hsla(210, 20%, 30%, 0.2);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

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

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
}

/* ==========================================================================
   CARDS & GRID
   ========================================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-normal);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold-glass);
}

.card:hover::before {
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-blue));
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.card-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   PAGE: HOME - SPECIFIC STYLES
   ========================================================================== */
.home-info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.home-info-content h3 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.home-info-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.home-info-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.home-info-visual svg {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  fill: var(--primary-gold);
}

.home-info-visual h4 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.home-info-visual .sub {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   PAGE: RULES - SPECIFIC STYLES
   ========================================================================== */
.rules-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.rules-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.rules-tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.rules-tab-btn.active {
  background: var(--primary-gold);
  color: var(--bg-darker);
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px rgba(229, 184, 56, 0.3);
}

.rules-content-tab {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.rules-content-tab.active {
  display: block;
}

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

.weapons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .weapons-grid {
    grid-template-columns: 1fr;
  }
}

.weapon-card {
  height: 100%;
}

.weapon-specs {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.weapon-spec-item {
  display: flex;
  justify-content: space-between;
}

.weapon-spec-label {
  color: var(--text-muted);
}

.weapon-spec-value {
  font-weight: 600;
  color: var(--text-primary);
}

/* Piste design layout */
.piste-graphic {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-dark));
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.piste-strip {
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, #444, #888 15%, #888 35%, #e5b838 48%, #e5b838 52%, #888 65%, #888 85%, #444);
  border-radius: 4px;
  margin: 2rem 0;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.piste-mark {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: white;
  opacity: 0.7;
}

.piste-mark.center { left: 50%; width: 4px; background: #e5b838; }
.piste-mark.on-guard-l { left: 35%; }
.piste-mark.on-guard-r { right: 35%; }
.piste-mark.limit-l { left: 5%; width: 3px; background: #ea4335; }
.piste-mark.limit-r { right: 5%; width: 3px; background: #ea4335; }

.piste-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0 0.5rem;
}

/* ==========================================================================
   PAGE: TOURNAMENTS - SPECIFIC STYLES
   ========================================================================== */
.tournaments-filter-bar {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .tournaments-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.filter-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  background-color: #34a853;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.4);
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 168, 83, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 168, 83, 0); }
}

.refresh-button {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.refresh-button:hover {
  border-color: var(--primary-gold);
  background: rgba(229, 184, 56, 0.05);
}

.refresh-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-normal);
}

.refresh-button.spinning svg {
  animation: spin 1s linear infinite;
}

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

/* Tournament Card Styling */
.tournament-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tournament-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold-glass);
}

@media (max-width: 900px) {
  .tournament-card {
    flex-direction: column;
  }
}

.tournament-date-badge {
  background: linear-gradient(135deg, hsl(220, 20%, 15%), hsl(220, 20%, 10%));
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 180px;
  flex-shrink: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .tournament-date-badge {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    padding: 1.25rem 2rem;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }
}

.t-date-month {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.t-date-days {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0.25rem 0;
}

.tournament-details-block {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.t-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .t-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

.t-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.t-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.t-location-icon {
  width: 16px;
  height: 16px;
  fill: var(--accent-blue);
  flex-shrink: 0;
}

/* Events lists styles */
.t-events {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.t-events-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.t-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.t-event-tag {
  background: hsla(220, 20%, 20%, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Loading skeletons */
.skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skeleton-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  height: 220px;
}

@media (max-width: 900px) {
  .skeleton-card {
    flex-direction: column;
    height: auto;
  }
}

.skeleton-pulse {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.1) 37%,
    rgba(255, 255, 255, 0.05) 63%
  );
  background-size: 400% 100%;
  animation: skeleton-glow 1.4s ease infinite;
}

@keyframes skeleton-glow {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.skeleton-date {
  width: 180px;
  height: 100%;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .skeleton-date {
    width: 100%;
    height: 60px;
  }
}

.skeleton-details {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.skeleton-text-lg {
  height: 24px;
  width: 60%;
  border-radius: 4px;
}

.skeleton-text-md {
  height: 18px;
  width: 40%;
  border-radius: 4px;
}

.skeleton-box {
  height: 50px;
  width: 100%;
  border-radius: 8px;
}

.tournaments-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.empty-state-icon {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.empty-state-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-state-desc {
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0 auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: hsl(220, 25%, 5%);
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
  margin-top: 6rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-about h4, .footer-links h4, .footer-contact h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.2px;
}

.footer-about p {
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-gold);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
