/* Custom CSS Variables - Updated to match restaurant colors */
:root {
  /* Primary Restaurant Colors - Bold Yellow & Red */
  --color-golden-yellow: #FFD700;
  --color-bright-yellow: #FFC107;
  --color-warm-red: #c00d31;
  --color-deep-red: #821313;

  /* Supporting Colors */
  --color-turquoise: #20B2AA;
  --color-sage-green: #9CAF88;
  --color-warm-cream: #FFF8DC;
  --color-light-beige: #F5F5DC;
  --color-rich-brown: #8B4513;
  --color-charcoal: #2F2F2F;

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, var(--color-golden-yellow), var(--color-warm-red));
  --gradient-warm: linear-gradient(135deg, var(--color-bright-yellow), var(--color-deep-red));
  --gradient-mexican: linear-gradient(45deg, var(--color-golden-yellow), var(--color-warm-red), var(--color-turquoise));
}

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

html {
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-warm-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--color-charcoal);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.text-white {
  color: white;
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.text-lead {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Button styles */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-warm-red);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--color-deep-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 28, 28, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-bright-yellow);
  color: var(--color-charcoal);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-bright-yellow);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: var(--color-golden-yellow);
  border-color: var(--color-golden-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-disabled {
  background: var(--color-light-beige);
  color: var(--color-charcoal);
  border: 2px solid var(--color-sage-green);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* Social media buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-warm-red);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  margin: 0 10px;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.social-btn svg {
  width: 24px;
  height: 24px;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.social-btn.facebook:hover {
  background: #1877F2;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background: var(--color-warm-red);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
  }
}

.hero h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Logo section */
.logo-section {
  background: white;
  padding: 3rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-container img {
  width: 100%;
  height: auto;
}

/* Image galleries */
.image-placeholder {
  width: 100%;
  height: 300px;
  background: var(--color-light-beige);
  border: 3px dashed var(--color-sage-green);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-rich-brown);
  margin: 1rem 0;
  text-align: center;
  padding: 2rem;
}

.restaurant-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.restaurant-image {
  width: 100%;
  height: 300px;
  background: var(--color-light-beige);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.restaurant-image:hover {
  transform: scale(1.02);
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-decorative {
  border: 8px solid var(--color-warm-cream);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

/* Section styles */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.05) 0%,
      rgba(220, 20, 60, 0.05) 100%);
}

.section-colorful {
  background: linear-gradient(135deg,
      rgba(32, 178, 170, 0.08) 0%,
      rgba(255, 193, 7, 0.08) 50%,
      rgba(220, 20, 60, 0.08) 100%);
}

.section-turquoise {
  background: var(--color-turquoise);
  color: white;
}

.section-sunset {
  background: var(--gradient-sunset);
  color: white;
}

/* Farewell message */
.farewell {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.farewell h2 {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-warm-red);
  margin-bottom: 2rem;
}

.farewell p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-rich-brown);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-mexican);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-golden-yellow);
}

.service-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: var(--color-warm-red);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.service-card p {
  margin-bottom: 2rem;
  color: var(--color-rich-brown);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Homemaking highlight section */
.homemaking-highlight {
  background: var(--color-charcoal);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.homemaking-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(32, 178, 170, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.homemaking-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.homemaking-highlight h2 {
  color: var(--color-golden-yellow);
  margin-bottom: 2rem;
  font-size: 3rem;
}

.homemaking-highlight p {
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  opacity: 0.95;
}

/* Timeline */
.timeline {
  background: var(--color-turquoise);
  color: white;
  text-align: center;
  padding: 4rem 0;
  position: relative;
}

.timeline h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.timeline-content {
  max-width: 600px;
  margin: 0 auto;
}

.timeline p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.timeline strong {
  color: var(--color-golden-yellow);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  background: var(--color-charcoal);
  color: white;
  text-align: center;
  padding: 4rem 0 2rem;
}

.footer p {
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.social-links {
  margin: 3rem 0 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section {
    padding: 3rem 0;
  }

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

  .service-card {
    padding: 2rem;
  }

  .restaurant-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .restaurant-image {
    height: 250px;
  }

  .homemaking-highlight h2 {
    font-size: 2.2rem;
  }

  .homemaking-highlight p {
    font-size: 1.1rem;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 8px;
  }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.6s;
}

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

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Special decorative elements */
.decorative-border {
  height: 5px;
  background: var(--gradient-mexican);
  margin: 3rem 0;
  border-radius: 2px;
}