/* ==========================================================================
   Design System & CSS Custom Properties
   ========================================================================== */
:root {
  /* Color Palette */
  --color-bg-deep: #0a0f0d;         /* Deep stadium charcoal */
  --color-bg-card: #121915;         /* Rich dark green-grey */
  --color-bg-card-hover: #19221d;   /* Hover highlight */
  --color-wood-dark: #181210;       /* Dark oak pub accents */
  --color-wood-accent: #2c1b18;     /* Warm pub panel color */
  
  --color-green-primary: #006437;   /* Classic Brazilian field green */
  --color-green-light: #00a859;     /* Energetic stadium green */
  --color-green-glow: rgba(0, 168, 89, 0.25);
  
  --color-gold-primary: #d4af37;    /* Trophy gold */
  --color-gold-light: #f3cf65;      /* Warm amber light gold */
  --color-gold-glow: rgba(212, 175, 55, 0.35);
  
  --color-text-main: #f0f5f2;       /* Off-white readable text */
  --color-text-muted: #a3b3ab;      /* Muted green-grey text */
  
  /* Fonts */
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  /* Layout Values */
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius: 12px;
  --transition-speed: 0.3s;
  --transition-bezier: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bg-card);
  border: 2px solid var(--color-bg-deep);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-primary);
}

/* Utility Containers */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ==========================================================================
   Typography Helpers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  font-weight: 300;
}

.highlight-gold {
  color: var(--color-gold-primary);
  text-shadow: 0 0 15px var(--color-gold-glow);
}

.text-green {
  color: var(--color-green-light);
}

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

/* ==========================================================================
   Bilingual Display Engine
   ========================================================================== */
body.lang-en .pt-text {
  display: none !important;
}

body.lang-pt .en-text {
  display: none !important;
}

/* ==========================================================================
   Interactive Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-bezier);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-gold-primary);
  color: var(--color-bg-deep);
  box-shadow: 0 4px 15px var(--color-gold-glow);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background-color: rgba(0, 100, 55, 0.2);
  color: var(--color-text-main);
  border-color: var(--color-green-primary);
}

.btn-secondary:hover {
  background-color: var(--color-green-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--color-green-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-main);
  border-color: rgba(240, 245, 242, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  background-color: rgba(212, 175, 55, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   Header & Sticky Glass Navigation
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: rgba(10, 15, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 100, 55, 0.15);
  transition: all var(--transition-speed) ease;
}

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

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-family: var(--font-header);
}

.logo-gold {
  color: var(--color-gold-primary);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.logo-text {
  color: var(--color-text-main);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  font-weight: 600;
  margin-top: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
  position: relative;
  padding: 6px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold-primary);
  transition: width var(--transition-speed) ease;
}

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

.nav-menu a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 245, 242, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(240, 245, 242, 0.1);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

.lang-btn.active {
  color: var(--color-gold-primary);
}

.lang-btn:hover {
  color: var(--color-text-main);
}

.lang-separator {
  color: rgba(240, 245, 242, 0.2);
  font-size: 0.8rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section Styling (Classic Pub + Stadium Arena Overlay)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  background-image: url('assets/hero_pub_arena.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 13, 0.7) 0%,
    rgba(10, 15, 13, 0.65) 50%,
    rgba(10, 15, 13, 0.95) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  animation: fadeInUp 0.8s var(--transition-bezier) forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 100, 55, 0.35);
  border: 1px solid var(--color-green-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-badge i {
  margin-right: 6px;
  font-size: 0.75rem;
}

/* Pulsing bullet for LIVE matches */
.live-pulse i {
  animation: pulse-red 1.5s infinite;
  color: #ff3b30 !important;
}

@keyframes pulse-red {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Quick Features Strip */
.features-strip {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(24, 18, 16, 0.9) 0%,
    rgba(18, 25, 21, 0.95) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.feature-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Common Section Header Styling
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  animation: fadeIn 1s ease forwards;
}

.section-subtitle {
  font-family: var(--font-header);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-green-light);
  margin: 20px auto;
  border-radius: 2px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   Awesome Global Meals Component
   ========================================================================== */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  background: rgba(240, 245, 242, 0.03);
  border: 1px solid rgba(240, 245, 242, 0.1);
  color: var(--color-text-muted);
  padding: 10px 22px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.filter-btn:hover {
  border-color: var(--color-green-light);
  color: var(--color-text-main);
  background-color: rgba(0, 168, 89, 0.05);
}

.filter-btn.active {
  background-color: var(--color-green-primary);
  border-color: var(--color-green-light);
  color: var(--color-text-main);
  box-shadow: 0 4px 12px var(--color-green-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* Interactive Food Cards */
.menu-card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 100, 55, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) var(--transition-bezier);
  opacity: 1;
}

.menu-card.hidden {
  display: none !important;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-primary);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1),
              0 0 15px rgba(0, 100, 55, 0.1);
}

.menu-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--color-wood-accent) 0%, var(--color-bg-deep) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 100, 55, 0.1);
  overflow: hidden;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-bezier);
}

.menu-card:hover .menu-img {
  transform: scale(1.08);
}

/* Food category background graphics using modern CSS shadows and shapes */
.menu-card-img::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.card-flag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu-card-icon {
  font-size: 3.5rem;
  color: var(--color-gold-primary);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  transition: transform 0.5s ease;
  z-index: 1;
}

.menu-card:hover .menu-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.menu-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 10px;
}

.menu-item-title {
  font-size: 1.25rem;
  font-family: var(--font-header);
  color: var(--color-text-main);
}

.menu-item-price {
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--color-gold-primary);
  font-size: 1.1rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-card-footer {
  border-top: 1px solid rgba(240, 245, 242, 0.05);
  padding-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Match Schedule Layout
   ========================================================================== */
.matches-section {
  background: linear-gradient(
    to bottom,
    var(--color-bg-deep) 0%,
    rgba(18, 25, 21, 0.5) 50%,
    var(--color-bg-deep) 100%
  );
  border-top: 1px solid rgba(0, 100, 55, 0.15);
  border-bottom: 1px solid rgba(0, 100, 55, 0.15);
}

.matches-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.match-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(240, 245, 242, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 24px;
  transition: all var(--transition-speed) ease;
}

.match-card:hover {
  border-color: rgba(0, 168, 89, 0.3);
  background-color: var(--color-bg-card-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.highlighted-match {
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.05);
  position: relative;
}

.highlighted-match::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-gold-primary);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}

.match-status {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(240, 245, 242, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.live-pulse {
  background: rgba(255, 59, 48, 0.12);
  color: #ff3b30;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.team-flag {
  font-size: 2.2rem;
  line-height: 1;
}

.team-name {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.match-vs {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.match-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.match-details i {
  width: 18px;
  color: var(--color-gold-primary);
}

/* ==========================================================================
   Forms & Styling System
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  background-color: rgba(10, 15, 13, 0.6);
  border: 1px solid rgba(240, 245, 242, 0.15);
  color: var(--color-text-main);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  background-color: rgba(18, 25, 21, 0.8);
}

/* User interaction feedback (Baseline properties) */
input:user-invalid,
textarea:user-invalid {
  border-color: #ff3b30;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.15);
}

input:user-valid,
textarea:user-valid {
  border-color: var(--color-green-light);
}

textarea {
  resize: vertical;
}

/* ==========================================================================
   Booking Native Dialog Overlay
   ========================================================================== */
.booking-dialog {
  margin: auto;
  border: none;
  border-radius: var(--border-radius);
  background: var(--color-bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(0, 100, 55, 0.15);
  border: 1px solid rgba(0, 100, 55, 0.3);
  max-width: 600px;
  width: calc(100% - 40px);
  color: var(--color-text-main);
  padding: 40px;
  animation: modalScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  overflow: hidden;
}

/* Native dialog backdrop blur */
.booking-dialog::backdrop {
  background-color: rgba(10, 15, 13, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes modalScaleUp {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dialog-content {
  position: relative;
}

.close-dialog-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
  line-height: 1;
}

.close-dialog-btn:hover {
  color: var(--color-gold-primary);
}

.dialog-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dialog-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Dynamic Success Screen inside Modal */
.hidden {
  display: none !important;
}

.booking-success {
  text-align: center;
  padding: 10px 0;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon {
  font-size: 4rem;
  color: var(--color-green-light);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 168, 89, 0.3));
}

.booking-success p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.receipt-box {
  background: rgba(10, 15, 13, 0.5);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(240, 245, 242, 0.05);
  padding-bottom: 8px;
  font-size: 0.9rem;
}

.receipt-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.receipt-row strong {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Contact Section Layout
   ========================================================================== */
.contact-section {
  background-color: var(--color-bg-deep);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 100, 55, 0.1);
  padding: 24px;
  border-radius: var(--border-radius);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: border-color var(--transition-speed) ease;
}

.info-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 100, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 100, 55, 0.3);
}

.info-details h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.info-details p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-form-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 100, 55, 0.15);
  padding: 40px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

/* Toast Success Message */
.toast-notification {
  background: var(--color-green-primary);
  border: 1px solid var(--color-green-light);
  color: var(--color-text-main);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  margin-top: 20px;
  animation: slideInDown 0.35s ease forwards;
}

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

/* ==========================================================================
   Footer Component Styling
   ========================================================================== */
.main-footer {
  background: linear-gradient(
    to bottom,
    var(--color-bg-deep) 0%,
    var(--color-wood-dark) 100%
  );
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 80px 0 0;
}

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

.footer-about p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 20px 0;
}

.footer-logo {
  align-self: flex-start;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  background: rgba(240, 245, 242, 0.05);
  color: var(--color-text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-speed) ease;
  border: 1px solid rgba(240, 245, 242, 0.1);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--color-gold-primary);
  color: var(--color-bg-deep);
  transform: translateY(-3px);
  border-color: var(--color-gold-primary);
}

.footer-hours h3,
.footer-newsletter h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-gold-primary);
}

.footer-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(240, 245, 242, 0.03);
  padding-bottom: 8px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(240, 245, 242, 0.15);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(10, 15, 13, 0.5);
}

.newsletter-form input {
  border: none;
  background: transparent;
  padding: 12px 16px;
  flex-grow: 1;
}

.newsletter-form button {
  background: var(--color-green-primary);
  border: none;
  color: var(--color-text-main);
  padding: 0 18px;
  cursor: pointer;
  transition: background var(--transition-speed) ease;
}

.newsletter-form button:hover {
  background: var(--color-green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 245, 242, 0.05);
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Responsive Adaptations & Animations
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .main-header {
    border-bottom: 1px solid rgba(0, 100, 55, 0.2);
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(10, 15, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: left var(--transition-speed) ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
  }

  .nav-menu a {
    font-size: 1.25rem;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .header-cta {
    display: none; /* Hide top reservation CTA on mobile to fit language toggle */
  }

  .match-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .match-status {
    align-items: center;
  }

  .match-status .status-badge {
    align-self: center;
  }

  .match-details {
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-newsletter {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Floating Beer Cup Decorations (As clinking cups from reference)
   ========================================================================== */
.floating-beer-decor {
  position: fixed;
  width: 200px;
  height: 200px;
  background-image: url('assets/clinking_beers.png');
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 99;
  opacity: 0.15;
  transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.floating-beer-decor.decor-1 {
  bottom: 8%;
  left: -40px;
  animation: float-slow 12s ease-in-out infinite;
}

.floating-beer-decor.decor-2 {
  top: 15%;
  right: -40px;
  animation: float-mirror 14s ease-in-out infinite;
}

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-mirror {
  0% { transform: translateY(0) rotate(0deg) scaleX(-1); }
  50% { transform: translateY(-25px) rotate(-4deg) scaleX(-1); }
  100% { transform: translateY(0) rotate(0deg) scaleX(-1); }
}

/* Highlight floating beer elements slightly on mouse scroll over their region */
body:hover .floating-beer-decor {
  opacity: 0.22;
}

@media (max-width: 992px) {
  .floating-beer-decor {
    width: 140px;
    height: 140px;
    opacity: 0.1;
  }
  .floating-beer-decor.decor-1 {
    left: -30px;
    bottom: 5%;
  }
  .floating-beer-decor.decor-2 {
    right: -30px;
    top: 25%;
  }
}

@media (max-width: 576px) {
  .floating-beer-decor {
    display: none; /* Hide on mobile screens to preserve screen space */
  }
}
