@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_28pt-Bold.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto_Condensed-Light.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}

/* Style global du body */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* Application ciblée */
h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #111827;
  text-align: center;
  margin: 40px 0 20px 0;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #374151;
  text-align: center;
  margin: 0 0 15px 0;
}

/* Animation fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animation soulignement */
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #111827;
  text-align: center;
  margin: 40px 0 20px 0;
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
}

h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #2563eb;
  transition: width 0.5s ease, left 0.5s ease;
}

h1:hover::after {
  width: 100%;
  left: 0;
}

/* Header global */
header {
  background-color: #111827;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Liens */
nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav .nav-links li a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #f9fafb;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
}

nav .nav-links li a:hover {
  color: #60a5fa;
}

/* Logo */
nav .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f4f6fa;
  cursor: pointer;
  transition: color 0.3s ease;
}

nav .logo:hover {
  color: #60a5fa;
}

/* Burger menu caché par défaut */
.burger {
  display: none;
  font-size: 2rem;
  color: #f9fafb;
  cursor: pointer;
}

/* Section Hero */
.hero {
  background: #ffffff;
  color: #111827;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  flex-direction: column;
  align-items: center;
}

.hero .quote {
  margin-bottom: 0;
}

.hero .quote h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .quote p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #374151;
}

.hero .quote button {
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero .quote button:hover {
  background-color: #1e40af;
  transform: scale(1.05);
}

/* Icônes flottantes */
.hero .icon {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 1;
  transition: transform 0.3s ease;
}

.hero .icon:hover {
  transform: scale(1.2) rotate(5deg);
}

/* Placement des icônes */
.icon.html { top: 20%; left: 10%; }
.icon.figma { top: 25%; right: 15%; }
.icon.nodejs { bottom: 20%; left: 20%; }
.icon.css { bottom: 25%; right: 10%; }
.icon.js { bottom: 25%; left: 10px; }

/* Sticky Notes */
.sticky-notes {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  background-color: #f9fafb;
}

.sticky-notes .note-left,
.sticky-notes .note-right {
  background-color: #fff;
  border: 2px solid #2563eb;
  border-radius: 8px;
  padding: 20px;
  width: 220px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #111827;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.sticky-notes .note-right {
  transform: rotate(2deg);
}

.sticky-notes .note-left:hover,
.sticky-notes .note-right:hover {
  transform: rotate(0deg) scale(1.05);
}

/* ===== STYLES DES SECTIONS ===== */
.section-content {
    display: block !important;
    padding: 40px 30px;
    background: #ffffff;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: fadeIn 0.5s ease-in-out;
    border: 1px solid #e5e7eb;
}

.section-content.hidden {
    display: none !important;
}

.section-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #111827;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

/* Projets */
.projets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.projet {
    background: #f3f4f6;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
}

.projet:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

/* ===== STYLES POUR LES PROJETS EN GRILLE ===== */
.projets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 10px 0;
}

.projet-card-simple {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%; /* Pour que toutes les cartes aient la même hauteur */
}

.projet-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.projet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f3f4f6;
    transition: transform 0.4s ease;
}

.projet-card-simple:hover .projet-img {
    transform: scale(1.03);
}

.projet-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.projet-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #111827;
    margin: 0 0 5px 0;
}

.projet-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 15px 0;
    text-align: left;
    flex: 1;
}

.btn-projet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.btn-projet:hover {
    background: #1e40af;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-projet .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    display: inline-block;
}

.btn-projet:hover .arrow {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */

/* Tablette */
@media (max-width: 1024px) {
    .projets-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .projet-img {
        height: 180px;
    }
}

/* Mobile large */
@media (max-width: 768px) {
    .projets-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .projet-img {
        height: 160px;
    }
    
    .projet-content {
        padding: 16px;
    }
    
    .projet-content h3 {
        font-size: 1.1rem;
    }
    
    .btn-projet {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .projets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 5px 0;
    }
    
    .projet-img {
        height: 180px;
    }
    
    .projet-content {
        padding: 16px;
    }
    
    .projet-content h3 {
        font-size: 1rem;
    }
    
    .projet-content p {
        font-size: 0.85rem;
    }
    
    .btn-projet {
        font-size: 0.8rem;
        padding: 8px 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Pour les écrans très grands (4K) */
@media (min-width: 1600px) {
    .projets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .projet-img {
        height: 250px;
    }
}

/* Compétences */
.skills-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.skills-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: default;
    gap: 8px;
    min-height: 100px;
}

.skills-list li .skill-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.skills-list li:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
}

.skills-list li:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.05);
}

.skills-list li:hover span {
    color: #ffffff;
}

.skills-list li span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Formulaire de contact */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

#contact form input,
#contact form textarea {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f9fafb;
}

#contact form input:focus,
#contact form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

#contact form textarea {
    min-height: 150px;
    resize: vertical;
}

#contact form button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact form button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hidden {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Navigation responsive */
  .nav-links {
    display: none !important;
    flex-direction: column;
    background-color: #111827;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex !important;
  }

  .burger {
    display: block;
  }

  /* Icônes sous le bouton Portfolio */
  .hero {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .icon {
    position: static !important;
    display: inline-block;
    margin: 15px;
    width: 40px;
    height: 40px;
  }

  .hero .quote {
    margin-bottom: 30px;
  }

  .hero-icons {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

  .sticky-notes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sticky-notes .note-left,
  .sticky-notes .note-right {
    width: 80%;
    max-width: 300px;
  }

  .section-content {
    margin: 20px 15px;
    padding: 30px 20px;
  }

  .projets {
    grid-template-columns: 1fr;
  }

  .skills-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  /* Afficher les icônes en bas sur tablette */
  .hero {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .icon {
    position: static !important;
    display: inline-block;
    margin: 15px;
    width: 45px;
    height: 45px;
  }

  .hero .quote {
    margin-bottom: 30px;
  }

  .hero-icons {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
  }

  .sticky-notes {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .sticky-notes .note-left,
  .sticky-notes .note-right {
    width: 80%;
    max-width: 350px;
    flex: 0 1 auto;
  }
}

@media (max-width: 480px) {
  .hero .quote h1 {
    font-size: 1.5rem;
  }

  .hero .icon {
    width: 35px !important;
    height: 35px !important;
    margin: 10px !important;
  }

  .hero-icons {
    gap: 8px;
    margin-top: 15px;
  }

  .sticky-notes .note-left,
  .sticky-notes .note-right {
    width: 95%;
    font-size: 0.9rem;
    padding: 15px;
  }

  .skills-list {
    grid-template-columns: 1fr;
  }

  .section-content h2 {
    font-size: 1.5rem;
  }
}

.skills-list li {
    position: relative;
    padding: 25px 15px 20px;
}

.skill-level {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin: 5px 0;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.skill-percent {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    transition: color 0.3s ease;
}

.skills-list li:hover .skill-percent {
    color: #ffffff;
}

/* ===== SECTION ABOUT ME ===== */
#about {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 40px auto;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: none;
}

/* ===== PARTIE GAUCHE : TEXTE ===== */
.intro-text {
    flex: 1;
    min-width: 280px;
}

.intro-text small {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #eff6ff;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.intro-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    text-align: left;
    margin: 10px 0 16px;
    line-height: 1.3;
    animation: none;
}

.intro-text h1::after {
    display: none;
}

.intro-text h1 span {
    color: #2563eb;
    position: relative;
}

.intro-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

.intro-text p {
    text-align: left;
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.8;
    max-width: 500px;
}

/* ===== LIENS SOCIAUX ===== */
.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 6px;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1rem;
}

.cv-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cv-btn:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===== PARTIE DROITE : PHOTO ===== */
.profile-card {
    background: none;
    padding: 25px 25px 20px;
    border-radius: 16px;
    text-align: center;
    width: 280px;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.profile-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 15px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
}

.profile-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin: 10px 0 4px;
}

.profile-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.contact-btn {
     display: inline-block;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 25px;
}

.contact-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-container {
        padding: 40px 35px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse;
        align-items: center;
        padding: 30px 25px;
        gap: 30px;
    }
    
    .profile-card {
        width: 100%;
        max-width: 320px;
    }
    
    .intro-text {
        text-align: center;
        width: 100%;
    }
    
    .intro-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .intro-text h1 br {
        display: none;
    }
    
    .intro-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .intro-text small {
        display: inline-block;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cv-btn {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 20px 15px;
        gap: 25px;
    }
    
    .profile-card {
        padding: 20px 15px;
    }
    
    .profile-photo {
        border-radius: 8px;
        aspect-ratio: 4/3;
    }
    
    .intro-text h1 {
        font-size: 1.4rem;
    }
    
    .intro-text p {
        font-size: 0.85rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .contact-btn,
    .cv-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
    }
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Liens de navigation */
nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav .nav-links li a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #f9fafb;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding: 5px 10px;
}

nav .nav-links li a:hover {
    color: #60a5fa;
    border-bottom: 2px solid #60a5fa;
}

/* ===== SELECTEUR DE LANGUES - VERSION BOULES ===== */
.language-selector {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: scale(1.05);
}

.lang-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}

.lang-btn.active:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        background-color: #111827;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 1000;
        gap: 10px;
    }

    .nav-links.active {
        display: flex !important;
    }

    .language-selector {
        position: relative;
        z-index: 1001;
        gap: 5px;
    }

    .lang-btn {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .burger {
        display: block;
        z-index: 1002;
    }
}

@media (max-width: 480px) {
    .lang-btn {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }
}

@media (min-width: 769px) {
    .language-selector {
        margin-left: 5px;
    }
}