/* 
Freshslice Pizza Website Styles
Theme: Modern, clean design for a pizza restaurant
*/

/* Base Styles and Variables */
:root {
  --primary-color: #e53935;
  --primary-dark: #c62828;
  --primary-light: #ef5350;
  --secondary-color: #4caf50;
  --secondary-dark: #388e3c;
  --secondary-light: #66bb6a;
  --text-color: #333333;
  --text-light: #757575;
  --background-color: #ffffff;
  --background-alt: #f9f9f9;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --font-main: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 6rem 0;
}

/* Custom Border for Images */
.custom-border {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 3px solid var(--primary-color);
}

.custom-border::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
  border-radius: calc(var(--border-radius) + 3px);
}

.custom-border img {
  border-radius: calc(var(--border-radius) - 3px);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.6rem;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  color: white;
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: white;
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.outline-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.outline-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-btn::before {
  content: '🍕';
  margin-right: 0.8rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  max-width: 150px;
}

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

.main-menu {
  display: flex;
  gap: 2rem;
}

.main-menu li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.main-menu li a:hover, 
.main-menu li a.active {
  color: var(--primary-color);
  background-color: rgba(229, 57, 53, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  background-color: var(--background-alt);
  padding: 8rem 0;
}

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

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Features Section */
.features {
  background-color: white;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  background-color: var(--background-alt);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(229, 57, 53, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-light);
}

/* Popular Pizzas Section */
.popular-pizzas {
  background-color: var(--background-alt);
}

.popular-pizzas h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pizza-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.pizza-card:hover {
  transform: translateY(-10px);
}

.pizza-image {
  height: 200px;
  overflow: hidden;
}

.pizza-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pizza-card:hover .pizza-image img {
  transform: scale(1.05);
}

.pizza-card h3 {
  padding: 2rem 2rem 0;
  font-size: 2rem;
}

.pizza-card p {
  padding: 0 2rem;
  color: var(--text-light);
}

.price {
  display: block;
  padding: 0 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.pizza-card .order-btn {
  margin: 0 2rem 2rem;
}

.view-all {
  text-align: center;
  margin-top: 4rem;
}

/* Special Deals Section */
.special-deals {
  background-color: white;
}

.special-deals .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.deals-content h2 {
  margin-bottom: 1.5rem;
}

.deals-content p {
  margin-bottom: 3rem;
  color: var(--text-light);
}

.deal-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.deal-card:hover {
  box-shadow: var(--box-shadow);
}

.deal-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.deal-card p {
  margin-bottom: 1.5rem;
}

.deals-image {
  height: 100%;
}

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

/* Locations Preview Section */
.locations-preview {
  background-color: var(--background-alt);
  text-align: center;
}

.locations-preview h2 {
  margin-bottom: 1.5rem;
}

.locations-preview p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

.location-map {
  margin-bottom: 3rem;
}

.location-map img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* Mobile App Section */
.mobile-app {
  background-color: white;
}

.mobile-app .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-image {
  height: 100%;
}

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

.app-content h2 {
  margin-bottom: 1.5rem;
}

.app-content p {
  margin-bottom: 3rem;
  color: var(--text-light);
}

.app-buttons {
  display: flex;
  gap: 1.5rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.4rem;
  background-color: var(--text-color);
  color: white;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.app-btn:hover {
  background-color: black;
  color: white;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background-alt);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 4rem;
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  max-width: 500px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #ffc107;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-color);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  text-align: center;
  padding: 8rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background-color: white;
  color: var(--primary-color);
}

.cta-section .btn:hover {
  background-color: var(--background-alt);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-logo {
  margin-bottom: 2rem;
  max-width: 120px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hours li span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.legal-links a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 2rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookie-more-info {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-more-info a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.page-banner h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* Menu Page Styles */
.menu-categories {
  background-color: white;
  padding-bottom: 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.category-tab {
  padding: 1rem 2rem;
  background-color: var(--background-alt);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.category-tab:hover, 
.category-tab.active {
  background-color: var(--primary-color);
  color: white;
}

.menu-items {
  display: none;
  background-color: var(--background-alt);
}

.menu-items.active-menu {
  display: block;
}

.menu-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-light);
}

.size-selector {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.size-btn {
  padding: 1rem 2rem;
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.size-btn:hover, 
.size-btn.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.menu-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-info {
  padding: 2rem;
}

.menu-item-info h3 {
  margin-bottom: 1rem;
}

.menu-item-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.create-your-own {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.option-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--background-alt);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.option-btn:hover, 
.option-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.toppings-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.toppings-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.topping-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.pizza-preview {
  margin-bottom: 2rem;
}

.pizza-preview img {
  width: 100%;
  height: auto;
}

.pizza-details p {
  margin-bottom: 1rem;
}

.total-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 2rem 0;
}

/* Deals Page Styles */
.deals-filter {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 1rem 2rem;
  background-color: var(--background-alt);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover, 
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.deal-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.deal-card:hover {
  transform: translateY(-10px);
}

.deal-image {
  position: relative;
  height: 200px;
}

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

.deal-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.4rem;
}

.deal-content {
  padding: 2rem;
}

.deal-content h3 {
  margin-bottom: 1rem;
}

.deal-time {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.deal-features {
  margin-bottom: 2rem;
}

.deal-features li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.deal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.original-price {
  font-size: 1.6rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-right: 1rem;
}

.discounted-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.loyalty-program {
  background-color: white;
  margin-top: 6rem;
}

.loyalty-program .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.loyalty-benefits {
  margin-top: 3rem;
}

.loyalty-benefits li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.loyalty-benefits li svg {
  flex-shrink: 0;
  color: var(--secondary-color);
}

.daily-deals {
  background-color: var(--background-alt);
  text-align: center;
}

.daily-deals h2 {
  margin-bottom: 1.5rem;
}

.daily-deals p {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-light);
}

.daily-deals-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
}

.daily-deal {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.daily-deal:hover {
  transform: translateY(-10px);
}

.day {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.daily-deal h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.daily-deal p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.promo-code {
  background-color: white;
  text-align: center;
}

.promo-form {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.promo-input {
  padding: 1.2rem 2rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  width: 100%;
  max-width: 400px;
}

.promo-note {
  color: var(--text-light);
  font-size: 1.4rem;
}

/* Locations Page Styles */
.location-finder {
  background-color: white;
}

.location-finder .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-search h2 {
  margin-bottom: 2rem;
}

.search-form {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.location-input {
  padding: 1.2rem 2rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  width: 100%;
}

.search-note {
  color: var(--text-light);
  font-size: 1.4rem;
}

.locations-map img {
  width: 100%;
  height: auto;
}

.location-list {
  background-color: var(--background-alt);
}

.location-list h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.location-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.location-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-10px);
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.location-header h3 {
  margin-bottom: 0;
}

.distance {
  font-size: 1.4rem;
  background-color: var(--background-alt);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.location-card address {
  margin-bottom: 2rem;
  font-style: normal;
}

.location-contact {
  margin-bottom: 2rem;
}

.location-contact p {
  margin-bottom: 0.5rem;
}

.location-hours {
  margin-bottom: 2rem;
}

.location-hours ul {
  font-size: 1.4rem;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background-color: var(--background-alt);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
}

.location-actions {
  display: flex;
  gap: 1.5rem;
}

.franchise-info {
  background-color: white;
}

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

.franchise-benefits {
  margin-top: 3rem;
}

.franchise-benefits li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.franchise-benefits li svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.delivery-zones {
  background-color: var(--background-alt);
}

.delivery-zones h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.delivery-zones > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-light);
}

.delivery-zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.delivery-zone {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.delivery-zone h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.zone-areas {
  margin-bottom: 1.5rem;
}

.zone-areas li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.zone-areas li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.delivery-note {
  font-size: 1.4rem;
  color: var(--text-light);
  font-style: italic;
}

.delivery-disclaimer {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 0;
  font-size: 1.4rem;
  color: var(--text-light);
  font-style: italic;
}

/* Blog Page Styles */
.blog-content {
  background-color: var(--background-alt);
}

.blog-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.blog-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 4rem;
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-10px);
}

.post-image {
  height: 300px;
}

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

.post-content {
  padding: 3rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.post-content h2 {
  margin-bottom: 2rem;
}

.post-content h2 a {
  color: var(--text-color);
  transition: var(--transition);
}

.post-content h2 a:hover {
  color: var(--primary-color);
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.sidebar-widget h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.search-form {
  display: flex;
  gap: 1rem;
}

.search-form input {
  flex-grow: 1;
  padding: 1.2rem 2rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
}

.search-form button {
  padding: 1.2rem;
}

.category-list li {
  margin-bottom: 1.5rem;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  transition: var(--transition);
}

.category-list li a:hover {
  color: var(--primary-color);
}

.category-list li a span {
  color: var(--text-light);
  font-size: 1.4rem;
}

.recent-posts li {
  margin-bottom: 2rem;
}

.recent-posts li a {
  display: flex;
  gap: 1.5rem;
  color: var(--text-color);
}

.post-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-info h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.post-info span {
  font-size: 1.4rem;
  color: var(--text-light);
}

.recent-posts li a:hover h4 {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.newsletter-form input {
  padding: 1.2rem 2rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-cloud a {
  background-color: var(--background-alt);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  color: var(--text-color);
  transition: var(--transition);
}

.tag-cloud a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Blog Single Post Styles */
.blog-single-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.blog-single-header .post-meta {
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.blog-single-header h1 {
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-content {
  background-color: var(--background-alt);
}

.featured-image {
  margin-bottom: 3rem;
  height: 400px;
}

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

.blog-post-full {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.post-image-inline {
  margin: 3rem 0;
  height: 300px;
}

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

blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  background-color: var(--background-alt);
  margin: 3rem 0;
}

blockquote p {
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

blockquote cite {
  font-style: normal;
  color: var(--text-light);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  background-color: var(--background-alt);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  color: var(--text-color);
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--background-alt);
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-author-bio {
  display: flex;
  gap: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 4rem 0;
}

.author-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info h3 {
  margin-bottom: 1rem;
}

.author-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.author-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.prev-post,
.next-post {
  max-width: 48%;
}

.prev-post span,
.next-post span {
  display: block;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.prev-post a,
.next-post a {
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.prev-post a:hover,
.next-post a:hover {
  color: var(--primary-color);
}

.next-post {
  text-align: right;
}

.related-posts h3 {
  margin-bottom: 2rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.related-post {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post-image {
  height: 150px;
}

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

.related-post h4 {
  padding: 1.5rem;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.related-post .post-date {
  display: block;
  padding: 0 1.5rem 1.5rem;
  font-size: 1.4rem;
  color: var(--text-light);
}

.post-comments {
  margin-top: 4rem;
}

.post-comments h3 {
  margin-bottom: 2rem;
}

.comment {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.comment-content {
  flex-grow: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.comment-header h4 {
  margin-bottom: 0;
}

.comment-date {
  font-size: 1.4rem;
  color: var(--text-light);
}

.reply-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 1rem;
}

.reply-btn:hover {
  text-decoration: underline;
}

.comment-form h3 {
  margin: 4rem 0 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

.cta-widget {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-widget h3 {
  color: white;
}

.cta-widget p {
  margin-bottom: 2rem;
}

.cta-widget .btn {
  background-color: white;
  color: var(--primary-color);
}

.cta-widget .btn:hover {
  background-color: var(--background-alt);
}

/* About Us Page Styles */
.about-story {
  background-color: white;
}

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

.about-content h2 {
  margin-bottom: 2rem;
}

.about-image {
  height: 100%;
}

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

.our-mission {
  background-color: var(--background-alt);
}

.our-mission .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-statement {
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.mission-statement p {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0;
}

.mission-values {
  margin-top: 2rem;
}

.mission-values li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mission-values li svg {
  flex-shrink: 0;
  color: var(--secondary-color);
}

.meet-team {
  background-color: white;
  text-align: center;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.team-member {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.our-values {
  background-color: var(--background-alt);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(229, 57, 53, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.milestones {
  background-color: white;
  text-align: center;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.year {
  flex-basis: 20%;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  padding-top: 1rem;
}

.year::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.event {
  flex-basis: 60%;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: left;
  box-shadow: var(--box-shadow);
}

.event h3 {
  margin-bottom: 1rem;
}

.event p {
  margin-bottom: 0;
}

.community-impact {
  background-color: var(--background-alt);
}

.community-impact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.impact-list {
  margin-top: 3rem;
}

.impact-list li {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.impact-list li svg {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.impact-list li h3 {
  margin-bottom: 0.8rem;
}

.impact-list li p {
  margin-bottom: 0;
}

/* Contact Page Styles */
.contact-info-section {
  background-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.contact-info-item {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(229, 57, 53, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.contact-info-item h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.contact-link {
  font-weight: 600;
  color: var(--primary-color);
}

.hours-list {
  font-size: 1.4rem;
}

.contact-form-section {
  background-color: var(--background-alt);
}

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

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 1.5rem;
}

.contact-form-container > p {
  margin-bottom: 3rem;
  color: var(--text-light);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
}

.map-container {
  margin-bottom: 2rem;
  height: 300px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.map-buttons .btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.additional-info h3 {
  margin-bottom: 1.5rem;
}

.transportation-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-section {
  background-color: white;
}

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

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  transition: var(--transition);
}

.faq-toggle {
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-answer {
  display: none;
  padding-bottom: 2rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.careers-cta {
  background-color: var(--background-alt);
}

.careers-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.careers-content h2 {
  margin-bottom: 2rem;
}

.careers-image {
  height: 100%;
}

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.thank-you-message h2 {
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
}

/* Spell Check Section */
.spell-check-section {
  background-color: var(--background-alt);
  padding: 3rem 0;
}

.spell-check-section .container {
  text-align: center;
}

#spell-check-result {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: white;
  display: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .daily-deals-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .daily-deal:nth-child(n+5) {
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 55%;
  }
  
  .container {
    max-width: 720px;
  }
  
  header .container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero .container,
  .special-deals .container,
  .mobile-app .container,
  .about-story .container,
  .our-mission .container,
  .community-impact .container,
  .location-finder .container,
  .careers-cta .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features .container {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .pizza-grid,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .deals-grid,
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-content .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .create-your-own {
    grid-template-columns: 1fr;
  }
  
  .daily-deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .main-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .pizza-grid,
  .menu-grid,
  .deals-grid,
  .locations-grid,
  .delivery-zones-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }
  
  .year {
    text-align: left;
    padding-left: 60px;
    margin-bottom: 1.5rem;
  }
  
  .year::before {
    left: 30px;
  }
  
  .event {
    flex-basis: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .category-tabs,
  .size-selector,
  .deals-filter,
  .location-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .map-buttons {
    flex-direction: column;
  }
  
  .comment {
    flex-direction: column;
    align-items: flex-start;
  }
}
