@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Brand Color Tokens */
  --color-primary-red: #E13236;
  --color-primary-red-hover: #C52528;
  --color-dark-brown: #2C0703;
  --color-cream-white: #F7FFF7;
  --color-gold-accent: #FF9600;
  --color-bg-red-start: #E13236;
  --color-bg-red-end: #8C1417;

  /* Font Tokens */
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;

  /* Component Colors (Optimized for Red Background) */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-hover: rgba(255, 255, 255, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at center, var(--color-bg-red-start) 0%, var(--color-bg-red-end) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
  position: relative;
  padding: 2rem 1rem;
}

/* Subtle background overlay to add depth */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

header, main, footer {
  width: 100%;
  max-width: 800px;
  z-index: 10;
  position: relative;
}

/* Header Logo */
header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: inline-block;
  padding: 1rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
  transform: scale(1.05) rotate(-1deg);
}

.logo-img {
  height: 110px;
  width: auto;
  /* Logo filter: forces logo to be completely white with an elegant dark shadow */
  filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Main Container: Glassmorphism Card */
.main-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
}

.main-card:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Badge Alert */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 2rem;
  animation: pulse 2s infinite alternate;
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold-accent);
}

/* Headings & Text */
h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.highlight-gold {
  color: var(--color-gold-accent);
  text-shadow: 0 2px 10px rgba(229, 169, 60, 0.2);
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Progress / Loading Animation */
.cooking-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.pot-icon {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.progress-track {
  width: 100%;
  max-width: 320px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #FFFFFF 0%, var(--color-gold-accent) 100%);
  border-radius: 100px;
  position: relative;
  animation: loading-bar 10s ease-in-out infinite alternate;
}

/* Locations / Contact Section */
.locations-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.locations-section h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-gold-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: background 0.3s, border-color 0.3s;
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.location-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-title::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-gold-accent);
  border-radius: 50%;
}

.location-address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.location-address:hover {
  color: #FFFFFF;
}

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

.location-hours::before {
  content: '🕒';
  font-size: 0.85rem;
}

/* Footer & Social Media */
footer {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-primary-red);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
  margin-top: 1rem;
  opacity: 0.6;
}

/* Keyframe Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes loading-bar {
  0% {
    width: 10%;
  }
  30% {
    width: 65%;
  }
  60% {
    width: 40%;
  }
  100% {
    width: 90%;
  }
}

/* Media Queries (Responsive Styling) */
@media (min-width: 600px) {
  body {
    padding: 3rem 2rem;
  }
  
  .logo-img {
    height: 140px;
  }
  
  h1 {
    font-size: 3.25rem;
  }
  
  .lead-text {
    font-size: 1.25rem;
  }
  
  .grid-locations {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main-card {
    padding: 4rem 3.5rem;
  }
}

@media (min-width: 900px) {
  .grid-locations {
    grid-template-columns: repeat(3, 1fr);
  }
}
