/*! Custom css by mh8 - June 2021 */
/* ========================================================================
    MAIN STRUCTURE
 ========================================================================== */
@font-face {
  font-family: ProximaNovaThin;
  src: url("font proxima/Proxima Nova Thin.otf") format("opentype");
}

@font-face {
  font-family: ProximaNova;
  src: url("font proxima/ProximaNova-Regular.otf") format("opentype");
}

@font-face {
  font-family: ProximaNovaAltThin;
  src: url("font proxima/Proxima Nova Alt Thin.otf") format("opentype");
}

@font-face {
  font-family: ProximaNovaAltLight;
  src: url("font proxima/Proxima Nova Alt Light.otf") format("opentype");
}

html {
  font-family: ProximaNovaAltLight, Arial;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
  font-family: ProximaNovaAltLight, Arial;
}

.uk-container {
  max-width: 900px;
}

.texte-poppins {
  font-family: 'Poppins', sans-serif;
}
/* ========================================================================
    NAVBAR
 ========================================================================== */
.uk-navbar-nav>li>a {
  color: white;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background: #10507b !important;
}

.uk-navbar-nav>li.uk-active>a {
  color: white;
}

/* ========================================================================
    BANNIÈRE FERMETURE EXCEPTIONNELLE
 ========================================================================== */
#banner-closed {
  position: fixed;
  display:none; /*Uncomment this lign to hide the banner*/
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#banner-closed-text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  text-align:center;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

/* ========================================================================
    HEADER
 ========================================================================== */
.main-header {
  margin-top: 8rem;
}

.main-header-line2 {
  padding-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.sub-main-header {
  padding-bottom: 2rem;
}

/* ========================================================================
    BUTTON
 ========================================================================== */
.rdv-button {
  border-radius: 50px;
  padding-left: 4rem;
  padding-right: 4rem;
}

/* ========================================================================
    COUNTDOWN
 ========================================================================== */
.uk-countdown {
  padding-left: 2rem;
}

.uk-countdown-number {
  font-size: 3rem;
}

/* ========================================================================
    IMAGES
 ========================================================================== */
.iconographie {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 25%;
  width: 50%;
}

.profile-pics {
  padding-bottom: 2rem;
  border-radius: 50%;
  width: 85%
}

.drapeau-fr {
  width: 30px;
  border-radius: 40%;
  margin-left: 1rem;
}

/* ========================================================================
    VARIOUS POSITIONNING & PADDING
 ========================================================================== */
.center-element {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.uk-grid {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.uk-divider-icon {
  padding-bottom: 2rem;
}

.phone-number {
  font-size: 14px;
}

.uk-card-title {
  text-align: center;
}

.card-cabinet {
  margin-bottom: 4rem;
}

.section-divider {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  float: none;
}

.slideshow {
  margin-top: 4rem;
}

.horaires p {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.uk-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.uk-container>h1 {
  padding-top: 4rem;
}

img.iconographie {
  margin-top: 6rem;
}

/* ========================================================================
     DEVELOPMENT STUFF
  ========================================================================== */
.missing-info {
  color: red;
}
/* === HERO SECTION AVEC IMAGE DE FOND ET ZOOM === */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../img/cabinet-bleu-2.jpg');
  background-size: cover;
  background-position: center;
  animation: zoomEffect 20s ease-in-out infinite;
  overflow: hidden;
}

@keyframes zoomEffect {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* filtre foncé pour texte lisible */
  z-index: 1;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: fadeIn 2s ease-out 0.5s forwards;
}

.hero-title h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-title h3 {
  font-size: 1.5em;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.uk-navbar-container {
  background-color: #10507b !important;
}

.navbar-transparent {
  background-color: #10507b !important;
}

.navbar-sticky-bg {
  background-color: #10507b !important;
}