/*
Theme Name: Tigmi Blue
Theme URI: https://tigmiblue.com
Author: Tigmi Blue
Author URI: https://tigmiblue.com
Description: Auberge Tigmi Blue - Imsouane Surf et Océan. Thème surf, plage et art de vivre marocain.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: surf, beach, hostel, morocco, ocean, travel
Text Domain: tigmi-blue
*/

/* ==========================================================================
   CSS VARIABLES - BRAND IDENTITY
   ========================================================================== */
:root {
  --primary-blue: #1565C0;
  --primary-blue-hover: #0d47a1;
  --sky-blue: #E3F2FD;
  --sandy-beige: #F5E6C8;
  --white: #FFFFFF;
  --dark-text: #1A1A2E;
  --bg-color: #FAFAFA;
  --max-width: 900px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 120px;
}

/* ==========================================================================
   RESET & SETUP
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--dark-text);
  background-color: var(--bg-color);
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Subtle beach/ocean photograph on sides */
  background:
    linear-gradient(to right, rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)),
    url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1 {
  font-family: 'Pacifico', cursive;
  color: var(--primary-blue);
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

body,
p,
li {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-text);
}

.citation,
.tagline,
blockquote {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--primary-blue);
}

.site-main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

/* ==========================================================================
   TYPOGRAPHY & UTILS
   ========================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.reservationc {
	background: var(--sky-blue); 
	padding: 2rem; 
	border-radius: 12px; 
	margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-blue);
}

.text-dark {
  color: var(--dark-text);
}

.font-bold {
  font-weight: 700;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-4 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.section {
  padding: 3rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  margin: 2rem auto;
  max-width: var(--max-width);
  transition: var(--transition);
}

.section:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.section-alt {
  background-color: var(--sky-blue);
}

.section-warm {
  background-color: var(--sandy-beige);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary-blue);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(21, 101, 192, 0.3);
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(21, 101, 192, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue) !important;
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white) !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background-color: var(--white);
  width: 100%;
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  min-height: 120px;
}

.site-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-logo img {
  max-height: 200px;
}

.nav-bar {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-row li {
  position: relative;
}

.nav-row li a {
  color: var(--white);
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.5rem 0.75rem;
  display: block;
}

.nav-row li a:hover {
  color: var(--sandy-beige);
}

/* Bullet separators */
.nav-row-1 li::after,
.nav-row-2 li::after {
  content: '•';
  color: #ffffff;
  font-size: 0.8rem;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.nav-row-2 {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-social {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
}

.header-social a {
  color: var(--primary-blue);
  font-size: 1.25rem;
  transition: var(--transition);
}

.header-social a:hover {
  transform: translateY(-2px);
  color: var(--primary-blue-hover);
}

.header-lang {
  position: absolute;
  top: 1.5rem;
  right: 6.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  z-index: 1000;
  pointer-events: auto;
}

.lang-flag {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0.9;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.lang-flag:hover, .lang-flag.active {
  transform: scale(1.2) translateY(-2px);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-blue);
}

.lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-blue);
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

/* ==========================================================================
   PAGE: ACCUEIL (Homepage)
   ========================================================================== */
.hero-text {
  text-align: center;
  padding: 4rem 1.5rem;
  animation: fadeIn 1s ease-out;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.hero-text h1::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--sandy-beige);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--dark-text);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.image-strip {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.image-strip .strip-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  filter: brightness(0.9);
}

.image-strip .strip-img:hover {
  flex: 1.2;
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.quote-section {
  text-align: center;
  padding: 5rem 1.5rem;
}

.quote-section h2 {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--primary-blue);
  font-weight: 500;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.landscape-photo {
  width: 40%;
  /* prend 40% du main */
  height: 500px;
  /* ajuste si besoin */
  margin: 4rem auto;
  /* centre horizontalement */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  /* optionnel (plus propre) */
}

.description-text {
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--dark-text);
}

.description-text p {
  margin-bottom: 1.5rem;
}

.activities-list {
  text-align: center;
  padding: 4rem 1.5rem;
  background-color: var(--sky-blue);
  border-radius: 12px;
  margin: 4rem auto;
  max-width: var(--max-width);
}

.activities-list p {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   PAGE: LES CHAMBRES
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.room-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(21, 101, 192, 0.2);
}

.room-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.room-content {
  padding: 1.5rem;
}

.room-capacity {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: var(--sky-blue);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ==========================================================================
   PAGE: ACTIVITÉS
   ========================================================================== */
.activity-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.activity-section:nth-child(even) {
  flex-direction: row-reverse;
}

.activity-image {
  flex: 1;
  height: 350px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.activity-content {
  flex: 1;
}

.activity-content h3 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.activity-tag {
  background: var(--sky-blue);
  color: var(--primary-blue);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Activity Tabs */
.activity-tabs-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.activity-tabs {
  display: flex;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  gap: 0.5rem;
  border: 1px solid rgba(21, 101, 192, 0.1);
}

.tab-link {
  padding: 0.8rem 2rem;
  border: none;
  background: transparent;
  color: var(--dark-text);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.tab-link:hover {
  color: var(--primary-blue);
  background: rgba(21, 101, 192, 0.05);
}

.tab-link.active {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.tab-content {
  display: none;
  animation: fadeInTab 0.5s ease-out;
}

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

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

/* Mobile Responsiveness for Tabs */
@media (max-width: 768px) {
  .activity-tabs {
    flex-direction: column;
    border-radius: 12px;
    width: 100%;
    padding: 0.75rem;
  }
  
  .tab-link {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .activity-section {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .activity-image {
    width: 100%;
    height: 250px;
  }
}

/* ==========================================================================
   PAGE: TARIFS
   ========================================================================== */
.pricing-table-container {
  overflow-x: auto;
  margin-top: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table th:first-child {
  border-top-left-radius: 8px;
}

.pricing-table th:last-child {
  border-top-right-radius: 8px;
}

.pricing-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.pricing-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.pricing-table tr:hover td {
  background-color: #f9fbfd;
}

/* ==========================================================================
   PAGE: LIVRE D'OR
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: var(--sandy-beige);
  font-family: serif;
  opacity: 0.5;
}

.stars {
  color: #FFD700;
  margin-bottom: 1rem;
}

/* ==========================================================================
   FORMS (Contact & Bookings)
   ========================================================================== */
.custom-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-control {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #fdfdfd;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background-color: var(--white);
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.footer-social a:hover {
  color: var(--sandy-beige);
  transform: translateY(-3px);
}

.footer-info {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

.back-to-top {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

/* ==========================================================================
   FLOATING WIDGETS
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-in-out forwards;
}

/* ==========================================================================
   GALERIE & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(21, 101, 192, 0);
  transition: background-color 0.3s ease;
}

.gallery-item:hover::after {
  background-color: rgba(21, 101, 192, 0.2);
}

#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

#lightbox .prev,
#lightbox .next {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  padding: 20px;
}

#lightbox .prev {
  left: 20px;
}

#lightbox .next {
  right: 20px;
}

/* ==========================================================================
   INDIVIDUAL ROOM PAGES
   ========================================================================== */
.room-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: var(--white);
  text-align: center;
}

.room-detail-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.room-detail-price {
  background: var(--sky-blue);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  font-weight: 600;
  color: var(--primary-blue);
  border: 1px solid rgba(21, 101, 192, 0.2);
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.room-detail-price p {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.room-detail-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  text-align: left;
}

.room-detail-features li {
  padding: 1rem;
  background: #fafafa;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 3px solid var(--primary-blue);
}

.room-slider {
  height: 60vh;
  min-height: 400px;
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.room-slider {
  width: 60%;
  margin: 0 auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   PHOTO GRIDS
   ========================================================================== */
/* Grille 3 photos côte à côte */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

/* Grille 2 photos côte à côte */
.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 20px 0;
}

/* Toutes les photos dans les grilles */
.photo-grid-3 img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.photo-grid-2 img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .header-social {
    display: none;
  }

  .header-lang {
    right: 1.5rem;
    top: 1.5rem;
    gap: 0.5rem;
  }


  .mobile-menu-toggle {
    display: block;
  }

  .nav-bar {
    display: none;
    /* Handled by JS toggle */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
  }

  .nav-bar.active {
    display: block;
  }

  .nav-row {
    flex-direction: column;
    text-align: center;
  }

  .nav-row-1 li:not(:last-child)::after {
    display: none;
  }

  .nav-row-2 {
    border-top: none;
  }

  .image-strip {
    height: 200px;
    margin-top: 2rem;
  }

  .landscape-photo {
    height: 300px;
  }

  .activity-section {
    flex-direction: column !important;
  }

  .photo-grid-3,
  .photo-grid-2 {
    grid-template-columns: 1fr;
  }

  .room-slider {
    width: 90%;
    /* plus large sur mobile */
    height: 250px;
    /* un peu moins haut */
  }

  /* Pricing Table Mobile Adaptation (Refined) */
  .pricing-table thead {
    display: none;
  }

  .pricing-table, 
  .pricing-table tbody, 
  .pricing-table tr {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: right;
	font-size: 13px;
  }
	.pricing-table td.td-small {
    font-size: 10px;
}

  .pricing-table td:last-child {
    border-bottom: none;
  }

  /* Label Styling */
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: left;
    margin-right: 1.5rem;
    max-width: 55%;
    /* Allow wrapping and push value to right */
    flex-shrink: 0;
  }

  /* Value Styling */
  .pricing-table td strong {
    font-weight: 700;
    color: var(--dark-text);
  }

  /* Activity and Nous Sommes photo fixes (Refined) */
  .activity-section {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .activity-image {
    width: 100%;
    display: block !important;
    height: 300px !important;
    min-height: 280px !important;
    flex: none !important;
    margin-bottom: 1.5rem;
    border-radius: 12px;
  }

  .activity-content {
    padding: 0 0.5rem;
  }

  /* Reservation buttons fixes */
  .reservation-buttons {
    flex-direction: column;
    width: 100%;
  }

  .reservation-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

	.reservationc {
	background: var(--sky-blue); 

	}
}


.video-strip {
  width: 100%;
  position: relative;
  padding: 0 60px;
  /* margin left et right */
  box-sizing: border-box;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-video {
  width: 100%;
  height: 50vh;
  /* plus petite que avant */
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  /* pour ne pas bloquer les controls */
}

/* ==========================================================================
   GOOGLE TRANSLATE HACKS (Hide Toolbar)
   ========================================================================== */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-value,
.goog-te-gadget-icon,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  background: none !important;
  box-shadow: none !important;
}


/* ==========================================================================
   FORMULAIRE DE RÉSERVATION - CONTACT FORM 7
   ========================================================================== */

.wpcf7-form {
  font-family: 'Nunito', sans-serif;
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Tous les champs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #B3D4F0;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  background: #F7FBFF;
  transition: var(--transition);
  outline: none;
  margin-bottom: 1rem;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

/* Select : flèche custom */
.wpcf7-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231565C0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

/* Select désactivé (chambre pré-sélectionnée) */
.wpcf7-form select:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  background-color: #EBF4FF;
  border-color: var(--primary-blue);
}

/* Textarea */
.wpcf7-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* Grille 2 colonnes */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Bouton submit */
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.35);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.45);
}

/* Messages de validation CF7 */
.wpcf7-not-valid-tip {
  color: #e53935;
  font-size: 0.8rem;
  margin-top: -0.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.wpcf7-response-output {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: #E8F5E9;
  color: #2E7D32;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  background: #FFEBEE;
  color: #C62828;
}