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

:root {
  /* McDonald's Brand Colors */
  --mcd-red: #DA291C;
  --mcd-yellow: #FFC72C;
  --mcd-dark-red: #C4161C;
  --mcd-light-yellow: #FFD700;
  --mcd-dark-gray: #2D2D2D;
  --mcd-light-gray: #F5F5F5;
  --mcd-medium-gray: #D3D3D3;
  --mcd-white: #FFFFFF;
  
  /* Modern Design Variables */
  --border-radius: 14px;
  --border-radius-large: 24px;
  --shadow-small: 0 1px 4px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0,0,0,0.04);
  --shadow-medium: 0 4px 14px rgba(0,0,0,0.08), 0 10px 25px rgba(0,0,0,0.06);
  --shadow-large: 0 8px 24px rgba(0,0,0,0.08), 0 20px 40px rgba(0,0,0,0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--mcd-light-gray);
  color: var(--mcd-dark-gray);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--mcd-dark-gray);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #4a5568;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--mcd-red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--mcd-dark-red);
}

/* Layout */
.main {
  min-height: calc(100vh - 80px);
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.25rem;
}

.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  justify-items: center;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  justify-items: center;
}

/* Cards */
.card {
  background: var(--mcd-white);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  padding: 2rem;
  min-height: 280px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  transition: var(--transition);
  box-shadow: var(--shadow-small);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mcd-red) 0%, var(--mcd-yellow) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}

.card:hover,
.card:focus {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
  border-color: var(--mcd-red);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h2 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--mcd-dark-gray);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.3;
}

.card h3 {
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--mcd-red);
  line-height: 1.3;
}

.card p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #4a5568;
}

.card p:last-child {
  margin-bottom: 0;
}

.card ul {
  margin: 16px 0;
  padding-left: 20px;
}

.card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.location-card {
  background: var(--mcd-white);
  border: 2px solid var(--mcd-light-gray);
  border-radius: var(--border-radius-large);
  padding: 2.25rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-small);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mcd-red) 0%, var(--mcd-yellow) 100%);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--mcd-red);
}

.location-card h3 {
  margin: 0 0 16px 0;
  font-weight: 700;
  color: var(--mcd-red);
}

.location-card p {
  margin: 8px 0;
  line-height: 1.5;
  color: var(--mcd-dark-gray);
}

/* Header Styles */
.header {
  width: 100%;
  background: rgba(212, 35, 28, 0.7);
  backdrop-filter: saturate(180%) blur(12px);
  padding: 20px 0;
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: var(--mcd-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  transition: var(--transition);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--mcd-yellow);
  transform: translateX(-50%);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 100%;
}

/* Hero and Background Styles */
.hero-gradient {
  background: linear-gradient(135deg, var(--mcd-red) 0%, var(--mcd-dark-red) 100%);
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 16px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mcd-red) 0%, var(--mcd-dark-red) 100%);
  color: var(--mcd-white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  background: var(--mcd-red);
  color: var(--mcd-yellow);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--mcd-yellow) 0%, var(--mcd-light-yellow) 100%);
  color: var(--mcd-dark-gray);
  box-shadow: var(--shadow-medium);
  border-radius: 50px;
  font-weight: bold;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  background: var(--mcd-light-yellow);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.25rem;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 199, 44, 0.45), 0 0 0 6px rgba(212, 35, 28, 0.6);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem 0;
  color: var(--mcd-dark-gray);
  line-height: 1.2;
}

.description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 auto;
  max-width: 48rem;
}

/* Mobile-First Responsive Design */

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--mcd-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10000;
}

.mobile-menu-toggle:hover {
  color: var(--mcd-yellow);
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 45, 45, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  width: 100vw;
  height: 100vh;
}

.mobile-menu.active {
  display: block !important;
  background: rgba(45, 45, 45, 0.98) !important;
}

.mobile-menu .nav-list {
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  display: flex !important;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
  transition: var(--transition);
  display: block !important;
}

.mobile-menu .nav-link:hover {
  background: var(--mcd-red);
  transform: scale(1.05);
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--mcd-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}

/* Mobile-First Media Queries */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-bg {
    background-attachment: scroll; /* Better performance on mobile */
  }
  
  .stats-card {
    padding: 1.25rem 0.75rem;
  }
  
  .stats-value {
    font-size: 1.875rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: block !important;
  }
  
  .nav-list {
    display: none !important;
  }
  
  .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  /* Mobile Typography */
  h1 {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
    line-height: 1.2;
  }
  
  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.3;
  }
  
  h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Mobile Layout Adjustments */
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
    margin: 0;
  }
  
  .location-card {
    padding: 1.5rem;
  }
  
  /* Mobile Hero Section */
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-bg {
    height: 100vh;
    min-height: 600px;
  }
  
  /* Mobile Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
    min-height: 48px; /* Touch-friendly */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-large {
    padding: 18px 32px;
    font-size: 1.125rem;
    min-height: 56px;
  }
  
  /* Mobile Stats */
  .stats-card {
    padding: 1.5rem 1rem;
  }
  
  .stats-value {
    font-size: 2rem;
  }
  
  .stats-label {
    font-size: 0.875rem;
  }
  
  /* Mobile Feature Cards */
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  /* Mobile Spacing */
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .py-24 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .py-28 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  /* Mobile Full-width sections */
  .full-width {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
  
  /* Mobile Footer */
  footer {
    padding: 2rem 0;
  }
  
  footer p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Extra small mobile adjustments */
  .hero-content {
    padding: 1rem;
  }
  
  .card {
    padding: 1.25rem;
  }
  
  .location-card {
    padding: 1.25rem;
  }
  
  .feature-card {
    padding: 1.5rem 1.25rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  /* Mobile app download buttons */
  .mobile-app-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mobile-app-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .location-card:hover,
  .feature-card:hover,
  .stats-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
  
  .nav-link:hover {
    transform: none;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-bg {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .py-24 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .py-28 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Additional utility classes for sections */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.w-full {
  width: 100%;
}

.max-w-5xl {
  max-width: 64rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

.justify-center {
  justify-content: center;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .sm\\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\\:gap-8 {
    gap: 2rem;
  }
  
  .md\\:gap-10 {
    gap: 2.5rem;
  }
  
  .md\\:text-7xl {
    font-size: 4.5rem;
  }
  
  .md\\:text-3xl {
    font-size: 1.875rem;
  }
  
  .md\\:mb-10 {
    margin-bottom: 2.5rem;
  }
  
  .md\\:mb-14 {
    margin-bottom: 3.5rem;
  }
  
  .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Stats specific styles */
.stats-card {
  background: var(--mcd-white);
  border-radius: var(--border-radius-large);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.stats-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--mcd-red);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mcd-dark-gray);
  line-height: 1.4;
}

/* Feature card specific styles */
.feature-card {
  background: var(--mcd-white);
  border-radius: var(--border-radius-large);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
  border-color: var(--mcd-red);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mcd-dark-gray);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}
