/*
* Template Name: Fizza
* Template URL: https://fspizza.fr
* Updated: July 07 2025
* Author: Raymond K. Selom TAY
*/

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff8f0;
  color: #333;
  scroll-behavior: smooth;
}

.header {
  position: sticky;
  top: 0;
  background: #000;
  color: white;
  padding: 15px 0;
  z-index: 1000;
}

.logo {
  font-family: 'Lobster', cursive;
  font-size: 30px;
  text-align: center;
}

.orange {
  color: #ff6f00;
}

.navmenu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 10px 0 0;
  gap: 20px;
}

.navmenu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
}

.navmenu a:hover {
  color: #ff6f00;
}


.section {
  padding: 40px 20px;
  text-align: center;
}
.about-section {
  padding: 60px 30px;
  background-color: #fff;
  color: #333;
}

.about-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: orange;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.about-text ul {
  padding-left: 0;
  list-style: none;
}

.about-text li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.about-text li i {
  color: orange;
  margin-right: 10px;
  font-size: 1.2em;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-columns {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
}

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

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.menu-item p {
  margin-top: 10px;
  font-weight: bold;
}

.form-section .form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.form-image {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

.custom-input {
	width: 100%;
	padding: 10px 15px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #fff;
	color: #333
}
	
.reservation-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reservation-form input,
.reservation-form textarea,
.reservation-form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.reservation-form button {
  background-color: #ff6f00;
  color: white;
  border: none;
  cursor: pointer;
}

.reservation-form button:hover {
  background-color: #e65c00;
}

.checkbox-group {
  display: flex;
  justify-content: space-between;
}

.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 15px 0;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  background-color: #ff6f00;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}

.contact-form button:hover {
  background-color: #e65c00;
}

.contact-infos {
  flex: 1;
  min-width: 200px;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
  }
}

<script>
  document.querySelectorAll('.toggle-dropdown').forEach(function(toggle) {
    toggle.addEventListener('click', function (e) {
      e.preventDefault();
      this.parentElement.nextElementSibling.classList.toggle('open');
    });
  });
</script>

/* HEADER GENERAL */
header.header {
  background-color: #000; /* fond noir */
  padding: 20px 0;
  border-bottom: 5px solid transparent;
  border-image: linear-gradient(to right, green, white, red); /* Tricolore italien */
  border-image-slice: 1;
}

/* LOGO */
/* Rend le header toujours visible en haut */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000; /* noir ou toute autre couleur de fond */
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* ombre discrète */
}

/* Centrage du contenu */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style du logo */
.logo-img {
  height: 100px;
  object-fit: contain;
}
.hero,
section:first-of-type {
  margin-top: 3px; /* adapte selon la hauteur de ton header */
}

/* NAVIGATION */
.navmenu ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navmenu ul li a.nav-link {
  color: white;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.navmenu ul li a.nav-link:hover {
  color: #ff6f00; /* orange au survol */
}

.navmenu ul li a.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  margin-top: 7px;
  background: linear-gradient(to right, green, white, red); /* soulignement italien */
  transition: width 0.3s;
}

.navmenu ul li a.nav-link:hover::after {
  width: 100%;
}

/* BOUTON "TRAITEUR" */
.btn-getstarted {
  background-color: #ff6f00;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-getstarted:hover {
  background-color: #e65c00;
}

.logo-img {
  height: 60px;
  object-fit: contain;
}
.hero {
  background-image: url("../img/hero-bg.jpg"); /* image background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.btn-hero {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: orange;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* filtre noir transparent */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 10px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ddd;
}

.btn-hero {
  background-color: #ff6f00;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.testimonials {
  background: #fff;
  padding: 60px 0;
}

.testimonial-box {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid orange;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #333;
}

.testimonial-content h3 {
  margin-top: 10px;
  color: #e74c3c;
}

.testimonial-content h4 {
  font-size: 0.9rem;
  color: #888;
}

.stars i {
  color: #f39c12;
}

@media (max-width: 768px) {
  .testimonial-box {
    flex-direction: column;
    text-align: center;
  }
}
.events {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.event-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-card .overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 20px;
  color: #fff;
  width: 100%;
  text-align: center;
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: orange;
}

.event-card p {
  font-size: 1rem;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .event-card {
    height: 250px;
  }
}

.footer-section {
  background-color: #000;
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 40px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-left {
  padding-right: 30px;
}

.footer-center-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact,
.footer-hours {
  flex: 1;
  min-width: 160px;
}

.footer-left h4,
.footer-contact h4,
.footer-hours h4,
.footer-right h4 {
  color: #FFA500;
  margin-bottom: 10px;
}

.footer-nav {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 20px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #FFA500;
}

.social-icons a {
  font-size: 30px;
  color: white;
  margin-right: 12px;
  transition: transform 0.2s;
}

.social-icons a:hover {
  color: #FFA500;
  transform: scale(1.2);
}
.custom-input {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
}
.phone-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-button {
  background-color: #e74c3c; /* rouge/orange */
  color: white;
  font-size: 24px;
  padding: 16px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.phone-button:hover {
  background-color: #c0392b;
  text-decoration: none;
}

.phone-tooltip {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  margin-top: 8px;
  font-size: 14px;
  white-space: nowrap;
  animation: slideInUp 0.4s ease-in-out;
}

/* Animation d’apparition */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.g-recaptcha {
  margin: 1rem auto;
  display: flex;
  justify-content: center;
}
.stats {
	position: relative;
	background-color: #111;
	color: #fff;
	background-blend-mode: overlay;
}

.stats .stats-item 	{
	background: rgba(0, 0, 0, 0.6);
	padding: 30px 15px;
	border-radius: 10px;
	transition: transform 0.3s ease-out;
}

.stats .stats-item:hover  {
	transform: scale(1.05);
}

.stats .stats-item span {
	font-size: 40px;
	font-weight: bold;
	display: block;
} 	

.stats .stats-item p {
	margin-top: 10px;
	font-size: 18px;
}	
	
.food-icon {
	width: 30px;
	height: 30px;
	margin-left: 10px;
	transition: transform 0.3s ease;
	filter: brightness(0) invert (1); /* blanc sur fond sombre */
}	

.food-icon:hover {
	transform: scale(1.1);
	filter: brightnes(1) invert(0); /* effet hover simple */
} 
/* why us */
.bg-orange {
	background-color: #ff6f00;
}

.fs-orange {
	color: #ff6f00;
}

.why-box h4, .why-box h5 {
	font-weight: 700;
}

.why-box h3 {
	font-weight: 700;
	color: #ff6f00;
}

.why-box p {
	font-size: 15px;
}

.why-box i {
	display: block;
}

.more-btn {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* Structure principale */
.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 20px;
  color: #fff;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Menu normal */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive : cacher le menu sur petit écran */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000;
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

	<style>
    body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
    #gallery { background-color: #fff; padding: 60px 0; text-align: center; }
    .section-title { font-size: 2rem; margin-bottom: 20px; color: #333; }
    .gallerySwiper { padding-top: 20px; }
    .gallerySwiper .swiper-slide {
      width: auto;
      max-width: 300px;
      border-radius: 10px;
      overflow: hidden;
    }
    .gallerySwiper img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      object-fit: cover;
    }
	</style>	
	
	/* Style de base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 10px 20px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li a {
  padding: 10px 15px;
  text-decoration: none;
}

/* Masquer le bouton burger sur grand écran */
.burger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}


  /* Affichage quand menu actif */
  .nav-links.active {
    display: flex;
  }


/* Style du conteneur */
.navmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 20px;
}

/* Style du burger */
.burger {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none; /* caché par défaut */
}

/* Liste horizontale (desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive - petit écran */
@media screen and (max-width: 768px) {
  .burger {
    display: block; /* bouton visible */
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    overflow: hidden;

    /* Effet slide */
    max-height: 0;
    transition: max-height 0.4s ease-out;
  }

  .nav-links.show {
    max-height: 500px; /* grande valeur pour "dérouler" */
    transition: max-height 0.4s ease-in;
  }
}

.hero1 {
  background-image: url("../img/pizza-artisanale.jpg"); /* image background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
} 
 
 .hero-contenu {
  z-index: 2;
  position: center;
}

.hero-contenu p {
  font-size: 30px;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-contenu h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}
.hero1::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* filtre noir transparent */
  z-index: 1;
}