/* Tana Boutique Hotel - Theme Colors */

:root {
  /* Theme 1 - Primary colors */
  --tana-primary: #b37c35;
  --tana-secondary: #7d5334;
  --tana-tertiary: #4d5c43;
  
  /* Theme 2 - Light colors */
  --tana-light-primary: #f9f5f1;
  --tana-light-secondary: #f2d5bc;
  --tana-light-tertiary: #c97c50;
  
  /* Theme 3 - Earth tones */
  --tana-earth-primary: #c27c50;
  --tana-earth-secondary: #b37c35;
  --tana-earth-tertiary: #7d5334;
  
  /* Theme 4 - Natural tones */
  --tana-natural-primary: #4d5c43;
  --tana-natural-secondary: #f2d5bc;
  --tana-natural-tertiary: #c27c50;
  
  /* Theme 5 - Same as Theme 1 (appears identical in the image) */
  
  /* Logo color */
  --tana-logo: #c27c50;
}

/* Apply the new color scheme */

/* Header and navigation */
.navbar {
  color: var(--tana-light-primary);
}

.navbar .navbar-nav .nav-link {
  color: var(--tana-light-primary);
}

.navbar.nav-scroll .navbar-nav .nav-link {
  color: var(--tana-primary);
}

.navbar .navbar-nav .nav-link.active {
  color: var(--tana-tertiary);
}

/* Buttons */
.butn-light a {
  background: var(--tana-primary);
}

.butn-light:hover a {
  background: var(--tana-secondary);
}

.butn-dark a, .butn-dark2 {
  background: var(--tana-tertiary);
}

.butn-dark:hover a, .butn-dark2:hover {
  background: var(--tana-primary);
}

.btn-form1-submit {
  background-color: var(--tana-primary);
}

.btn-form1-submit:hover {
  background-color: var(--tana-secondary);
}

/* Section titles and subtitles */
.section-title {
  color: var(--tana-primary);
}

.section-subtitle {
  color: var(--tana-primary-light);
}

/* Star ratings */
.star-rating {
  color: var(--tana-logo);
}

/* Footer */
.footer {
  background-color: var(--tana-tertiary);
}

.footer-title {
  color: var(--tana-light-primary);
}

.footer-about-social-list a {
  color: var(--tana-logo);
}

/* Room Cards Styles */
.room-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.room-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--tana-primary);
  margin-bottom: 10px;
}

.room-title {
  margin-bottom: 15px;
}

.room-title a {
  color: var(--tana-tertiary);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.room-title a:hover {
  color: var(--tana-primary);
}

.room-divider {
  height: 2px;
  background: var(--tana-light-secondary);
  margin: 15px 0;
  width: 50px;
}

.room-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-amenities {
  margin-bottom: 20px;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.amenities-list li {
  color: var(--tana-primary);
  font-size: 16px;
}

.room-link {
  margin-top: auto;
}

.room-link a {
  color: var(--tana-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.room-link a:hover {
  color: var(--tana-secondary);
}

.room-link a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.room-link a:hover i {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .room-card {
    margin-bottom: 30px;
  }
  
  .room-image {
    height: 200px;
  }
  
  .room-content {
    padding: 15px;
  }
  
  .room-title a {
    font-size: 18px;
  }
  
  .room-price {
    font-size: 16px;
  }
}

/* Background colors */

.bg-blck {
  background-color: var(--tana-tertiary);
  position: relative;
}

.bg-pattern, .bg-pattern2  {
  position: relative;
}

.bg-pattern:before, .bg-pattern2:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;

}

.bg-pattern:before {
  background-image: url('../img/tana-logo-small-white.png');
  background-size: 40px 40px;
}

.bg-pattern2:before {
  background-image: url('../img/pattern.png');
  background-size: 30px auto;
}

/* Progress scroll to top */
.progress-wrap::after {
  color: var(--tana-logo);
}

.progress-wrap svg.progress-circle path {
  stroke: var(--tana-logo);
}

/* Facilities */
.single-facility span {
  color: var(--tana-logo);
}

.single-facility .facility-shape {
  background: var(--tana-light-secondary);
}

/* Testimonials */
.testimonials .owl-theme .owl-dots .owl-dot.active span {
  background: var(--tana-logo);
}


/* Language Selector */
.language-selector {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.language-selector a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease-in-out;
    padding: 0 5px;
}

.nav-scroll .language-selector a {
    color: var(--tana-secondary);
}

.language-selector a.active {
    color: #aa8453;
}

.language-selector a:hover {
    color: #aa8453;
}

.language-selector .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 2px;
}

/* Responsive adjustments for language selector */
@media screen and (max-width: 991px) {
    .language-selector {
        position: absolute;
        top: 20px;
        right: 80px;
    }
}

.footer-logo {
    max-width: 150px;
}

/* Paragraph Image + Texte styles */
.paragraph--image-texte {
  background-color: #fff;
}

.paragraph--image-texte .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 30px;
}

.paragraph--image-texte .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.paragraph--image-texte .image-wrapper:hover img {
  transform: scale(1.05);
}

.paragraph--image-texte .text-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.paragraph--image-texte .star-rating-wrapper {
  display: block;
  margin-bottom: 20px;
}

.paragraph--image-texte .section-subtitle {
  font-size: 14px;
  color: var(--tana-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.paragraph--image-texte .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.paragraph--image-texte .reservations {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 4px;
}

.paragraph--image-texte .reservations .icon {
  width: 50px;
  height: 50px;
  background-color: var(--tana-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 18px;
}

.paragraph--image-texte .reservations .text p {
  margin: 0;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.paragraph--image-texte .reservations .text a {
  font-size: 18px;
  font-weight: 600;
  color: var(--tana-primary);
  text-decoration: none;
}

.paragraph--image-texte .reservations .text a:hover {
  color: var(--tana-secondary);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .paragraph--image-texte .section-title {
    font-size: 24px;
  }
  
  .paragraph--image-texte .col-md-3 {
    margin-bottom: 20px;
  }
  
  .paragraph--image-texte .reservations {
    flex-direction: column;
    text-align: center;
  }
  
  .paragraph--image-texte .reservations .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ========================================
   CKEditor Styles - Listes avec icônes
   ======================================== */

/* Liste avec icônes check (✓) */
ul.list-check {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

ul.list-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #666;
}

ul.list-check li:before {
  content: "\e64c"; /* Unicode check mark */
  position: absolute;
  left: 0;
  top: 0;
  font-family: "themify";
  font-size: 16px;
  color: var(--tana-primary);
}

/* Alternative avec classe ti-check (Themify Icons) */
ul.list-check li i.ti-check {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--tana-primary);
  font-size: 14px;
}

/* Liste avec icônes étoiles (★) */
ul.list-stars {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

ul.list-stars li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #666;
}

ul.list-stars li:before {
  content: "\2605"; /* Unicode star */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--tana-logo);
}

/* Icône check inline (dans le texte) */
span.icon-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

span.icon-check:before {
  content: "\2713";
  font-family: "themify";
  color: var(--tana-primary);
  font-weight: bold;
  font-size: 14px;
}

/* Support pour les icônes Themify directement dans le HTML */
.ck-content i.ti-check {
  color: var(--tana-primary);
  margin-right: 8px;
  font-size: 14px;
}

.ck-content i.star-rating {
  color: var(--tana-logo);
  font-size: 14px;
}

/* Style pour l'éditeur CKEditor (prévisualisation) */
.ck-editor__editable ul.list-check,
.ck-editor__editable ul.list-stars {
  padding-left: 0;
}

.ck-editor__editable ul.list-check li,
.ck-editor__editable ul.list-stars li {
  list-style: none;
}

/* Exemple d'utilisation dans les paragraphes de contenu */
.paragraph--type-bloc-texte ul.list-check,
.about ul.list-check,
.services ul.list-check {
  margin: 25px 0;
}

.paragraph--type-bloc-texte ul.list-check li,
.about ul.list-check li,
.services ul.list-check li {
  font-size: 15px;
  line-height: 1.8;
}

/* Icônes des équipements - Colorisation en blanc */
.rooms1 ul li img,
.facilities ul li img,
.page-list li img,
 {
  width: 24px;
  height: 24px;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.rooms1 .item:hover ul li img, 
.facilities .item:hover ul li img, 
.page-list .item:hover ul li img {
  filter: brightness(0) invert(1);
}

/* Alternative pour les icônes SVG avec fill */
.facilities ul li img.facility-icon svg,
.page-list li img.equipement-icon svg {
  fill: #ffffff;
}
.page-list-icon img {
  width: 24px;
  height: 24px;
  display: inline-block;
  object-fit: contain;
}

/* ============================================
   BANNIÈRE HERO VIDÉO
   ============================================ */

/* Conteneur de la bannière vidéo */
.hero-video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Wrapper vidéo - position absolue pour couvrir tout l'écran */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Vidéo en plein écran - cover fit sans bandes noires */
.hero-video-wrapper video,
.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay sombre sur la vidéo pour la lisibilité du texte */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Contenu superposé (titre, sous-titre, etc.) */
.hero-video-banner .v-middle {
  position: relative;
  z-index: 3;
}

/* S'assurer que le caption soit au-dessus */
/*.hero-video-banner .caption {
  position: relative;
  z-index: 3;
}*/

/* Responsive - ajustements pour mobiles */
@media (max-width: 768px) {
  .hero-video-banner {
    height: 70vh;
  }

  /* Sur mobile, on peut cacher la vidéo et afficher une image statique pour économiser la bande passante */
  .hero-video-wrapper {
    display: none;
  }

  /* Afficher un fond de couleur à la place */
  .hero-video-banner {
    background: linear-gradient(135deg, var(--tana-primary) 0%, var(--tana-secondary) 100%);
  }
}

/* Tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-video-banner {
    height: 80vh;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  display: flex!important;
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float i {
  margin: 0;
  line-height: 60px;
}

/* Animation de pulse pour attirer l'attention */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float:not(:hover) {
  animation: whatsapp-pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }

  .whatsapp-float i {
    line-height: 50px;
  }
}