@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Ubuntu:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Playfair+Display:wght@400;700&display=swap"); /* Added Playfair Display and Montserrat with multiple weights */


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

:root {
  /* Palette Minérale Haut de Gamme */
  --primary-color: #2E4F4F;        /* Vert Minéral - Profond, apaisant, raffiné */
  --secondary-color: #DDD0C8;  /* Beige Chaleureux - Douceur, chaleur, équilibre */
  --accent-color: #C9B37E;         /* Or Sablé - Détail haut de gamme, discret mais chic */
  --dark-accent: #1A1A1A;          /* Noir Profond - Fonds sombres, pieds de page */
  --mineral-light: #5A7A7A;        /* Vert minéral clair */
  --mineral-pale: #E8EFEF;         /* Vert minéral très pâle */
  --sand-gold-light: #E6D5B7;      /* Or sablé clair */
  --marble-white: #F5F5F5;         /* Marbre Blanc Cassé - Base neutre pierre naturelle */

  /* Text Colors */
  --text-dark: #2C2C2C;            /* Gris Anthracite - Excellente lisibilité */
  --text-medium: #4A4A4A;          /* Gris moyen */
  --text-light: #666666;           /* Gris clair */
  --text-pale: #888888;            /* Gris pâle */

  /* Background Colors */
  --white: #ffffff;
  --off-white: #F5F5F5;            /* Marbre Blanc Cassé */
  --light-gray: rgba(255, 255, 255, 0.3);
  --cream: #fffef7;
  --dark-bg: #1A1A1A;              /* Noir Profond */

  /* Enhanced Gradients Minéraux */
  --gradient-primary: linear-gradient(135deg, var(--marble-white) 0%, var(--mineral-pale) 50%, var(--secondary-color) 100%); /* Using defined variables */
  --gradient-secondary: linear-gradient(135deg, var(--marble-white) 0%, var(--mineral-pale) 100%); /* Using defined variables */
  --gradient-mineral: linear-gradient(135deg, var(--primary-color) 0%, var(--mineral-light) 100%); /* Using defined variables */
  --gradient-gold: linear-gradient(135deg, var(--accent-color) 0%, var(--sand-gold-light) 100%); /* Using defined variables */
  --gradient-soft: linear-gradient(135deg, var(--white) 0%, var(--marble-white) 100%); /* Using defined variables */
  --gradient-hero: linear-gradient(45deg,
          rgba(32, 60, 60, 0.2) 25%,
          rgba(72, 110, 110, 0.35) 50%,
          rgba(220, 220, 220, 0.85) 100%
  );  --gradient-dark: linear-gradient(135deg, var(--dark-accent) 0%, var(--text-dark) 100%); /* Using defined variables */
  --gradient-marble: linear-gradient(135deg, var(--marble-white) 0%, var(--white) 30%, var(--marble-white) 60%, var(--mineral-pale) 100%); /* Using defined variables */

  /* Enhanced Shadows Minérales */
  --shadow-soft: 0 8px 32px rgba(46, 79, 79, 0.08);
  --shadow-medium: 0 12px 40px rgba(46, 79, 79, 0.12);
  --shadow-strong: 0 16px 48px rgba(46, 79, 79, 0.15);
  --shadow-mineral: 0 8px 25px rgba(46, 79, 79, 0.2);
  --shadow-gold: 0 8px 25px rgba(201, 179, 126, 0.2);
  --shadow-marble: 0 4px 20px rgba(46, 79, 79, 0.06);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-ease: all 0.3s ease-in-out;
  --transition :all 0.6s ease-in-out;


  /* Main Colors */
  --warm-beige: #E3D3B3;
  --deep-black: #1A1A1A;

  /* Extended Palette for Design System */
  --marble-light: rgba(245, 245, 245, 0.9);
  --marble-texture: rgba(221, 208, 200, 0.3);
  --mineral-light: rgba(46, 79, 79, 0.1);
  --mineral-medium: rgba(46, 79, 79, 0.3);
  --mineral-shadow: rgba(46, 79, 79, 0.2);
  --gold-accent: rgba(201, 179, 126, 0.8);
  --gold-highlight: rgba(201, 179, 126, 0.2);

  /* Typography & Spacing */
  --border-radius-lg: 24px;
  --border-radius-sm: 12px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif; /* Changed to Open Sans from Inter for consistency with imports */
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--gradient-marble);
  overflow-x: hidden;
  position: relative;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;

}
.blurred {
  filter: blur(5px);
  pointer-events: none; /* Empêche les interactions sur le contenu flouté */
  user-select: none; /* Empêche la sélection */
  transition: filter 0.3s ease;
}
/* Effet marbre subtil sur le body */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Using more subtle and better integrated marble patterns */
  background:
          radial-gradient(circle at 20% 80%, rgba(46, 79, 79, 0.02) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(201, 179, 126, 0.02) 0%, transparent 50%),
          linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.2) 50%, transparent 51%); /* Slightly less opaque lines */
  background-size: 800px 800px, 600px 600px, 4px 4px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7; /* Soften the marble effect */
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--marble-white);
  border-radius: var(--radius-sm); /* Using variable for consistency */
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-mineral);
  border-radius: var(--radius-sm); /* Using variable for consistency */
  border: 2px solid var(--marble-white);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-gold);
  cursor: pointer; /* Indicate it's interactive */
}

/* Headings */
h1, h2, h3, h4, h5, h6 { /* Added h6 */
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark); /* Using text-dark for headings for consistency */
  margin-bottom: 0.5em; /* Add some spacing below headings */
  line-height: 1.2;
}

/* Text Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--dark-accent) !important; /* Using dark-accent for a truly black feel */
}

a.text-primary {
  color: var(--primary-color) !important;
  transition: var(--transition-ease); /* Added transition for hover */
}
a.text-primary:hover {
  color: var(--mineral-light) !important; /* Lighter primary on hover */
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border-radius: var(--radius-sm); /* Using variable for consistency */
  font-size: 1rem; /* Adjusted font size for better readability */
  font-weight: 500; /* Added font-weight */
  transition: var(--transition-ease); /* Smooth transitions for all buttons */
  text-transform: uppercase; /* Make button text uppercase */
  letter-spacing: 0.5px;
  border: 2px solid transparent; /* Ensure consistent border for all buttons */
}

.btn:active,
.btn:focus {
  outline: none;
  box-shadow: var(--shadow-soft); /* Applied a soft shadow on focus/active */
}

.btn.btn-primary {
  background: var(--gradient-mineral); /* Use gradient for a richer look */
  border-color: var(--primary-color);
  color: var(--white);
}
.btn.btn-primary:hover {
  background: var(--gradient-gold); /* Gold gradient on hover */
  border-color: var(--accent-color);
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: var(--shadow-medium);
}

.btn.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn.btn-white:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
  box-shadow: none; /* Remove shadow on hover for a cleaner look */
}

.btn.btn-outline-white {
  border: 2px solid var(--white); /* Consistent border width */
  background-color: transparent;
  color: var(--white);
}
.btn.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-color) !important;
  box-shadow: var(--shadow-soft);
}

.btn.btn-outline-black {
  border: 2px solid var(--text-pale); /* Using a lighter shade of black for border */
  background-color: transparent;
  color: var(--text-dark);
}
.btn.btn-outline-black:hover {
  background: var(--dark-accent);
  color: var(--white) !important;
  border-color: var(--dark-accent);
  box-shadow: var(--shadow-soft);
}

/* Custom Button (Example: pink from original, harmonized with palette) */
.custom-btn {
  background-color: #E67A7A; /* A softer, more mineral-friendly pink/red */
  border-color: #E67A7A;
  color: white;
  box-shadow: var(--shadow-soft);
}
.custom-btn:hover {
  background-color: #D16868; /* Slightly darker on hover */
  border-color: #D16868;
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

/* Form Controls */
.form-control,
.custom-select {
  border: 2px solid var(--mineral-pale); /* Softer border color */
  font-size: 1rem; /* Consistent font size */
  height: 48px; /* Slightly increased height for better touch targets */
  padding: 0.75rem 1rem; /* More generous padding */
  border-radius: var(--radius-sm);
  transition: var(--transition-ease);
  color: var(--text-dark); /* Ensure text color is readable */
  background-color: var(--off-white); /* Slightly off-white background */
}

.form-control::placeholder {
  color: var(--text-pale); /* Softer placeholder color */
  opacity: 1; /* Firefox fix */
}

.form-control:active,
.form-control:focus,
.custom-select:active,
.custom-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 79, 79, 0.25); /* Primary color focus ring */
  background-color: var(--white); /* White background on focus */
}

/* Gutter Adjustments */
.gutter-v1 {
  margin-right: -20px;
  margin-left: -20px;
}
@media (max-width: 991.98px) {
  .gutter-v1 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.gutter-v1 > .col,
.gutter-v1 > [class*="col-"] {
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 991.98px) {
  .gutter-v1 > .col,
  .gutter-v1 > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* Spinner */
.spinner-border {
  color: var(--primary-color);
}

/* Position Utility */
.position-relative {
  position: relative;
}
.logo{
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 900;
  z-index: 1001;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #2c3e50;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.logo {
  position: fixed;
  top: 40px;
  left: 30%;
  transform: translateY(-50%) scale(0.5);
  font-size: 32px;
  gap: 10px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-img {
  width: 200px;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}


.logo-wrapper.scrolled .logo-text {

}

.logo-text {
  background: var(--text-dark);
  z-index: 1002;

  font-size: 100px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: 4px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo-text::after {
  content: '';
  position: absolute;

  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo:hover .logo-text::after {
  transform: scaleX(1);
}








/* Responsive adjustments for logo */
@media (max-width: 768px) {
  .logo-img {
    height: 90px; /* Smaller image on smaller screens */
  }

  .logo-text {
    font-size: 2.5rem; /* Smaller text on smaller screens */
  }
}

.footer {
  background: var(--gradient-dark);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.footer-section:hover h3::after {
  width: 3rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 1.2rem;
  transform: translateX(0.2rem);
}

.footer-links a:hover::before {
  width: 0.8rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .social-icons {
    justify-content: flex-start;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
  }

  .footer-logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .footer-links-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.85rem;
  }

  .footer-links-bottom a {
    padding: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem 1rem;
  }

  .footer-container {
    gap: 2rem;
  }

  .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-links-bottom {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .main-content h1 {
    font-size: 5rem !important;
  }

  .main-content p {
    font-size: 1rem !important;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.floating-element:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
}

.floating-element:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.3;
  }
}
@media (max-width: 768px) {
  .logo {
    justify-content: center;
  }

  .logo-img {
    height: 80px;
    margin-bottom: 0.5rem;
  }

  .logo-text {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 16px;
  }

  .hero-content {
    margin-top: 150px;
    max-width: 100%;
    padding: 0 12px;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
  }

  .feature-card {
    padding: 32px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-row:nth-child(even) {
    direction: ltr; /* pour éviter inversion sur mobile */
  }

  .product-image img {
    height: 250px;
  }

  .product-content h3 {
    font-size: 2rem;
  }

  .product-content p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .global-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .global-text h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .stat-item {
    padding: 24px 16px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 60px 16px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}
/* Responsive : tablettes (max-width 1024px) */
@media (max-width: 1024px) {
  .hero {
    height: 80vh;
    background-position: center center;
  }

  .hero-content {
    margin-top: 250px;
    max-width: 600px;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .hero p {
    font-size: 1.2rem;
    max-width: 90%;
  }
}

/* Responsive : mobiles (max-width 768px) */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin-top: 0;
    max-width: 90%;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    background-size: cover;   /* show full image */
    background-position: center center  ;
    height: 50vh;               /* adjust height as needed */
    background-repeat: no-repeat;
  }
}
/* --- NAVBAR --- */
.navbar {
  position: fixed;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 999;

  transition: top 0.4s ease, opacity 0.4s ease;
  background-color: #121212;
  opacity: 1;
  pointer-events: auto;
}



.logo-wrapper {

  font-weight: 900;
  z-index: 1001;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  position: fixed;
  top: 40px;
  left: 30%;
  transform: translateY(-50%) scale(0.5);
  font-size: 32px;
  gap: 10px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}



.logo-img {
  width: 200px;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.logo-wrapper.scrolled .logo-img {
  width: 200px;
}
.logo-wrapper.scrolled .logo-text {
  background: var(--text-dark);
  z-index: 1002;
  -webkit-background-clip: text;

}

.logo-text {
  background: #121212;
  font-size: 100px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: 4px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo-text::after {
  content: '';
  position: absolute;

  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-text::after {
  transform: scaleX(1);
}
/* Mobile phones */
@media (max-width: 480px) {
  .logo-wrapper {
    top: 40px;
    left: 0%;
    font-size: 3vw;
    gap: 0.5vw;
  }



  .logo-img {
    width: 40vw;
    max-width: 140px;
  }
  .logo-text {
    font-size: 17vw;

  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .logo-wrapper {

    top: 15px;
    left: 20%;
    font-size: 3vw;
    gap: 0.75vw;
  }

  .logo-wrapper.scrolled {

  }

  .logo-img {
    width: 30vw;
    max-width: 180px;
  }
}

/* Larger desktops */
@media (min-width: 1200px) {
  .logo-wrapper {
    font-size: 100px; /* fallback to original */
    gap: 20px;
  }

  .logo-wrapper.scrolled {
    font-size: 32px;
    gap: 10px;
  }

  .logo-img {
    width: 200px;
  }
}