/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* ================= VARIABLES ================= */
:root {
  --primary: #0f4c75;
  --secondary: #f4a261;
  --dark: #1a1a1a;
  --light: #f7f7f7;
  --max-width: 1100px;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo img { height: 80px; }

/* ================= NAV ================= */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary);
}

/* Mobile nav */
#nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  position: relative;
}

#nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ================= HERO SLIDESHOW ================= */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: #fff;
  animation: heroSlider 24s infinite;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero h1 span { color: var(--secondary); }

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Slideshow 4 images */
@keyframes heroSlider {
  0%, 25% {
    background-image: url("images/hero-1.jpg");
  }
  26%, 50% {
    background-image: url("images/hero-2.jpg");
  }
  51%, 75% {
    background-image: url("images/hero-3.jpg");
  }
  76%, 100% {
    background-image: url("images/hero-4.jpg");
  }
}

/* ================= BUTTON ================= */
.btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn.ghost {
  background: transparent;
  border: 2px solid #fff;
}

/* ================= SECTIONS ================= */
.section {
  padding: 70px 0;
}

.section.alt { background: var(--light); }

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary);
  animation: fadeUp 0.8s ease both;
}

/* ================= CARDS ================= */
.cards, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card, .service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  animation: fadeUp 0.8s ease both;
}

.card img, .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body, .service-card p {
  padding: 20px;
}

/* ================= SERVICES ROW ================= */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  animation: fadeUp 0.8s ease both;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 350px;
}

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

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

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

.service-text p,
.service-text ul {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-text ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.service-text ul li::before {
  content: "â";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ================= CAROUSEL SLIDER ================= */
.image-carousel {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f0f0;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  animation: zoomIn 0.8s ease both;
}

/* ================= CONTACT SECTION ================= */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  animation: fadeUp 0.8s ease both;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

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

.text-small {
  font-size: 0.85rem;
  color: #666;
}

/* ================= RESERVATION SECTION ================= */
.section-intro {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.reservation-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.reservation-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.reservation-form h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.required {
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.form-note {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid var(--secondary);
  border-radius: 4px;
  font-size: 0.9rem;
  color: #555;
}

.reservation-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-box h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.info-box p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.info-box ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.info-box ul li::before {
  content: "â";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.btn.wide {
  width: 100%;
  text-align: center;
  padding: 14px 22px;
}

/* ================= MAP ================= */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-top: 30px;
}

/* ================= RESPONSIVE ================= */
.site-footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--secondary);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

  .main-nav {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    background: #fff;
    width: 220px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 0 0 0 10px;
  }

  .main-nav.open { 
    display: block; 
  }

  .main-nav ul {
    flex-direction: column;
    padding: 15px 0;
    margin: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #eee;
  }

  .main-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: #f0f0f0;
    color: var(--primary);
  }

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

  .service-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .service-img,
  .image-carousel {
    height: 250px;
  }

  .service-text h3 {
    font-size: 1.5rem;
  }

  .reservation-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    padding: 25px;
  }

  .info-box {
    padding: 20px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 25px;
  }

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

  .section-title {
    font-size: 1.6rem;
  }
}

.google-reviews {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.google-reviews h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.google-reviews p {
  color: #555;
  margin-bottom: 25px;
  font-size: 16px;
}

.review-btn {
  background: #f4a261;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #e8934e;
}

.review-btn a {
  color: #fff;
  text-decoration: none;
}


/* ===============================
   SOCIAL ICONS – SMALL SIZE
================================ */

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;       /* 🔽 plus petit */
  height: 28px;      /* 🔽 plus petit */
  border-radius: 50%;
  background-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-links img {
  width: 16px;       /* 🔽 icône réelle */
  height: 16px;
  display: block;
}

/* Footer uniquement */
.site-footer .social-links {
  justify-content: center;
}

/* Header (si utilisé sur fond sombre) */
.site-header .social-links img {
  filter: invert(1);
}

/* Mobile */
@media (max-width: 768px) {
  .social-links a {
    width: 26px;
    height: 26px;
  }

  .social-links img {
    width: 15px;
    height: 15px;
  }
}


