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

a, .phone-number, .mail, .link-dev {
  color: initial;
  text-decoration: none;
}

/* General */
main {
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  line-height: 1.6;
  background: #FCFAF8;
  color: #744A39;
  font-family: "Merriweather Sans", serif;
  letter-spacing: 0.5px;
  align-items: center;
}

/* Header & footer */
.header-navbar, .footer-navbar, #dropdown-menu {
  background: #FCFAF8;
}

ul {
  justify-content: center;
}

li {
  padding: 0.5rem;
  list-style: none;
  transition: 0.3s;
}

li > .nav-link, li > .dropdown-item, #btn-cryo, .link-dev, footer > p {
  color: #744A39;
}

li > .nav-link-header, #btn-cryo,#btn-contact-nav {
  font-size: 1.5rem;
}

li > .nav-link:hover, li > .dropdown-item:hover {
  text-decoration: underline;
  color: #744A39;
}

/* Components */
.img-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.img-li {
  width: 24px !important;
  height: 24px !important;
  margin: 0.5rem;
}


#btn-contact, #btn-contact-nav, #btn-contact-footer {
  border-radius: 50px;
  border: #744A39 solid 1px;
}

#btn-contact:hover, #btn-contact-nav:hover, #btn-contact-footer:hover {
  color: #744A39;
  background-color: #FCFAF8;
  border-radius: 50px;
  border: #744A39 solid 1px;
}

#btn-contact, #btn-contact-nav, #btn-back-to-top, #btn-contact-footer {
  color: #FCFAF8;
  background: #744A39;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 10;
}

#btn-back-to-top:hover {
  color: #744A39;
  background-color: #FCFAF8;
  border: #744A39 solid 1px;
}

#btn-contact {
  font-size: 2rem;
}

.img-insta:hover {
  transform: scale(1.1);
}

/* Titles */
h1, h2, .home-lead {
  font-family: "Great Vibes", cursive;
}

.home-title {
  font-size: 9rem;
  color: #744A39;
}

#slogan {
  font-size: 5rem;
  text-align: center;
  font-family: "Great Vibes", serif;
}

.home-lead {
  font-size: 3rem;
  text-shadow: 2px 2px 3px #744A39;
  color: #FCFAF8;
}

h1 {
  text-shadow: 3px 2px 3px #FCFAF8;
}

div > h2 {
  font-size: 4rem;
}

h1, h2, h3 {
  text-align: center;
}

@media (max-width: 768px) {
  h1.home-title {
    font-size: 3em;
  }

  p.home-lead {
    font-size: 1.5em;
  }

  #slogan {
  font-size: 2.5rem;
  }
  
  #btn-contact {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1.home-title {
    font-size: 6em;
  }

  #slogan {
  font-size: 5rem;
  }

  p.home-lead {
    font-size: 3em; 
  }
}

/* Layout */
section > h2,div > h2, .phone-number, .mail {
  color: #744A39;
}

.phone-number, .mail {
  border: #FCFAF8 solid 1px;
}

.phone-number {
  font-size: 1.5rem;
}

.phone-number:hover, .mail:hover {
  border-radius: 50px;
  border: #744A39 solid 1px;
}

.home-presentation {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  text-align: center; 
  width: 100%;
}

/* Table */
th, td {
  background-color: #FCFAF8 !important;
}

table > thead > tr > th {
  color: #744A39 !important;
}

table > tbody > tr > td {
  color: #744A39 !important;
}


.td-hours {
  font-size: 1rem;
}

.tr-work:hover {
  text-decoration: underline;
  color: #744A39;
}

/* Soins */
.entity {
  text-align: left;  
}

.entity h2 {
  margin: 1rem;
}

.entity-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border: #744A39 solid 1px;
  border-radius: 8px;
} 

.entity-content img {
  border-radius: 8px;
}

.multi-element {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.multi-element .multi-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: #744A39 solid 1px;
}

.multi-element img {
  border-radius: 8px;
}

.text-container {
  display: flex;
  flex-direction: column;
}

