body {
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Colors and backgrounds */
.bg-orange {
  background-color: #f37020 !important;
}
.btn-orange {
  background-color: #f37020;
  color: #fff;
  border: none;
  transition: background 0.15s;
}
.btn-orange:hover {
  background-color: #cf580b;
  color: #fff;
}

/* Hero */
.hero-section {
  height: 420px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.hero-bg {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0; left: 0; z-index: 1;
}
.hero-overlay {
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 30px;
}
.presentation-box {
  max-width: 720px;
}
.site-logo {
  height: 54px;
}

/* Footer */
.footer-bar {
  font-size: 0.95em;
  border-top: 1px solid #fff2;
}

@media (max-width: 991px) {
  .hero-section {
    height: 340px;
  }
}
@media (max-width: 700px) {
  .hero-section .display-5 {
    font-size: 1.6rem;
  }
  .presentation-box {
    font-size: 1rem;
  }
  .site-logo {
    height: 38px;
  }
}
/* Brunch table custom */
.brunch-table {
  background: #f7f6ef;
  border-radius: 8px;
  margin-top: 16px;
  box-shadow: 0 2px 12px rgba(158,135,50,0.03);
}
.brunch-table td {
  vertical-align: middle;
  border: none;
  padding: 18px 16px;
  font-size: 1em;
}
.brunch-table tr + tr td {
  border-top: 1px solid #e0d9c4;
}
.display-5 {
  font-size: 2.2rem;
}
@media (max-width: 700px) {
  .brunch-table td {
    font-size: 0.98em;
    padding: 14px 8px;
  }
  .display-5 {
    font-size: 1.15rem;
  }
}
.google-map-container {
  width: 100%;
  min-height: 250px;
  background: #ddd;
  border: 1px solid #cbc3a9;
  border-radius: 4px;
  overflow: hidden;
}
.contact-form .custom-input,
.contact-form textarea.form-control {
  border: 1px solid #f37020;
  border-radius: 2px;
  background: #fffbe6;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 8px;
}
.contact-form .custom-input::placeholder,
.contact-form textarea.form-control::placeholder {
  color: #86754d;
  opacity: 1;
}
.contact-form .custom-input:focus,
.contact-form textarea.form-control:focus {
  border-color: #cf580b;
  box-shadow: 0 0 0 2px #f3702011;
}
.carte-img {
  border: 3px solid #fff;
}

.link-orange {
  color: #f37020;
  text-decoration: underline;
}
.link-orange:hover {
  color: #cf580b;
}
