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

    body {
      font-family: 'Lato', sans-serif;
    }

    html{
  scroll-behavior:smooth;
}
/* =========================
   HEADER DESKTOP
========================= */
    #main-nav 
    {
      background-color: #091822;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      position: fixed;
      top: 0;
      width: 100%;
      height: 10rem;
      z-index: 1000;
    }

    #main-nav, .logo-img, .logo-text {
      transition: all 0.3s ease;
    }

    /* Bloc logo + texte */
    .logo-container 
    {
      display: flex;
      align-items: center;
      gap: 1rem;
    }


    .logo-text 
    {
      font-size: 1.8rem;
      font-weight: bold;
      /* letter-spacing: 2px; */
      text-transform: uppercase;
      /* color:#c5782b */
    }
    .logo-img {
      max-height: 9rem;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    .nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
    }

    .threeLines {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .threeLines .line {
      width: 25px;
      height: 3px;
      background-color: white;
    }
/* =========================
   MOBILE
========================= */    

@media screen and (max-width: 768px) {

  #main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  /* On garde logo + texte groupés */
  .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo-img {
    height: 9rem;
  }

  .logo-text {
    font-size: 2rem;
  }

  /* Menu mobile caché par défaut */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0c2641;
    flex-direction: column;
    display: none;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .nav-links.open {
    display: flex;
  }

  /* Burger visible */
  .threeLines {
    display: flex;
  }
}

    .sticky {
      position: fixed;
      top: 0;
      width: 100%;
    }
    /* Section Hero */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 100vh;
      background-color: rgba(9, 24, 34, 1);
      color: white;
      padding: 2rem;
      /* padding-top: 5rem; */
      text-align: center;
    }
    
    .hero-content {
      max-width: 90%;
      margin-bottom: 2rem;
    }
    
    .hero h1 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    
    .hero p {
      font-size: 1.2rem;
      line-height: 1.8;
      text-align: justify;
    }
    
    .hero-image img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 0.5rem;
    }
    
    /* Styles Responsives */
    @media (min-width: 768px) {
      .hero {
        flex-direction: row-reverse;
        text-align: left;
        padding: 4rem;
      }
    
      .hero-content {
        flex: 1;
        max-width: 60%;
      }
    
      .hero h1 {
        font-size: 2.8rem;
      }
    
      .hero p {
        font-size: 1.3rem;
      }
    
      .hero-image {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      .hero-image img {
        max-width: 35rem;
        height: auto;
        max-height: 90vh;
        object-fit: contain;
      }
    }
    @media (max-width:768px) {
      /* .hero {
        margin-top: 8rem;
      } */
      .hero p {
        text-align: center;
      }
    }
    
    /* Paragraphe multilingue caché en mobile */
    .languages {
      text-align: justify;
      margin-top: 1.5rem;
    }
    
  

    /* Section Mes Compétences*/
 
.skills-section {
  padding: 2rem 1rem;
  background: #091822;
  color: white;

}
.skills-title {
  display: flex;
  align-items: center;         
  height: 4.75rem;              
  padding: 0 1.25rem;         
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #c5782b;
  border-radius: 1.1rem;
  box-shadow: 0 0.6rem 0 #ac6a28;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}


/* Card principale */
.skills-card {
  background-color: #0d212f;
  border-radius: 1.875rem; /* 30px */
  padding: 1.5rem 1.25rem;
  margin: 1.5rem 0.5rem;

  color: #ffffff;
}

/* Titre de la card */
.skills-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: left;
}

/* Container des langages */
.languages-container {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;              /* espace entre les rectangles */
  flex-wrap: wrap;           /* sécurité mobile */
}

/* Rectangle d’un langage */
.language-pill {
  background-color: #507994;
  color: #ffffff;

  padding: 0.85rem 1.25rem;
  border-radius: 1.1rem;

  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.skills-card-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #507994;
  margin-bottom: 1.25rem;
  text-align: left;
}
.elements-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;         /* retour automatique à la ligne */
  gap: 0.75rem;
}
.skill-pill {
  background-color: #507994;
  color: #ffffff;

  padding: 0.85rem 1.25rem;
  border-radius: 1.1rem;

  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.see-more-container {
  position: relative;
  margin: 3rem auto 2rem;
  width: fit-content;
  text-align: center;
}

.see-more-label {
  display: inline-block;
  margin-bottom: 0.6rem;

  animation: floatLabel 1.6s ease-in-out infinite;
}
.see-more-label-text {
  display: inline-block;

  padding: 0.35rem 0.75rem;
  border-radius: 0.6rem;

  border: 0.15rem solid #c5782b;
  background-color: #091822;

  color: #c5782b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  
}

.see-more-label-text::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -0.45rem;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.45rem solid #c5782b;
}

@keyframes floatLabel {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.4rem);
  }
  100% {
    transform: translateY(0);
  }
}

.see-more-button {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: none;

  background-color: #c5782b;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;

  box-shadow: 0 0.5rem 0 #ac6a28;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.see-more-button:active {
  transform: translateY(0.25rem);
  box-shadow: 0 0.15rem 0 #c5782b;
}


.see-more-ring {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  border: 0.4rem solid #c5782b;

  display: flex;
  align-items: center;
  justify-content: center;
}
.skills-section:not(.skills-section--expanded) .see-more-container ~ * {
  display: none;
}

/* Desktop & mobile — état initial */
.see-more-container ~ * {
  display: none;
}

/* État étendu (après clic) */
.skills-section.skills-section--expanded .skills-card,
.skills-section.skills-section--expanded .skills-card-title {
  display: block;
}
.skills-section.skills-section--expanded .see-more-container {
  display: none;
}


@media (max-width: 768px) {
 /* Cacher tout ce qui est APRÈS le bouton voir plus */
  .see-more-container ~ * {
    display: none;
  }
 
   .skills-section.skills-section--expanded .skills-card {
    display: block;
  }

  .skills-section.skills-section--expanded .skills-card-title {
    display: block;
  }

  /* Faire disparaître le bouton */
  .skills-section.skills-section--expanded .see-more-container {
    display: none;
  }

}

/* Section Entreprises */
.companies-section {
  padding: 2rem 1rem;
  background-color: #091822;
  color: #ffffff;
}

/* Titre */
.companies-title {
  display: flex;
  align-items: center;         
  height: 4.75rem;              
  padding: 0 1.25rem;         
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #c5782b;
  border-radius: 1.1rem;
  box-shadow: 0 0.6rem 0 #ac6a28;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

/* Liste */
.companies-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Chaque entreprise */
.company-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logos */
.company-item img {
  max-width: 9rem;
  max-height: 4rem;
  width: auto;
  height: auto;

  object-fit: contain;
  opacity: 0.9;
}
/* Desktop & laptop */
@media (min-width: 48rem) { /* ≈ 768px */

  .companies-list {
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 3rem;
  }

  .company-item img {
    max-width: 10rem;
    max-height: 4.5rem;
  }
}
   
    
    /*Sectionn Services */
    .services-section {
      padding: 2rem 1rem;
      background-color: rgba(9, 24, 34, 1);
      color: white;
      text-align: center;
    }


    .services-title {
  display: flex;
  align-items: center;         
  height: 4.75rem;              
  padding: 0 1.25rem;         
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #c5782b;
  border-radius: 1.1rem;
  box-shadow: 0 0.6rem 0 #ac6a28;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
    
    .services-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    /* Style des services */
    .service {
      background-color: #0d2331;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .service h3 {
      font-size: 1.75rem;
      color: white;
      margin-bottom: 1rem;
    }
    
    .service p {
      font-size: 1.1rem;
      line-height: 1.6;
    }
.service-text {
  max-height: 4.8em; /* ~3 lignes */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-text.expanded {
  max-height: 1000px;
}

.toggle-btn {
  margin-top: 1rem;
  background: none;
  border: none;
  color: #c5782b;
  font-weight: bold;
  cursor: pointer;
}

.contact-service-btn{
  margin-top:1rem;
  padding:0.9rem 1.2rem;
  width:100%;

  background:#c5782b;
  color:white;

  border:none;
  border-radius:8px;

  font-weight:600;
  font-size:0.95rem;

  cursor:pointer;

  transition:all 0.25s ease;
}

.contact-service-btn:hover{
  background:#ac6a28;
  transform:translateY(-2px);
}

.contact-service-btn:active{
  transform:translateY(0);
}
    
    /* Responsive : à partir de tablette */
    @media (min-width: 768px) {
      .services-container {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    /* Responsive : à partir de bureau */
    @media (min-width: 1024px) {
      .services-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
      }
    
      .service {
        padding: 3rem;
      }

      
    
      .service h3 {
        font-size: 2rem;
      }
    
      .service p {
        font-size: 1.25rem;
      }
    }

     /* Section Présentation*/
  .presentation-section {
    background-color: rgba(9, 24, 34, 1);
    color: white;
    padding: 2rem 1rem;
    /* text-align: center; */
    
}

/* .presentation-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
} */

/* .presentation-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #586b18;
    width: 100%;
} */

.presentation-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
}

.presentation-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
 
}
    /* Section Portfolio*/

    .portfolio-section {
    background-color: rgba(9, 24, 34, 1);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    
}
.portfolio {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.portfolio-title {
  display: flex;
  align-items: center;         
  height: 4.75rem;              
  padding: 0 1.25rem;         
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #c5782b;
  border-radius: 1.1rem;
  box-shadow: 0 0.6rem 0 #ac6a28;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #507994;
  margin-bottom: 1.25rem;
  text-align: left;
}

/* CAROUSEL */
.carousel {
  display: flex;
  overflow: hidden;
}

/* CARD */
.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.125rem;
  overflow: hidden;
}

/* MEDIA */
.media {
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.project-card {
  display: flex;
  flex-direction: column;
  background: #0a243c;
  border-radius: 1rem;
  overflow: hidden;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: #0a243c;
}

.card-content h2 {
  text-align: left;
  font-size: 1.3rem;
}

.card-content h3 {
  text-align: left;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* TECHNO */
.tech-list {
  display: block;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-list span {
  background: #507994;
  color: white;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.90rem;
}

/* BUTTON */
.cta {
  align-self: center;     
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;     
  border-radius: 0.75rem;
  border: none;
  background: #f08c2e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 10;
}


/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #555;
}

.dot.active {
  background: #f08c2e;
}

/* ============================= */
/* AUTRES PROJETS SECTION */
/* ============================= */

.other-projects {
  margin-top: 2rem;
  background: #0a243c;
  border-radius: 1rem;
  padding: 1rem;
  text-align: left;
}

.other-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* SLIDER */

.projects-slider {
  display: flex;
  gap: 1rem;
  overflow-x: scroll; /* pas auto */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  cursor: grab;
 
}
.projects-slider.dragging {
  cursor: grabbing;
  user-select: none;
}

.projects-slider.dragging * {
  user-select: none;
}

.projects-slider img {
  pointer-events: none;
}


.projects-slider::-webkit-scrollbar {
  display: none;
}

/* MINI CARD */

.mini-card {
  flex: 0 0 18rem;   /* ≈ 288px si 1rem = 16px */
  background: #091822;
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: start;
}

.mini-card img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
}

/* CONTENT */

.mini-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.mini-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* TECHNO BADGES */

.mini-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.mini-tech span {
  background: #507994;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
}

/* BUTTON */

.mini-btn {
  align-self: center;
  background: #f08c2e;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* DOTS */

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: #f08c2e;
}
/* ===================================== */
/* TABLET & DESKTOP */
/* ===================================== */
@media (min-width: 48rem) {

  .projects-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow: visible;
    scroll-snap-type: none;
  }

  .mini-card {
    flex: unset;
    width: 100%;
  }

  .mini-card img {
   width: 100%;
  height: auto;
  display: block;
}

  .slider-dots {
    display: none;
  }

}
.portfolio-video-container {
  width: 100%;
  height: 9rem;
  overflow: hidden;
  background: black;
}

.portfolio-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* .portfolio-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #586b18;
    width: 100%;
} */

/* .portfolio-message {
    font-size: 1.5rem;
    color: #ff6458;
    margin-top: 1rem;
    font-weight: bold;
} */

/* CONTACT SECTION */
.contact-section {
   padding: 2rem 1rem;
  background: #091822;
  color: white;
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #091822;
  padding: 2rem;
}
 .contact-title {
  display: flex;
  align-items: center;         
  height: 4.75rem;              
  padding: 0 1.25rem;         
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #c5782b;
  border-radius: 1.1rem;
  box-shadow: 0 0.6rem 0 #ac6a28;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.contact h1 {
  font-size: 2.5rem; /* 2.5rem correspond à 40px si la racine est à 16px */
  margin-bottom: 1.5rem;
  text-align: center;
  color: #fff;
}


.contact p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.rounded img {
  width: 12rem; /* Utilise rem au lieu de px */
  height: 12rem;
  border-radius: 50%;
   box-shadow: 0 0 10px #fff;
  margin-bottom: 2rem;
}

/* FORM CONTAINER */
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0d212f;
  width: 100%;
  max-width: 37.5rem; /* 37.5rem = 600px */
  padding: 2rem;
  border-radius: 1rem; /* border-radius en rem */
  text-transform: uppercase;
  box-shadow: 0 0 10px #fff;
}

.form-group {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem; /* espace propre entre label, input, error */
}
.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 1.2rem 1.5rem 0.6rem 1.5rem;
  border: none;
  border-bottom: 0.2rem solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.input-wrapper label {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  color: #fff;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease all;
}

/* Quand focus */
.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label {
  top: 0.2rem;
  font-size: 0.75rem;
  color: #c5782b;
}

/* Quand le champ a du texte */
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
  top: 0.2rem;
  font-size: 0.75rem;
  color: #c5782b;
}

label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.required {
  color: red;
  margin-left: 0.25rem;
}

input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

.error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.hidden {
  display: none;
}
@media (min-width: 768px) {
  .form-group {
    max-width: 32rem;
  }

  input {
    font-size: 1rem;
  }
}



/* INPUTS & TEXTAREA STYLES */
.form input,
.form textarea {
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.5rem;
  border: none; /* Supprime toutes les bordures */
  border-bottom: 0.2rem solid #fff; /* Ajoute seulement la bordure du bas */
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
  border-radius: 0; /* Pas de border-radius */
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-bottom: 0.2rem solid #c5782b;
}

/* BUTTON STYLES */
/* .form .submit {
  background: #091822;
  color: #fff;
  border: 0.120rem solid #fbe56d;
  padding: 1rem 2rem; Utilisation de rem pour l'espacement
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0.625rem; border-radius en rem
  transition: background 0.3s ease;
}
.form .submit:disabled {
  background: #2a3a44;          plus terne
  border-color: #555;
  color: #aaa;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Empêche le hover quand disabled */
/* .form .submit:disabled:hover {
  background: #2a3a44;
}


.form .submit:hover {
  background: #c5782b;
}
#form-status {
 opacity: 0;
  transition: opacity 0.5s ease;
}
#form-status.show {
  opacity: 1;
}
.form-success {
  color: #39ff14; 
} */ 

/* RESPONSIVE STYLES */
@media (max-width: 48rem) { /* 48rem = 768px */
  .contact {
      padding: 2rem;
  }

  .form {
      width: 90%;
  }

  .contact h1 {
      font-size: 2.25rem;
  }

  .contact p {
      font-size: 1.1rem;
  }

  .rounded img {
      width: 10rem; /* Réduction de la taille de l'image */
      height: 10rem;
  }
}
.btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  border: none;
}

.btn-primary {
  background-color: #c5782b;
  color: #fff;
}

.btn-submit {
  opacity: 0.6;
}

.btn-submit:enabled {
  opacity: 1;
  cursor: pointer;
}
.success {
  color: #2e7d32;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.error {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

/* ========================
FOOTER
======================== */

.footer {
  background: #0d212f;
  color: #ffffff;
  padding: 2.5rem 1.5rem 1.5rem;

}

/* container */

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* contact */

.footer__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #507994;
  margin-bottom: 0.3rem;
}

.footer__phone {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s ease;
}

.footer__phone:hover {
  color: #c5782b;
}

/* navigation */

.footer__nav {
  display: flex;
}

.footer__link {
  text-decoration: none;
  font-size: 0.95rem;
  color: #ffffff;
  position: relative;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #c5782b;
  transition: width 0.25s ease;
}

.footer__link:hover::after {
  width: 100%;
}

/* bottom */

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  text-align: center;
  color: #c5782b;
}
.heart {
  color: #c5782b;
  font-size: 0.95rem;
}

/* ========================
TABLET
======================== */

@media (min-width: 640px) {

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

/* ========================
DESKTOP
======================== */

@media (min-width: 1024px) {

  .footer {
    padding: 3rem 2rem 2rem;
  }

  .footer__phone {
    font-size: 1.1rem;
  }

}

    
