/* Pizza Delivery Information Guide - Main Stylesheet */

/* CSS Variables */
:root {
  --primary-red: #C41E3A;
  --primary-red-dark: #8B0000;
  --dark-grey: #2C2C2C;
  --medium-grey: #666666;
  --light-grey: #F5F5F5;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-grey);
  background-color: var(--white);
  font-size: 16px;
}

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

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-red);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark-grey);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

nav a.active {
  color: var(--primary-red);
  font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-grey);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .subheading {
  font-size: 20px;
  color: var(--medium-grey);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: var(--light-grey);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--medium-grey);
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
}

/* Content Blocks */
.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-grey);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-red);
}

.content-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-grey);
  margin: 30px 0 15px;
}

.content-block p {
  margin-bottom: 20px;
  color: var(--medium-grey);
  line-height: 1.8;
}

.content-block ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-block li {
  margin-bottom: 12px;
  color: var(--medium-grey);
  line-height: 1.7;
}

.content-block li::marker {
  color: var(--primary-red);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-red);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--medium-grey);
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.step {
  background: var(--light-grey);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--medium-grey);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--medium-grey);
  line-height: 1.6;
  margin: 0;
}

/* Contact Form */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-item {
  background: var(--light-grey);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 15px;
}

.contact-item p {
  color: var(--medium-grey);
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-red);
}

.disclaimer-box {
  background-color: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.disclaimer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #CCCCCC;
}

.disclaimer-box p:first-child {
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #CCCCCC;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheading {
    font-size: 18px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 15px;
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav a {
    display: block;
    padding: 10px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .content-block h2 {
    font-size: 24px;
  }
  
  .content-block h3 {
    font-size: 20px;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .contact-form {
    display: none;
  }
  
  body {
    background-color: var(--white);
  }
  
  section {
    padding: 20px 0;
  }
}