/* Load Custom Fonts */
@font-face {
  font-family: 'Bonitto';
  src: url('fonts/Bonitto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyriadPro';
  src: url('fonts/MyriadPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'MyriadPro', sans-serif;
  color: #fff;
}

  /* Basic header styles */
  .site-header {
    background-color: #ffffff;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }

  .logo img {
    max-height: 80px;
    width: auto;
  }

  /* Navigation menu styles */
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover {
    color: #888888;
  }

  /* Toggle button - hidden on desktop */
  .nav-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Responsive styles */
  @media (max-width: 992px) {
    /* Show toggle button */
    .nav-toggle {
      display: block;
    }

    /* Style nav-menu as dropdown */
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      z-index: 999;
    }

    /* Menu open state */
    .nav-menu.open {
      max-height: 500px; /* Enough height to show all items */
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0;
      margin: 0;
    }

    .nav-menu ul li {
      border-bottom: 1px solid #eee;
    }

    .nav-menu ul li a {
      display: block;
      padding: 15px 20px;
      font-size: 18px;
    }
  }


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Always take full viewport height */
  background: url('New Img/_DSC0076.jpg') center top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* CONTENT */
.hero-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.logo {
  width: 200px;
  max-width: 80%;
  margin-bottom: 20px;
}

.slogan {
  font-family: 'Bonitto', serif;
  font-size: 3rem;
  line-height: 1.2;
  max-width: 90%;
  margin: 0 auto;
  color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .slogan {
    font-size: 2.2rem;
  }

  .logo {
    width: 160px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .slogan {
    font-size: 1.6rem;
    padding: 0 15px;
  }

  .logo {
    width: 140px;
  }
}



/* EVENTS SECTION */
.events-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-family: 'Bonitto', serif;
  margin-bottom: 40px;
  color: #333;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.event-card {
  position: relative;
  width: 260px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
}

.event-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 10px 15px;
  transition: color 0.3s ease-in-out;
}

.event-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: 'Bonitto', serif;
}

.event-content p {
  font-size: 0.95rem;
  font-family: 'MyriadPro', sans-serif;
  opacity: 0;                 
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
  .events-grid {
    gap: 16px;
  }

  .event-card {
    width: 45%;
    height: 200px;
  }

  .event-content h3 {
    font-size: 1.2rem;
  }

  .event-content p {
    font-size: 0.85rem;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .events-grid {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    width: 90%;
    height: 180px;
  }

  .event-content h3 {
    font-size: 1.1rem;
  }

  .event-content p {
    font-size: 0.8rem;
  }
}


/* Hover Effect */
.event-card:hover {
  background-image: none;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.event-card:hover::before {
  background-color: transparent;
}

.event-card:hover .event-content {
  color: #000;
}

.event-card:hover .event-content p {
  opacity: 1;
  max-height: 100px;
}

.event-card:hover {
  background-image: none !important;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* WHAT WE OFFER SECTION */
.offer-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-family: 'Bonitto', serif;
  color: #000;
  margin-bottom: 50px;
}

.offer-container {
  max-width: 1100px;         
  margin: 0 auto;            
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;   
}

.offer-box {
  background-color: #fff;
  border: 1px solid #000;
  padding: 25px 20px;
  width: 320px;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.15s ease-in-out; 
}

.offer-box:hover {
  background-color: #000;
  color: #fff;
}

.offer-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: none; 
}

.offer-box h3 {
  font-family: 'Bonitto', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #000;
  transition: color 0.15s ease-in-out;
}

.offer-box:hover h3 {
  color: #fff;
}

.offer-box p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  transition: color 0.15s ease-in-out;
}

.offer-box:hover p {
  color: #ddd;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
  .offer-container {
    gap: 30px;
  }

  .offer-box {
    width: 45%;
    padding: 20px 16px;
  }

  .offer-box img {
    height: 160px;
  }

  .offer-box h3 {
    font-size: 1.3rem;
  }

  .offer-box p {
    font-size: 0.9rem;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .offer-container {
    flex-direction: column;
    align-items: center;
  }

  .offer-box {
    width: 90%;
    padding: 20px 16px;
  }

  .offer-box img {
    height: 150px;
  }

  .offer-box h3 {
    font-size: 1.2rem;
  }

  .offer-box p {
    font-size: 0.85rem;
  }
}


/* WHY PIZZA PRO – STORY SECTION */
.why-story-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.why-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.why-story-image {
  flex: 1 1 50%;
}

.why-story-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* TEXT CONTENT */
.why-story-content {
  flex: 1 1 50%;
}

.why-story-content h2 {
  font-family: 'Bonitto', serif;
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 25px;
}

.why-story-content p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* TABLET */
@media (max-width: 1024px) {
  .why-story-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-story-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .why-story-content {
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .why-story-section {
    padding: 60px 16px;
  }

  .why-story-content h2 {
    font-size: 1.7rem;
  }

  .why-story-content p {
    font-size: 0.95rem;
  }

  .why-story-image img {
    border-radius: 12px;
  }
}



/* FROM SETUP TO SLICE SECTION */
.setup-section {
  background-color: #fff;
  padding: 80px 20px;
}

.setup-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* fixes height imbalance */
  gap: 40px;
}

/* LEFT: IMAGE ROW */
.setup-gallery {
  flex: 1;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1; /* keeps images square */
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* RIGHT: TEXT */
.setup-text {
  flex: 1;
}

.setup-text h2 {
  font-family: 'Bonitto', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.setup-text p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.setup-text ul {
  list-style: none;
  padding-left: 0;
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  color: #222; /* emojis stay normal color */
}

.setup-text ul li {
  margin-bottom: 12px;
}

/* TABLET */
@media (max-width: 1024px) {
  .setup-container {
    flex-direction: column;
    text-align: center;
  }

  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .setup-text h2 {
    font-size: 1.8rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    aspect-ratio: 16 / 10;
  }

  .setup-text h2 {
    font-size: 1.6rem;
  }

  .setup-text p,
  .setup-text ul {
    font-size: 0.95rem;
  }
}



/* MEET OUR CHEF SECTION */
.chef-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 100px 0;
  position: relative;
}

.chef-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.chef-image {
  flex: 1 1 50%;
  padding: 0 30px;
}

.chef-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 700px;
}

/* OVERLAPPING TEXT BOX */
.chef-text-box {
  flex: 1 1 50%;
  background-color: white;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-left: -100px;
  z-index: 2;
  position: relative;
  border-radius: 12px;
}

.chef-text-box h2 {
  font-family: 'Bonitto', serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #000;
}

.chef-text-box p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* Tablet and smaller */
@media (max-width: 1024px) {
  .chef-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .chef-image,
  .chef-text-box {
    flex: 1 1 100%;
    padding: 20px;
    text-align: center;
  }

  .chef-text-box {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .chef-text-box h2 {
    font-size: 2rem;
  }

  .chef-text-box p {
    font-size: 0.95rem;
  }

  .chef-image img {
    max-height: 500px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .chef-section {
    padding: 60px 0;
  }

  .chef-text-box h2 {
    font-size: 1.6rem;
  }

  .chef-text-box p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .chef-image img {
    max-height: 400px;
  }
}


/* MENU SECTION */
.menu-section {
  background-color: #f5f5f5;
  padding: 100px 20px;
  text-align: center;
}

.menu-container {
  max-width: 800px;
  margin: 0 auto;
}

.menu-section h2 {
  font-family: 'Bonitto', serif;
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 20px;
}

.menu-section p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 35px;
}

/* FULL BACKGROUND IMAGE WITH OVERLAY */
.menu-section {
  background-image: url('Pizza/close-up-person-cooking.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 400px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* DARK OVERLAY USING PSEUDO ELEMENT */
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 1;
}

/* TEXT + BUTTON ON TOP */
.menu-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.menu-content h2 {
  font-family: 'Bonitto', serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.menu-content p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 30px;
}

/* WHITE BUTTON */
.menu-btn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: 'MyriadPro', sans-serif;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.menu-btn:hover {
  background-color: #eaeaea;
  transform: translateY(-2px);
}

/* MENU SECTION RESPONSIVE */
@media (max-width: 768px) {
  .menu-section {
    height: auto;
    padding: 80px 20px;
  }

  .menu-content h2 {
    font-size: 2rem;
  }

  .menu-content p {
    font-size: 0.95rem;
  }

  .menu-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 60px 15px;
  }

  .menu-content h2 {
    font-size: 1.6rem;
  }

  .menu-content p {
    font-size: 0.9rem;
  }

  .menu-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}


/* QUOTE SECTION STYLING */
.quote-section {
  background-color: #fff;
  padding: 80px 0;
  font-family: 'MyriadPro', sans-serif;
}

.quote-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ededed;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-form {
  flex: 1;
  padding: 40px;
}

.quote-form h2 {
  font-family: 'Bonitto', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.quote-form p {
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.quote-form form {
  display: flex;
  flex-direction: column;
}

.quote-form label {
  margin: 12px 0 6px;
  font-weight: 600;
  color: #000;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-form button:hover {
  background-color: #333;
}

/* RIGHT SIDE IMAGE */
.quote-image {
  flex: 1;
  background-color: #000;
}

.quote-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top;
}

/* QUOTE SECTION RESPONSIVE */
@media (max-width: 992px) {
  .quote-container {
    flex-direction: column;
  }

  .quote-image img {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .quote-form {
    padding: 25px;
  }

  .quote-form h2 {
    font-size: 1.8rem;
  }

  .quote-form p {
    font-size: 0.95rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .quote-form button {
    font-size: 1rem;
    padding: 12px;
  }

  .quote-image img {
    height: 300px;
  }
}

/* QUOTE SECTION RESPONSIVE */
@media (max-width: 992px) {
  .quote-container {
    flex-direction: column;
  }

  .quote-image img {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .quote-form {
    padding: 25px;
  }

  .quote-form h2 {
    font-size: 1.8rem;
  }

  .quote-form p {
    font-size: 0.95rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .quote-form button {
    font-size: 1rem;
    padding: 12px;
  }

  .quote-image img {
    height: 300px;
  }
}


/* Pizza Gallery*/
.pizza-gallery-section {
  padding: 0 50px;
  text-align: center;
  margin: 80px 0;
}

.gallery-heading {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #000;
  font-weight: bold;
  font-family: 'Bonitto', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pizza-gallery {
  column-count: 4;
  column-gap: 20px;
}

.pizza-gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  display: block;
  break-inside: avoid;
}

.pizza-gallery img:hover {
  transform: scale(1.05) rotate(-1.5deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.pizza-gallery img.last-row1 {
  height: 325px; 
  object-fit: cover;
}

.pizza-gallery img.last-row2 {
  height: 445px; 
  object-fit: cover;
}

.pizza-gallery img.last-row3 {
  height: 640px; 
  object-fit: cover;
}

@media (max-width: 1200px) {
  .pizza-gallery {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .pizza-gallery {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .pizza-gallery {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  .slogan {
    font-size: 2rem;
    padding: 0 20px;
  }

  .logo {
    max-width: 150px;
  }

  .hero {
    height: auto;
    padding: 60px 0;
  }

  .hero-content {
    padding: 40px 20px;
  }
}

/* Footer Base Styles */
.site-footer {
  background-color: #111;
  color: white;
  padding: 40px 100px; /* Top/Bottom 40px, Left/Right 100px */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  text-align: center; /* Centers all text */
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-logo-text p {
  margin: 0 auto;
  max-width: 250px;
}

/* Quick Links list */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* Contact Section */
.footer-contact p,
.footer-contact a {
  color: white;
  text-decoration: none;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a img {
  width: 28px;
  margin: 0 6px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  color: white; /* ✅ Makes copyright white */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .site-footer {
    padding: 40px 50px; /* Reduce side padding for tablet */
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer {
    padding: 30px 20px; /* Reduce padding for mobile */
  }

  .footer-column {
    margin-bottom: 20px;
  }
}




