/* Base Styles & Variables */
:root {
  --primary-color: #e53935;
  --primary-dark: #c62828;
  --primary-light: #ffcdd2;
  --secondary-color: #4caf50;
  --secondary-dark: #388e3c;
  --accent-color: #ffc107;
  --text-color: #333333;
  --text-light: #757575;
  --bg-color: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #212121;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', 'Roboto', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --border-radius: 4px;
  --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Header styles */
header {
  position: sticky;
  top: 0;
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

.logo img {
  max-height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

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

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn {
  margin: 0 10px;
}

/* Info bar */
.info-bar {
  background-color: var(--bg-light);
  padding: 40px 0;
}

.info-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
  margin: 10px;
  padding: 20px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.info-item .icon {
  margin-right: 15px;
  color: var(--primary-color);
}

.info-item .icon svg {
  width: 30px;
  height: 30px;
}

.info-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.info-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Featured pizzas */
.featured-pizzas {
  padding: 80px 0;
}

.featured-pizzas h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

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

.pizza-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.pizza-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.25rem;
}

.pizza-card p {
  padding: 0 20px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pizza-card .price {
  display: block;
  padding: 0 20px 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* Latest blog section */
.latest-blog {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.latest-blog h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

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

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial:before {
  content: """;
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: var(--primary-light);
  opacity: 0.5;
}

.rating {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.rating svg {
  width: 20px;
  height: 20px;
  margin: 0 2px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
}

.customer .name {
  font-weight: 700;
  margin-right: 10px;
}

.customer .location {
  color: var(--text-light);
}

/* Page Banner */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

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

.page-banner p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts-section {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.blog-grid .blog-card {
  display: flex;
  flex-direction: column;
}

.blog-grid .blog-img {
  height: 240px;
}

.blog-grid .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta .date {
  margin-right: 15px;
}

.blog-meta .category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 3px;
}

/* Blog Post Page */
.blog-post-header {
  padding: 60px 0 40px;
}

.blog-post-meta {
  margin-bottom: 20px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 500;
}

.back-to-blog svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.post-details {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-details .date,
.post-details .category,
.post-details .author {
  margin-right: 15px;
}

.post-details .category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 3px;
}

.featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.blog-post-content {
  padding: 40px 0 80px;
}

.blog-post-content article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post-content ul, 
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content ul li, 
.blog-post-content ol li {
  margin-bottom: 0.5rem;
}

.blog-post-content ul {
  list-style-type: disc;
}

.blog-post-content ol {
  list-style-type: decimal;
}

.share-post {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.share-post p {
  margin-bottom: 10px;
  font-weight: 500;
}

.social-share {
  display: flex;
  gap: 15px;
}

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

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

.social-share svg {
  width: 20px;
  height: 20px;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  margin-bottom: 30px;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.related-post {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

.related-post h4 {
  padding: 15px 15px 10px;
  font-size: 1.1rem;
}

.related-post .read-more {
  padding: 0 15px 15px;
  display: inline-block;
}

/* Menu Page */
.menu-nav {
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: var(--header-height);
  z-index: 900;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.menu-categories li {
  margin: 0 15px;
}

.menu-categories a {
  padding: 5px 0;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.menu-categories a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.menu-categories a:hover:after,
.menu-categories a.active:after {
  width: 100%;
}

.menu-categories a.active {
  color: var(--primary-color);
}

.menu-section {
  padding: 80px 0;
}

.menu-section:nth-child(odd) {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

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

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.menu-item-content {
  padding: 20px;
}

.menu-item-content h3 {
  margin-bottom: 10px;
}

.menu-item-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  min-height: 50px;
}

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

.price {
  font-weight: 700;
  color: var(--primary-color);
}

.add-to-cart {
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.add-to-cart:hover {
  background-color: var(--primary-dark);
}

/* Build Your Own Pizza Section */
.build-your-own-section {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.build-your-own-section h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.option {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}

.option label {
  margin: 0 5px 0 5px;
  cursor: pointer;
}

.option .price,
.option .note {
  margin-left: 5px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.toppings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.toppings-column h4 {
  margin-bottom: 15px;
}

.note {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.premium-label {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
}

.build-summary {
  margin-top: 30px;
  text-align: center;
}

/* Order Info Section */
.order-info {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.order-info .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.order-box {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-start;
}

.order-icon {
  margin-right: 20px;
  color: var(--primary-color);
}

.order-icon svg {
  width: 30px;
  height: 30px;
}

.order-content h3 {
  margin-bottom: 10px;
}

.order-content p {
  margin-bottom: 10px;
  color: var(--text-light);
}

.order-content .btn {
  margin-top: 10px;
}

/* About Page */
.about-story {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 30px;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.values-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
}

.value-card h3 {
  margin-bottom: 15px;
}

.team-section {
  padding: 80px 0;
}

.team-section h2,
.team-section .section-intro {
  text-align: center;
}

.team-section h2 {
  margin-bottom: 10px;
}

.section-intro {
  color: var(--text-light);
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-member h3 {
  margin: 15px 15px 5px;
}

.team-member p {
  padding: 0 15px;
  margin-bottom: 10px;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.achievements-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.achievements-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.achievement-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.achievement-icon svg {
  width: 40px;
  height: 40px;
}

.achievement-card h3 {
  margin-bottom: 10px;
}

.achievement-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonials-about {
  padding: 80px 0;
}

.testimonials-about h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote-icon {
  color: var(--primary-light);
  margin-bottom: 15px;
}

.quote-icon svg {
  width: 30px;
  height: 30px;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author .name {
  font-weight: 700;
}

.testimonial-author .location {
  color: var(--text-light);
}

.cta-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact Page */
.contact-info-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item .icon {
  margin-right: 20px;
  color: var(--primary-color);
}

.info-item .icon svg {
  width: 24px;
  height: 24px;
}

.info-item h3 {
  margin-bottom: 10px;
}

.info-item p {
  color: var(--text-color);
  margin-bottom: 5px;
}

.social-connect h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

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

.social-icons svg {
  width: 20px;
  height: 20px;
}

.contact-form-container {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  font-family: var(--font-main);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.form-group textarea {
  resize: vertical;
}

.newsletter-signup {
  display: flex;
  align-items: center;
}

.newsletter-signup input {
  width: auto;
  margin-right: 10px;
}

.newsletter-signup label {
  margin-bottom: 0;
  font-weight: 400;
}

.map-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 40px;
  text-align: center;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--success-color);
}

.success-icon svg {
  width: 60px;
  height: 60px;
}

.modal-body h2 {
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 30px;
}

.close-btn {
  display: inline-block;
}

/* Date Time and Fact Section */
.fact-time-section {
  background-color: var(--primary-light);
  padding: 30px 0;
}

.fact-time-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.date-time-block, .random-fact-block {
  background-color: var(--bg-color);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  margin: 10px;
  min-width: 250px;
  flex: 1;
  box-shadow: var(--box-shadow);
}

.date-time-block h3, .random-fact-block h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.date-time-block p, .random-fact-block p {
  margin-bottom: 0;
}

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

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

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #ccc;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ccc;
}

.footer-contact a:hover {
  color: white;
}

.footer-social .social-icons {
  margin-top: 15px;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-social .social-icons a:hover {
  background-color: var(--primary-color);
}

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

.copyright p {
  color: #999;
  margin-bottom: 0;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
}

.policy-links a {
  color: #999;
  margin-left: 20px;
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  padding: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0 20px 15px 0;
  flex: 1 0 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.cookie-content a {
  font-size: 0.9rem;
  text-decoration: underline;
  margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-color);
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.show {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .pizza-grid,
  .blog-posts,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card,
  .pizza-card,
  .menu-item {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .menu-categories {
    overflow-x: auto;
    padding: 15px 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .menu-categories li {
    flex: 0 0 auto;
  }
  
  .fact-time-section .container {
    flex-direction: column;
  }
  
  .date-time-block,
  .random-fact-block {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .policy-links {
    margin-top: 15px;
    justify-content: center;
  }
  
  .policy-links a {
    margin: 0 10px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .hero .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-item .icon {
    margin: 0 auto 15px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
}
