/*
Theme Name: HotelMaster Child
Template: hotelmaster
Author: Abdelali
Version: 1.0
Description: Thème enfant de HotelMaster pour personnalisation du style
*/

/* --- FOOTER LINKS STYLE PERSONNALISÉ --- */
.footer-links {
  text-align: center;
  margin-top: 15px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Styles généraux */
.footer-links a {
  text-decoration: none;
  font-weight: 700;
  margin: 0 10px;
  transition: all 0.3s ease;
  padding: 3px 5px;
  border-radius: 4px;
}

/* Booking — bleu moderne */
.footer-links .booking-link {
  color: #0066cc;
}
.footer-links .booking-link:hover {
  color: #1a75ff;
  background-color: rgba(0, 102, 204, 0.1);
  transform: translateY(-2px);
}

.booking-dotcom {
    color: #00A6E2 !important; /* Bleu ciel officiel Booking.com */
    font-weight: 600;
}

/* TripAdvisor — vert officiel */
.footer-links .tripadvisor-link {
  color: #34e0a1;
}
.footer-links .tripadvisor-link:hover {
  color: #00a680;
  background-color: rgba(0, 166, 128, 0.1);
  transform: translateY(-2px);
}

/* À propos — couleur or */
.footer-links .about-link {
  color: #ffd700; /* doré classique */
}
.footer-links .about-link:hover {
  color: #ffeb7a; /* or clair au survol */
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

/* Icônes */

/* Séparateur */
.footer-links .separator {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

.footer-copy {
  text-align: center;
  color: #f8f9fa; /* texte clair sur fond sombre */
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.footer {
    padding-top: 10px; 
    padding-bottom: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px; /* espace entre chaque ligne */
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
}

.footer-contact i {
  font-size: 18px;
  color: #f8f9fa;
  min-width: 20px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #d4af37; /* effet doré au survol */
}

/* --- Style global des icônes de réseaux sociaux dans le footer --- */
.footer .wp-block-social-links,
.footer .social-icons,
.footer .gdlr-social-shortcode {
  display: flex;
  justify-content: center; /* ou flex-start si tu veux aligner à gauche */
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* --- Style des boutons/icônes individuels --- */
.footer .wp-block-social-link a,
.footer .social-icons a,
.footer .gdlr-social-shortcode a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* --- Effet au survol --- */
.footer .wp-block-social-link a:hover,
.footer .social-icons a:hover,
.footer .gdlr-social-shortcode a:hover {
  background: #d4af37; /* effet doré au survol */
  color: #111;
  transform: translateY(-3px);
}

.footer-links-nav h4 {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-nav ul li {
  margin-bottom: 6px;
}

.footer-links-nav ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-nav ul li a:hover {
  color: #d4af37;
}

.footer-links-nav ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px; /* espace pour la puce */
}

.footer-links-nav ul li::before {
  content: "✦"; /* puce */
  position: absolute;
  left: 0;
  color: #d4af37; /* couleur dorée */
  font-size: 18px;
  line-height: 1;
}

/* --- Ajustement de l'espacement pour mobile --- */
@media (max-width: 768px) {
  .footer .wp-block-social-links,
  .footer .social-icons {
    justify-content: center;
    gap: 10px;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .footer-links {
    font-size: 14px;
  }
  .footer-links a {
    margin: 0 6px;
  }
}

/* Masquer les titres vides */
h1:empty, h2:empty, h3:empty, h4:empty, h5:empty, h6:empty {
  display: none !important;
}

/* Supprimer la hauteur forcée des div.clear */
.clear {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Supprimer l’espace par défaut du conteneur principal */
.main-content-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Supprimer les espaces des blocs principaux vides */
.gdlr-item.gdlr-main-content:empty,
.gdlr-item.gdlr-main-content h2:empty,
.gdlr-item.gdlr-main-content .clear {
  display: none !important;
}

/* Supprimer marges et padding inutiles */
.gdlr-item.gdlr-main-content {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.gdlr-page-title-wrapper {
    display: none;
}

/* Masquer le titre des popups (Our Spring Sale Has Started) */
div.pum-title.popmake-title {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item i {
    color: #c59d5f; /* Couleur dorée (à changer si besoin) */
    font-size: 14px;
}

.topbar-contact a {
    color: #fff; /* Blanc pour top bar sombre */
    text-decoration: none;
}

.topbar-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .topbar-contact {
        flex-direction: column;
        gap: 4px;
    }
}



