/* 
  Jan & Tony's Pizza - Core Stylesheet
  Crafted with premium typography, warm palettes, and responsive glassmorphism.
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: #BD3A23;         /* Terracotta rust red */
  --primary-hover: #A52E1A;
  --secondary: #2D5A27;       /* Olive forest green */
  --secondary-hover: #20421B;
  --accent: #D97706;          /* Honey gold */
  --accent-hover: #B45309;
  --bg-cream: #FAF7F2;        /* Warm background cream */
  --bg-white: #FFFFFF;
  --bg-dark: #121212;         /* Deep charcoal footer/dark sections */
  --bg-dark-card: #1E1E1E;
  --text-dark: #231F20;       /* Dark espresso body text */
  --text-light: #F5F5F5;
  --text-muted: #766E65;      /* Warm gray muted text */
  --text-muted-light: #C5C0BA;
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.15);
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  
  --max-width: 1200px;
}

/* --- RESET & BASICS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-align: center; margin-bottom: 3rem; position: relative; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* Decorative title underlines */
h2.decorated::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-cream);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(189, 58, 35, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--bg-cream);
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(45, 90, 39, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-cream);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(217, 119, 6, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.85rem;
  box-shadow: none;
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-cream);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Glassmorphism Panel */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}

/* --- TOP ANNOUNCEMENT BANNER --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--bg-cream);
  text-align: center;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.announcement-bar.hide {
  margin-top: -40px;
  opacity: 0;
  pointer-events: none;
}

.announcement-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--bg-cream);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}
.announcement-close:hover {
  opacity: 1;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 226, 217, 0.5);
  transition: var(--transition);
}

.site-header.shrink {
  padding: 0.3rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition);
}
.site-header.shrink .nav-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}
.site-header.shrink .logo-img {
  height: 55px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  border-top: 5px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-img {
  height: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.footer-brand p {
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  transition: var(--transition);
  font-size: 1.1rem;
}
.social-icon:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--bg-cream);
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-hours p, .footer-contact p {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted-light);
}

.footer-hours p span.day {
  font-weight: 600;
  color: var(--text-light);
}

.footer-contact p {
  justify-content: flex-start;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact p span.icon {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-bottom-links a {
  margin-left: 1.5rem;
}
.footer-bottom-links a:hover {
  color: var(--accent);
}

/* --- HOME PAGE SECTIONS --- */
/* Hero */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, rgba(18,18,18,0.5) 0%, rgba(18,18,18,0.85) 100%), 
              url('../assets/hero-pizza.jpg') no-repeat center center/cover;
  color: var(--text-light);
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  color: var(--text-light);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btns .btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}
.hero-btns .btn-outline:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

/* Badges Section */
.badges-container {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.badge-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  background: var(--bg-white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231, 226, 217, 0.4);
  transition: var(--transition);
}
.badge-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(189, 58, 35, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.badge-card h3 {
  margin-bottom: 0.5rem;
  font-weight: 800;
}

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

/* Featured / Top Sellers Section */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.featured-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(231, 226, 217, 0.4);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-img-container {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.featured-card:hover .featured-img {
  transform: scale(1.05);
}

.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.featured-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
}

.featured-body h3 {
  font-weight: 800;
}

.featured-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(231, 226, 217, 0.4);
  padding-top: 1.25rem;
}

/* Promo Highlights Banner Section */
.promo-highlight-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1513 100%);
  color: var(--text-light);
}

.promo-highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.promo-highlight-text h2 {
  color: var(--text-light);
  text-align: left;
  margin-bottom: 1.5rem;
}

.promo-highlight-text p {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.promo-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}
.promo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.promo-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.promo-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.promo-item p {
  color: var(--text-muted-light);
  font-size: 0.85rem;
}

/* Quick Info / Map Section */
.info-section {
  background-color: var(--bg-white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-cream);
  border: 1px solid rgba(231, 226, 217, 0.4);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(45, 90, 39, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-card-text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

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

.info-map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231, 226, 217, 0.4);
}

.info-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- MENU PAGE SECTIONS --- */
.menu-header-section {
  background: linear-gradient(rgba(18,18,18,0.7), rgba(18,18,18,0.7)), 
              url('../assets/hero-pizza.jpg') no-repeat center 35%/cover;
  padding: 8rem 0 5rem;
  color: var(--text-light);
  text-align: center;
}

.menu-header-section h1 {
  color: var(--text-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.menu-header-section p {
  color: var(--text-muted-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Menu Tabs Navigation */
.menu-nav-tabs {
  background: var(--bg-white);
  padding: 1rem 0;
  position: sticky;
  top: 90px;
  z-index: 990;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(231, 226, 217, 0.5);
  transition: var(--transition);
}
.site-header.shrink + .menu-nav-tabs {
  top: 70px;
}

.menu-nav-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}

.menu-nav-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  background-color: var(--bg-cream);
  border: 1px solid rgba(231, 226, 217, 0.5);
  transition: var(--transition);
}
.menu-nav-btn:hover, .menu-nav-btn.active {
  color: var(--bg-cream);
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(189, 58, 35, 0.2);
}

.menu-section {
  scroll-margin-top: 160px;
}

.menu-category-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  text-align: left;
  border-left: 5px solid var(--primary);
  padding-left: 1rem;
}

.menu-category-desc {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  max-width: 800px;
}

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

.menu-item-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(231, 226, 217, 0.4);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(189, 58, 35, 0.2);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.menu-item-name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
}

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

.menu-item-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-item-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.tag-veggie {
  background-color: rgba(45, 90, 39, 0.08);
  color: var(--secondary);
}
.tag-spicy {
  background-color: rgba(189, 58, 35, 0.08);
  color: var(--primary);
}
.tag-popular {
  background-color: rgba(217, 119, 6, 0.08);
  color: var(--accent);
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(231, 226, 217, 0.3);
  padding-top: 1rem;
}

.menu-item-sizes {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.menu-item-sizes span {
  font-weight: 600;
  color: var(--text-dark);
}

/* --- ABOUT PAGE SECTIONS --- */
.about-hero-section {
  background: linear-gradient(rgba(18,18,18,0.75), rgba(18,18,18,0.75)), 
              url('../assets/pasta.jpg') no-repeat center center/cover;
  padding: 8rem 0 5rem;
  color: var(--text-light);
  text-align: center;
}

.about-hero-section h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.about-intro-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231, 226, 217, 0.4);
}

/* Core Values / Features Grid */
.features-section {
  background-color: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--bg-cream);
  border-radius: var(--border-radius);
  border: 1px solid rgba(231, 226, 217, 0.4);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 90, 39, 0.2);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(45, 90, 39, 0.08);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-weight: 800;
  margin-bottom: 1rem;
}

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

/* --- SPECIALS PAGE SECTIONS --- */
.specials-hero-section {
  background: linear-gradient(rgba(18,18,18,0.7), rgba(18,18,18,0.7)), 
              url('../assets/sub-italian.jpg') no-repeat center 35%/cover;
  padding: 8rem 0 5rem;
  color: var(--text-light);
  text-align: center;
}

.specials-hero-section h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.coupon-card {
  background: var(--bg-white);
  border: 2px dashed var(--primary);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.coupon-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

/* Coupon Scallop Cutouts */
.coupon-card::before, .coupon-card::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.coupon-card::before { left: -13px; border-right: 2px dashed var(--primary); }
.coupon-card::after { right: -13px; border-left: 2px dashed var(--primary); }

.coupon-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.coupon-discount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.coupon-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.coupon-body {
  text-align: center;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.coupon-body h3 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

.coupon-footer {
  text-align: center;
  border-top: 1px solid rgba(231, 226, 217, 0.4);
  padding-top: 1.5rem;
}

.coupon-code {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(231, 226, 217, 0.8);
  background-color: var(--bg-cream);
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.coupon-terms {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- CONTACT PAGE SECTIONS --- */
.contact-hero-section {
  background: linear-gradient(rgba(18,18,18,0.7), rgba(18,18,18,0.7)), 
              url('../assets/hero-pizza.jpg') no-repeat center 70%/cover;
  padding: 8rem 0 5rem;
  color: var(--text-light);
  text-align: center;
}

.contact-hero-section h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-panel {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(231, 226, 217, 0.4);
}

.contact-info-panel h3 {
  margin-bottom: 1.5rem;
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(189, 58, 35, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.contact-text a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-panel {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(231, 226, 217, 0.4);
}

.contact-form-panel h3 {
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input, .form-group textarea {
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(231, 226, 217, 0.8);
  background-color: var(--bg-cream);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(189, 58, 35, 0.1);
}

.contact-form-panel .btn {
  width: 100%;
}

/* Full Width Map */
.full-width-map-section {
  padding: 0;
  background-color: var(--bg-cream);
}
.full-width-map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* --- FLOATING CTA PILL WIDGET (Mobile-First) --- */
.floating-cta-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(30, 27, 27, 0.85); /* Dark charcoal glassmorphism */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-float);
  border-radius: 100px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta-pill.hide {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  color: white;
  white-space: nowrap;
  transition: var(--transition);
}

.floating-cta-btn.order {
  background-color: var(--primary);
  box-shadow: 0 4px 12px rgba(189, 58, 35, 0.3);
}
.floating-cta-btn.order:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.floating-cta-btn.call {
  background-color: var(--secondary);
}
.floating-cta-btn.call:hover {
  background-color: var(--secondary-hover);
  transform: scale(1.05);
}

.floating-cta-btn.directions {
  background-color: var(--accent);
}
.floating-cta-btn.directions:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

.floating-cta-btn.whatsapp {
  background-color: #25D366; /* Official WhatsApp Green */
  color: white;
}
.floating-cta-btn.whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}

.floating-cta-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

/* --- PROMO POPUP MODAL --- */
.promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 1.5rem;
}

.promo-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-modal.show .promo-modal-card {
  transform: scale(1);
}

.promo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  transition: var(--transition);
}
.promo-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

.promo-modal-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.promo-modal-content {
  padding: 2.5rem;
  text-align: center;
}

.promo-modal-content h3 {
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.promo-modal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.promo-modal-code-wrapper {
  background: var(--bg-cream);
  border: 1px dashed var(--primary);
  padding: 0.75rem;
  border-radius: var(--border-radius-sm);
  font-family: monospace;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .promo-highlight-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  /* Navigation */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-cta .btn {
    display: none; /* Hide Order Online button on tablet/mobile header */
  }
  
  .site-header {
    height: 75px;
  }
  .nav-container {
    height: 75px;
  }
  
  .site-header.shrink .nav-container {
    height: 65px;
  }
  .site-header.shrink {
    height: 65px;
  }

  .menu-nav-tabs {
    top: 75px;
  }
  .site-header.shrink + .menu-nav-tabs {
    top: 65px;
  }

  /* Grid layouts */
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .badges-container {
    margin-top: -1.5rem;
    gap: 1.25rem;
  }
  
  /* Floating CTA Pill details */
  .floating-cta-pill {
    width: 90%;
    justify-content: space-around;
    padding: 0.4rem 0.5rem;
  }
  .floating-cta-btn {
    padding: 0.6rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .floating-cta-btn span:not(.floating-cta-icon) {
    display: none; /* Hide label on mobile to save space */
  }
  .floating-cta-btn.order {
    border-radius: 50px;
    width: auto;
    height: 40px;
    padding: 0.6rem 1rem;
  }
  .floating-cta-btn.order span:not(.floating-cta-icon) {
    display: inline; /* Keep "Order" text on mobile */
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-bottom-links a {
    margin: 0 0.75rem;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
  }
  
  .coupon-card {
    padding: 1.75rem 1.25rem;
  }
  
  .contact-form-panel {
    padding: 1.75rem;
  }
}
