@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Barlow:wght@300;400;500;600&family=Racing+Sans+One&family=Georama:wght@100;400;700&display=swap');

@font-face {
  font-family: 'Sarpanch';
  src: url('../fonts/Sarpanch-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sarpanch';
  src: url('../fonts/Sarpanch-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #2F2E2E;
  line-height: 1.6;
  background: #fff;
}

a {
  color: #01B1AF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

h1, h2, h3, h4 {
  font-family: Georgia, Palatino, 'Book Antiqua', 'Palatino Linotype', serif;
  font-weight: normal;
}

/* Quantico Bold Italic headings */
.heading-quantico {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* Quantico for contact labels */
.contact-details dt,
.contact-info h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
}

/* === Header === */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 120px;
  width: auto;
}

.header-right {
  flex: 1;
  padding-left: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.tagline {
  color: #2F2E2E;
  font-family: 'Quantico', Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.3;
  max-width: 320px;
  flex-shrink: 0;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  background: #F1F1F1;
  border-radius: 2px;
  width: fit-content;
  gap: 0;
  white-space: nowrap;
}

.main-nav a {
  color: #333;
  font-family: 'Barlow', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 8px 25px;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.main-nav a:hover {
  background: #ddd;
  text-decoration: none;
}

.main-nav a.active {
  background: #323232;
  color: #fff;
  text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
}

/* === Hero / Banner === */
.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.hero-overlay p {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 700px;
}

/* === Sections === */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1200px;
}

.section-alt {
  background: #EFF1F2;
}

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

.section-header h2 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2.2rem;
  color: #323232;
  margin-bottom: 10px;
}

.section-header p {
  font-family: 'Sarpanch', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #555;
}

.section-banner {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* === Pizza Cards Grid (3-column like Wix) === */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pizza-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.pizza-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pizza-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.pizza-card-body {
  padding: 15px;
}

.pizza-card-body h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #323232;
}

.pizza-card-body p {
  font-family: 'Sarpanch', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #2F2E2E;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pizza-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.price {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #01B1AF;
}

.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
}

.tag-vegetarian {
  background: #4CAF50;
  color: #fff;
}

.tag-organic {
  background: #8BC34A;
  color: #fff;
}

.tag-mild {
  background: #FF9800;
  color: #fff;
}

.tag-star {
  color: #01B1AF;
  font-size: 1.1rem;
}

/* === Make Your Own === */
.build-your-own {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.build-your-own img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.toppings-list h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: #323232;
  margin: 15px 0 8px;
  border-bottom: 2px solid #01B1AF;
  padding-bottom: 5px;
}

.toppings-list p {
  font-family: 'Sarpanch', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #2F2E2E;
  line-height: 1.6;
}

.toppings-note {
  margin-top: 15px;
  font-style: italic;
  color: #888;
}

/* === Sauces === */
.sauce-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.sauce-item {
  background: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.sauce-item .name {
  font-family: 'Sarpanch', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.sauce-item .price {
  font-family: 'Sarpanch', sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

.section-header h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* === Our Story Page === */

/* Hero - teal background */
.story-hero {
  background: #34AABA;
  padding: 50px 20px 80px;
  text-align: center;
  position: relative;
}

.story-hero h1 {
  color: #FAFAFA;
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.story-hero-images {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 450px;
}

.story-main-img {
  width: 65%;
  border-radius: 10px;
  margin: 0 auto;
}

.story-overlay-right {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.story-overlay-left {
  position: absolute;
  left: 5%;
  bottom: -60px;
  width: 30%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* About text section */
.story-about {
  padding: 60px 20px;
  background: #fff;
}

.story-about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.story-about-left {
  text-align: left;
}

.story-label {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #2F2E2E;
  line-height: 1.2;
  margin-bottom: 15px;
}

.story-about-left img {
  width: 100%;
  border-radius: 0;
}

.story-about-right {
  text-align: center;
}

.story-about-right h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #2F2E2E;
}

.story-about-right p {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #605E5E;
  margin-bottom: 15px;
  line-height: 1.6;
}

.story-about-right .bold-text {
  font-weight: 700;
}

.story-about-right h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  color: #605E5E;
  margin-top: 25px;
  margin-bottom: 10px;
}

.mission-list {
  list-style: disc;
  padding-left: 20px;
  color: #605E5E;
  text-align: center;
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  list-style-position: inside;
}

.mission-list li {
  margin-bottom: 8px;
}

.story-about-logo {
  text-align: center;
  margin-top: 40px;
}

.story-about-logo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

/* Meet The Team section */
.story-team {
  background: #FAFAFA;
  padding: 60px 20px;
  text-align: center;
}

.story-team h2 {
  font-size: 2.5rem;
  color: #2A2A2A;
  margin-bottom: 15px;
}

.story-team h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2A2A2A;
  margin: 15px auto 40px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: #23717C;
  margin-bottom: 10px;
}

.team-member p {
  font-family: 'Sarpanch', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #000;
  line-height: 1.5;
}

/* Our Investors section */
.story-investors {
  background: rgba(35, 113, 124, 0.99);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.story-investors h2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 15px;
}

.investors-intro {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #D4D4D4;
  margin-bottom: 25px;
}

.investors-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.investors-list p {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.6;
}

/* Contact section on Our Story page */
.story-contact {
  background: rgba(204, 204, 204, 0.8);
  padding: 60px 20px;
}

.story-contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* === Contact Page === */
.contact-grid {
  max-width: 800px;
}

.contact-info h2,
.contact-info h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2rem;
  color: #323232;
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 1.3rem;
}

.contact-info p,
.contact-info dd {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
  color: #555;
}

.contact-details {
  margin: 20px 0;
}

.contact-details dt {
  font-weight: bold;
  color: #323232;
  margin-top: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.social-links a {
  display: inline-block;
}

.social-links a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: opacity 0.3s;
}

.social-links a:hover img {
  opacity: 0.7;
}

/* === Visit Us === */
.visit-section {
  background: #23717C;
  color: #fff;
  padding: 60px 20px;
}

.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.visit-inner h2,
.visit-inner h3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 15px;
}

.visit-inner h3 {
  font-size: 1.3rem;
}

.visit-inner p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.visit-inner img {
  border-radius: 10px;
  width: 100%;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.hours-table th,
.hours-table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-table th {
  font-weight: bold;
}

/* === Footer === */
.site-footer {
  background: #323232;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

.footer-tagline {
  color: #01B1AF;
  font-family: 'Racing Sans One', cursive;
  font-style: normal;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-contact {
  font-family: 'Sarpanch', sans-serif;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #01B1AF;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: opacity 0.3s;
}

.footer-social a:hover img {
  opacity: 0.7;
}

.back-to-top {
  font-family: 'Sarpanch', sans-serif;
  display: inline-block;
  margin-bottom: 15px;
  color: #01B1AF;
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.8rem;
  color: #888;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .site-header {
    position: relative;
  }

  .header-right {
    flex: 1;
    flex-wrap: wrap;
    padding-left: 10px;
    gap: 5px;
    min-width: 0;
  }

  .tagline {
    font-size: 0.9rem;
    max-width: 160px;
    flex-shrink: 1;
  }

  .nav-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #F1F1F1;
  }

  .main-nav.open ul {
    display: flex;
  }

  .logo img {
    height: 50px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero img {
    height: 250px;
  }

  .pizza-grid {
    grid-template-columns: 1fr;
  }

  .build-your-own {
    grid-template-columns: 1fr;
  }

  .team-members {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .story-about-inner {
    grid-template-columns: 1fr;
  }

  .story-about-left {
    text-align: center;
  }

  .story-about-left img {
    max-width: 300px;
    margin: 0 auto;
  }

  .story-hero-images {
    min-height: auto;
  }

  .story-overlay-right,
  .story-overlay-left {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    margin-top: 15px;
  }


  .visit-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 15px;
  }

}

@media (max-width: 600px) {
  .pizza-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
