/*----------------------------------------
  Variables & Base Styles
----------------------------------------*/
:root {
  --primary-color: #e94e1b;
  --secondary-color: #1c4587;
  --accent-color: #ffd700;
  --text-color: #333333;
  --text-light: #777777;
  --bg-color: #fff8e6;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray: #dddddd;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --section-padding: 80px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
  margin-top: 0;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/*----------------------------------------
  Utility Classes
----------------------------------------*/
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

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

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-divider {
  height: 3px;
  width: 80px;
  background-color: var(--accent-color);
  margin: 0 auto;
  display: none; /* Hide as we're using ::after on title instead */
}

/*----------------------------------------
  Header & Navigation
----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

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

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

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  object-fit: cover;
}

.logo-text {
  margin-left: 15px;
}

.logo-text h1 {
  font-size: 1.8rem;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.scrolled .logo-text h1 {
  color: var(--primary-color);
  text-shadow: none;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 5px;
}

.nav-link {
  display: block;
  padding: 8px 15px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.scrolled .nav-link {
  color: var(--text-color);
}

.nav-link:hover, 
.scrolled .nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-button {
  display: block;
  padding: 8px 18px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.scrolled .mobile-menu-toggle span {
  background-color: var(--text-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*----------------------------------------
  Hero Section
----------------------------------------*/
.hero {
  height: 100vh;
  min-height: 600px;
  background: url('https://images.unsplash.com/photo-1579027989536-b7b1f875659b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
}

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

/*----------------------------------------
  Specialties Section
----------------------------------------*/
.specialties {
  padding: var(--section-padding);
  background-color: var(--white);
}

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

.specialty-item {
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background-color: var(--white);
  transition: var(--transition);
}

.specialty-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.specialty-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.specialty-item p {
  color: var(--text-light);
}

/*----------------------------------------
  About Section
----------------------------------------*/
.about {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.chef-signature {
  margin-top: 30px;
  max-width: 150px;
}

/*----------------------------------------
  Menu Section - Improved Styling
----------------------------------------*/
.menu {
  padding: var(--section-padding);
  background-color: var(--white);
}

.menu-header {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.menu-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

/* Menu Tabs - Improved Style */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
}

.menu-tabs::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray), transparent);
}

.menu-tab {
  padding: 12px 25px;
  background-color: var(--gray-light);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.menu-tab:hover::before {
  width: 100%;
}

.menu-tab:hover {
  color: white;
}

.menu-tab.active {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(233, 78, 27, 0.3);
}

.menu-tab.active::before {
  width: 100%;
}

/* Menu Content */
.menu-category {
  display: none;
  animation: fadeEffect 0.5s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-category.active {
  display: block;
}

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

.menu-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-item-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-image::after {
  opacity: 1;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--gray);
  padding-bottom: 10px;
}

.menu-item-title {
  font-size: 1.3rem;
  margin: 0;
  color: var(--secondary-color);
}

.price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(233, 78, 27, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
}

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

/*----------------------------------------
  Gallery Section
----------------------------------------*/
.gallery {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

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

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-info {
  color: var(--white);
}

.gallery-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
}

.gallery-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/*----------------------------------------
  Testimonials Section
----------------------------------------*/
.testimonials {
  padding: var(--section-padding);
  background-color: var(--white);
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fade 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {opacity: 0.3}
  to {opacity: 1}
}

.testimonial-content {
  padding: 30px;
  border-radius: var(--border-radius);
  background-color: var(--gray-light);
  box-shadow: var(--shadow);
  margin: 20px;
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.prev-btn, .next-btn {
  padding: 10px 15px;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Styles pour la section contact */
.contact {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Organisation principale en deux parties */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Partie supérieure: cartes d'information */
.contact-info-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: var(--gray-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-card h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.btn-call {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
}

.btn-call:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Table d'horaires */
.hours-card {
    grid-column: span 2;
}

.hours-table {
    margin-top: 15px;
}

.hours-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
}

.hours-table th, 
.hours-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.1);
}

.hours-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.hours-table td:first-child {
    font-weight: 600;
    text-align: left;
}

.hours-table .closed {
    background-color: #f8d7da;
    color: #721c24;
    font-style: italic;
}

/* Partie inférieure: formulaire et carte */
.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Formulaire de contact */
.contact-form-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-container h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.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 rgba(233, 78, 27, 0.1);
}

.form-check {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-check label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.honeypot-field {
    display: none;
    position: absolute;
    left: -9999px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit button {
    width: 100%;
    padding: 12px;
    cursor: pointer;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

small {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Google Maps */
.contact-map {
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Styles responsifs */
@media (max-width: 992px) {
    .contact-form-map {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 350px;
    }
    
    .hours-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left center;
    }
}

@media (max-width: 480px) {
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: left center;
    }
}
/*----------------------------------------
  Footer
----------------------------------------*/
.footer {
  background: linear-gradient(to right, #1c4587, #2c5aa0);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/footer-pattern.png');
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 0;
}

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

.footer-column h3 {
  font-size: 1.6rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--accent-color);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px) rotate(10deg);
}

.social-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.facebook {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNNTA0IDBIOFYtM2g0OTZ2M3pNMTA4OHYtNTEySDgwdjUxMmgxMDA4ek00MjQgNzh2MzVoLTcwYy0xNCAwLTI5IDUtNDAgMTZjLTEwIDEwLTE2IDI2LTE2IDQydjI1NmMwIDUgMiA5IDYgMTNjNCAzIDggNSAxMyA1aDE2MGM0IDAgOS0yIDEyLTVjMy00IDUtOCA1LTEzdi0xNDBjMC01LTItOS01LTEzYy0zLTMtOC01LTEyLTVoLTYxVjIxOGg2MWM0IDAgOS0yIDEyLTVjMy00IDUtOCA1LTEzdi01OWMwLTI1IDktNDkgMjUtNjdjMTYtMTcgMzgtMjYgNjEtMjZoODNjNSAwIDktMiAxMi01YzQtNCA2LTggNi0xM1YtM2MwLTUtMi05LTYtMTNjLTMtMy03LTUtMTItNWgtOTZjLTQ2IDAtODkgMTgtMTIxIDUwYy0zMiAzMy01MCAxNy01MCA2M3oiLz48L3N2Zz4=');
}

.instagram {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMjI0IDcxYy01MyAwLTk3IDQzLTk3IDk3czQ0IDk2IDk3IDk2czk2LTQzIDk2LTk2cy00My05Ny05Ni05N3ptMCAxNTljLTM1IDAtNjMtMjgtNjMtNjNzMjgtNjMgNjMtNjNzNjMgMjggNjMgNjMtMjggNjMtNjMgNjN6bTEyMi0xNjVjMCAxMi0xMCAyMy0yMyAyM2MtMTIgMC0yMy0xMC0yMy0yM2MwLTEyIDEwLTIzIDIzLTIzYzEzIDAgMjMgMTAgMjMgMjN6bTYzIDI0Yy0xLTI3LTctNTEtMjctNzFjLTIwLTIwLTQ0LTI2LTcxLTI3Yy0yOC0yLTExMS0yLTEzOSAwYy0yNyAxLTUxIDctNzEgMjdjLTIwIDIwLTI2IDQ0LTI3IDcxYy0yIDI4LTIgMTExIDAgMTM5YzEgMjcgNyA1MSAyNyA3MWMyMCAyMCA0NCAyNiA3MSAyN2MyOCAyIDExMSAyIDEzOSAwYzI3LTEgNTEtNyA3MS0yN2MyMC0yMCAyNi00NCAyNy03MWMyLTI4IDItMTExIDAtMTM5em0tMzYgMTY5Yy02IDE1LTE3IDI2LTMyIDMyYy0yMiA5LTc0IDctOTggN2MtMjQgMC03NiAyLTk4LTdjLTE1LTYtMjYtMTctMzItMzJjLTktMjItNy03NC03LTk4YzAtMjQtMi03NiA3LTk4YzYtMTUgMTctMjYgMzItMzJjMjItOSA3NC03IDk4LTdjMjQgMCA3Ni0yIDk4IDdjMTUgNiAyNiAxNyAzMiAzMmM5IDIyIDcgNzQgNyA5OGMwIDI0IDIgNzYtNyA5OHoiLz48L3N2Zz4=');
}

.tripadvisor {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTQ5LjYgMjI0LjJjLTQyLjIgMC03Ni42IDM0LjUtNzYuNiA3Ni43IDAgNDIuMSAzNC40IDc2LjYgNzYuNiA3Ni42IDQyLjIgMCA3Ni43LTM0LjUgNzYuNy03Ni42IDAtNDIuMi0zNC41LTc2LjctNzYuNy03Ni43em0wIDEyOGMtMjguMyAwLTUxLjQtMjMtNTEuNC01MS4zIDAtMjguMyAyMy02NS4yIDUxLjQtNjUuMiAyOC4zIDAgNTEuMyAzNi45IDUxLjMgNjUuMiAwIDI4LjMtMjMgNTEuMy01MS4zIDUxLjN6bTM0MS42LTEyOGMtNDIuMiAwLTc2LjcgMzQuNS03Ni43IDc2LjcgMCA0Mi4xIDM0LjUgNzYuNiA3Ni43IDc2LjYgNDIuMiAwIDc2LjctMzQuNSA3Ni43LTc2LjYgMC00Mi4yLTM0LjUtNzYuNy03Ni43LTc2Ljd6bTAgMTI4Yy0yOC4zIDAtNTEuNC0yMy01MS40LTUxLjMgMC0yOC4zIDIzLTY1LjIgNTEuNC02NS4yIDI4LjMgMCA1MS4zIDM2LjkgNTEuMyA2NS4yIDAgMjguMy0yMyA1MS4zLTUxLjMgNTEuM3pNMzIwIDE1My40Yy03Ni43IDAtMTM5LjQgNjIuNy0xMzkuNCAxMzkuNCAwIDc2LjcgNjIuNyAxMzkuMyAxMzkuNCAxMzkuMyA3Ni42IDAgMTM5LjMtNjIuNiAxMzkuMy0xMzkuM0M0NTkuMy0wIDM5Ni42IDAgMzIwIDB6bTAgMjYzYy02OC4yIDAtMTIzLjctNTUuNU0yMC40IDEyNy40YzI1LjQtNC40IDUxLjctOC4xIDc4LjktMTAuOEMzNC45LTE2LjgtMS0uOCAwIDY0LjMuMSAxMzAuNiA3NC43IDEzMSA0OS44IDEzMS44YzEuMSAwIDIuMiAwIDMuMyAwIDM5LjggMCA3Mi45LTI3LjYgNzkuNi02NC41IDMyIC4xIDY0LjkgMS40IDk3LjQgNC4zbDUgMSAxNC45LTE5LjlDMzA2LjQgMjQuMiAzNjIuOS0wIDQyMy4zIDAgNDUxLjQgMCA0ODIuNyAxMC40IDUxMi44IDM0bDE1LjUgMTIuMiA1LTEuMWMzMi40LTYuOS02NC44LTMuNyA4OC45LTMuN0w1OTkuOCAxOGMtNDEuOCA2OS42LTYwLjIgMTE1LjYtNjUuNSAxMjUuNWw1LTEuMWM5LjItMS45IDM4LjUtNy41IDU4LjUtMTQuOGwtOC42IDEwLjVMMzIwIDM0Ny42TDQ5IDEyOC4yYzIyLjQtMi4xIDQ0LjMtMi4yIDYyLjItMi4yIDIyLjYgMCAzNy4yIDE0LjgiLz48L3N2Zz4=');
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.opening-hours li:last-child {
  border-bottom: none;
}

.opening-hours span {
  font-weight: 600;
  color: var(--accent-color);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
  background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/*----------------------------------------
  Back to Top Button
----------------------------------------*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/*----------------------------------------
  Responsive Design
----------------------------------------*/
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-map {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 10px 0;
  }
  
  .nav-link {
    color: var(--text-color);
    padding: 10px 15px;
  }
  
  .nav-button {
    text-align: center;
    margin-top: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .opening-hours li {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    max-width: 350px;
    margin: 20px auto 0;
  }
  
  .back-to-top {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .specialty-item {
    padding: 30px 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .menu-tabs {
    gap: 5px;
  }
  
  .menu-tab {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Menu pages specific styles */
#menu-page .section-header {
  margin-top: 120px;
}

#menu-page .section-title {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 1rem;
}

#menu-page .section-divider {
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
  margin-bottom: 30px;
}

/* Menu tabs container */
.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 5px;
}

/* Menu tab buttons */
.tab-button {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background-color: #e0e0e0;
}

.tab-button.active {
  background-color: var(--primary-color);
  color: white;
}

/* Menu tab content */
.tab-content {
  display: none;
  padding: 20px;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.menu-item-large {
  display: flex;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.menu-item-image-large {
  flex: 1;
  max-width: 300px;
}

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

.menu-item-details {
  flex: 2;
  padding: 20px;
}

.menu-item-title-large {
  margin: 0 0 10px 0;
  color: var(--secondary-color);
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.menu-item-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.menu-item-ingredients {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .menu-item-large {
    flex-direction: column;
  }
  
  .menu-item-image-large {
    max-width: none;
    height: 200px;
  }
}

/* Custom error pages */
.error-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-color);
}

.error-content {
  max-width: 600px;
  padding: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.error-title {
  font-size: 8rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
}

.error-message {
  font-size: 1.5rem;
  margin: 20px 0;
  color: var(--secondary-color);
}

.error-text {
  margin-bottom: 30px;
  color: #666;
}

.error-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 0.8s ease-in-out;
}

.slide-down {
  animation: slideDown 0.8s ease-in-out;
}

.slide-left {
  animation: slideLeft 0.8s ease-in-out;
}

.slide-right {
  animation: slideRight 0.8s ease-in-out;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Additional custom styles for the menu section */
.menu-section {
  margin-bottom: 60px;
}

.menu-section-title {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--gray);
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dotted var(--gray);
}

.menu-item-row:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: 600;
  color: var(--text-color);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

.menu-item-price-row {
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 20px;
}

/* Special menu highlight */
.menu-highlight {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--accent-color);
  padding: 15px;
  margin: 30px 0;
  position: relative;
}

.menu-highlight::before {
  content: 'Recommandé';
  position: absolute;
  top: -10px;
  left: 20px;
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 2px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 3px;
}

.menu-highlight .menu-item-row {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Print styles */
@media print {
  header, footer, .back-to-top, .hero, .specialties, .gallery, .testimonials {
    display: none !important;
  }
  
  .menu, .contact, .about {
    padding: 20px 0;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
  
  body, html {
    background-color: white;
    font-size: 12pt;
  }
  
  .menu-tab {
    display: none;
  }
  
  .menu-category {
    display: block !important;
    page-break-inside: avoid;
    margin-bottom: 30px;
  }
  
  .menu-item {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
  
  .section-title {
    font-size: 18pt;
  }
  
  .section-divider {
    display: block;
    margin-bottom: 20px;
  }
}
/* Menu List View */
.menu-list-view {
  max-width: 900px;
  margin: 0 auto;
}

.menu-category-list {
  display: none;
  padding: 20px 0;
}

.menu-category-list.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.menu-category-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed var(--gray);
}

.menu-list-item:last-child {
  border-bottom: none;
}

.menu-list-item-details {
  flex: 1;
}

.menu-list-item-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.menu-list-item-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.menu-list-item-price {
  font-weight: 700;
  color: var(--primary-color);
  padding: 5px 12px;
  margin-left: 15px;
  background-color: rgba(233, 78, 27, 0.1);
  border-radius: 20px;
  white-space: nowrap;
}

.menu-view-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.view-toggle-btn {
  padding: 8px 15px;
  border: none;
  background-color: var(--gray-light);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-toggle-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.toggle-icon {
  font-size: 1.2rem;
}
/* CSS pour masquer le widget Google */
/* Ajoutez ce code à votre fichier CSS principal ou dans une balise <style> dans le head de votre page */

/* Option 1: Masquer spécifiquement la section Google Reviews */
.external-reviews, 
[id*="google-reviews"], 
.google-reviews, 
.review-widget,
h3:contains("Retrouvez tous nos avis sur Google"), 
h2:contains("Retrouvez tous nos avis sur Google"),
p:contains("Retrouvez tous nos avis sur Google") {
    display: none !important;
}

/* Option 2: Masquer avec plus de précision en ciblant la structure vue dans la capture d'écran */
h2:contains("Retrouvez tous nos avis sur Google"),
div:has(> img[alt="Avis Google"]),
div:has(> .review-count:contains("Basé sur 127 avis")),
.review-summary,
a:contains("Voir tous les avis") {
    display: none !important;
}

/* Option 3: Masquer le conteneur précis si vous connaissez son ID ou sa classe */
#google-reviews-container,
.google-reviews-section,
section:has(h2:contains("Retrouvez tous nos avis")),
div:has(> h2:contains("Retrouvez tous nos avis")) {
    display: none !important;
}

/* Cette option plus radicale masque tout après la section témoignages et avant la section contact */
section.testimonials ~ div:not(#contact):not(.contact),
section.testimonials ~ section:not(#contact):not(.contact) {
    display: none !important;
}

<style>
.menu-item-image {
  position: relative;
  overflow: hidden;
}

.placeholder-notice {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  z-index: 10;
}

/* Cette règle est cruciale - elle affiche la notice uniquement pour les images avec placeholder */
.has-placeholder .placeholder-notice {
  display: block !important; /* !important pour s'assurer qu'aucune autre règle ne masque la notice */
}

/* Styles spécifiques pour mobile */
@media (max-width: 768px) {
  .placeholder-notice {
      padding: 6px;
      font-size: 11px;
  }
}

@media (max-width: 480px) {
  .placeholder-notice {
      padding: 4px;
      font-size: 10px;
  }
  .contact-form-container {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}

.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 rgba(233, 78, 27, 0.1);
}

.form-check {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.honeypot-field {
  display: none;
  position: absolute;
  left: -9999px;
}

.form-submit {
  margin-top: 10px;
}

.form-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: var(--border-radius);
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 20px;
  }
}
/* Ajoutez ceci à votre fichier CSS */
.g-recaptcha {
  margin: 10px 0;
}

/* Style pour le responsive */
@media (max-width: 768px) {
  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left center;
  }
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.8);
    transform-origin: left center;
  }
}
}
/* Indicateur de chargement pour le formulaire */
.loading-indicator {
  text-align: center;
  padding: 10px;
  color: var(--secondary-color);
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
  margin-top: 15px;
}

/* Pour indiquer les champs en erreur */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff3b30;
  background-color: rgba(255, 59, 48, 0.05);
}