/* Template 26 - Vintage Diner */
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Righteous&family=Archivo:wght@400;600;700&display=swap");

:root {
  --retro-red: #ff1744;
  --mustard: #ffc107;
  --mint: #00e676;
  --cream-bg: #fffde7;
  --charcoal: #212121;
  --chrome: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Archivo", sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream-bg);
  font-weight: 400;
  overflow-x: hidden;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 23, 68, 0.05) 35px,
    rgba(255, 23, 68, 0.05) 70px
  );
}

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

/* Diner-Style Header */
.site-header {
  background: linear-gradient(180deg, var(--retro-red) 0%, #d50000 100%);
  border-bottom: 5px solid var(--mustard);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 0 var(--charcoal), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 3px solid var(--mustard);
}

.site-logo a {
  font-family: "Alfa Slab One", cursive;
  font-size: 2.5rem;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 3px 3px 0 var(--charcoal), 5px 5px 0 var(--mustard);
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.site-logo a:hover {
  transform: scale(1.05) rotate(-2deg);
  text-shadow: 4px 4px 0 var(--charcoal), 6px 6px 0 var(--mint);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  background: var(--mustard);
  color: var(--charcoal);
  border-radius: 25px;
  border: 3px solid var(--charcoal);
  box-shadow: 3px 3px 0 var(--charcoal);
  text-transform: uppercase;
}

.site-nav a:hover {
  background: var(--mint);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--charcoal);
}

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #fff9c4 100%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "★ ★ ★";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--retro-red);
  opacity: 0.3;
}

.section.head h1 {
  font-family: "Righteous", cursive;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--retro-red);
  text-shadow: 4px 4px 0 var(--mustard), 8px 8px 0 var(--charcoal);
  animation: dinerBounce 2s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes dinerBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section.head p {
  font-size: 1.4rem;
  color: var(--charcoal);
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 600;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Righteous", cursive;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--retro-red);
  text-shadow: 3px 3px 0 var(--mustard);
  text-transform: uppercase;
}

.section header p {
  font-size: 1.2rem;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #000000 100%);
  padding: 3rem 0 1rem;
  border-top: 5px solid var(--mustard);
  box-shadow: 0 -5px 0 var(--retro-red);
  margin-top: 5rem;
  color: #ffffff;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--chrome);
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--mustard);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--mint);
  text-shadow: 0 0 10px var(--mint);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px dashed var(--chrome);
}

.copyright a {
  color: var(--chrome);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: popIn 0.6s ease forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: "Righteous", cursive;
  font-size: 1.9rem;
  color: var(--retro-red);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  text-transform: uppercase;
}
