:root {
  --beige: #f7e9d6;
  --blanc: #ffffff;
  --bordeaux: #5b0a0a;
  --texte: #3a1d0b;
}

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

body {
  line-height: 1.6;
  background-color: var(--beige);
  color: var(--texte);
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: var(--blanc);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header h1 {
  font-size: 1.5rem;
  color: var(--bordeaux);
}

header span {
  font-size: 0.7rem;
  color: var(--texte);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--texte);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.btn, .btn-outline {
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
}

.btn {
  background: var(--bordeaux);
  color: var(--blanc);
  border: none;
}

.btn-outline {
  border: 1px solid var(--bordeaux);
  background: var(--blanc);
  color: var(--bordeaux);
}


.hero h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 50;
  margin-bottom: 0.5em;
}


.hero .highlight {
  font-weight: 2000;
}


.hero .nowrap {
  white-space: nowrap;
}


.hero-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.hero {
  display: flex;
  overflow: hidden;
  background-color: var(--beige);
  color: var(--bordeaux);
}


.hero-text {
  flex: 1;
  padding: 3rem 2rem;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.caroussel-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  height: auto;
  margin-right: -8vw; /* Permet de dépasser la container */
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 80px;
}


@media (min-width: 1000px) and (max-width: 2000px) {
  .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 80px;
}
}

.intro {
  background-color: var(--blanc);
  padding: 3rem 0;
  text-align: center;
}

.why-us, .services, .pricing, .contact {
  background-color: var(--blanc);
  padding: 3rem 0;
}

.pricing {
  text-align: center;
  background: var(--bordeaux);
  color: var(--blanc);
  border-radius: 10px;
}

.pricing .percent {
  font-size: 4rem;
  margin: 0.5rem 0;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*
button {
  background-color: var(--bordeaux);
  color: var(--blanc);
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
} */

/* NAVBAR ALIGNÉE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--bordeaux);
  margin: 0;
}

.logo span {
  font-size: 0.7rem;
  color: var(--texte);
  display: block;
}

/* NAVIGATION */
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-right ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-right ul a {
  text-decoration: none;
  color: var(--bordeaux);
  font-weight: 500;
}

.nav-right ul a:hover {
  color: var(--bordeaux);
  font-weight: 700; 
}


.header-actions {
  display: flex;
  gap: 0.75rem;
}


h1, h2, h3, h4, nav, button, input, textarea {
  font-family: 'EB Garamond', serif;
}

body {
  font-family: 'EB Garamond', serif;
  line-height: 1.6;
  background-color: var(--beige);
  color: var(--texte);
}

/* ====== BURGER MENU RESPONSIVE ====== */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--bordeaux);
}

/* ====== MEDIA QUERIES ====== */
@media (max-width: 1100px) {
  .nav-right {
    display: none;
    flex-direction: column;
    background: var(--blanc);
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
  }

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

  .nav-right ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
  }

  .burger {
    display: block;
  }

  .hero-content {
    flex-direction: column;
    gap : 0rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
  }

  .hero-image img {
    border-radius: 20px;
    max-height: 250px;
  }
}



@media (max-width: 2000px) {
  .hero-image {
    margin-right: -200
  }

  .hero-content {
    gap: 20;
  }

  .hero {
    padding-right: 0;
  }
}

.carousel-section {
  display: flex;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: var(--beige);
  flex-wrap: wrap;
}

.carousel-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.carousel-wrapper {
  position: relative;
  width: 420px;
  height: 100%;
  overflow: hidden;
  padding-top: 30%;
}

.carousel-item {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 320px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(120%) scale(0.5);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.carousel-item img {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}

.carousel-text p {
  font-weight: bold;
  margin: 0;
  color: var(--bordeaux);
}
.carousel-text span {
  font-size: 0.9rem;
  color: #555;
}

#item1 {
  animation: animate1 9s linear infinite;
}
#item2 {
  animation: animate2 9s linear infinite;
}
#item3 {
  animation: animate3 9s linear infinite;
}

@keyframes animate1 {
  0%   { transform: translateY(120%) scale(0.5); opacity: 0; }
  10%  { transform: translateY(50%) scale(1); opacity: 1; }
  20%  { transform: translateY(-30%) scale(1); opacity: 1; }
  30%  { transform: translateY(-60%) scale(0.5); opacity: 0; }
  100% { transform: translateY(120%) scale(0.5); opacity: 0; }
}

@keyframes animate2 {
  20%  { transform: translateY(120%) scale(0.5); opacity: 0; }
  30%  { transform: translateY(50%) scale(1); opacity: 1; }
  40%  { transform: translateY(-30%) scale(1); opacity: 1; }
  50%  { transform: translateY(-60%) scale(0.5); opacity: 0; }
  100% { transform: translateY(120%) scale(0.5); opacity: 0; }
}

@keyframes animate3 {
  40%  { transform: translateY(120%) scale(0.5); opacity: 0; }
  50%  { transform: translateY(50%) scale(1); opacity: 1; }
  60%  { transform: translateY(-30%) scale(1); opacity: 1; }
  70%  { transform: translateY(-60%) scale(0.5); opacity: 0; }
  100% { transform: translateY(120%) scale(0.5); opacity: 0; }
}

.info-box h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 50;
  margin-bottom: 0.5em;
}

.carousel-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}

.info-box {
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  color: var(--bordeaux);
  max-width: 600px;
  position: relative;
  min-height: 300px;
}

.info-buttons {
  margin-top : 2rem;
  bottom: 1rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .carousel-section {
    flex-direction: column;
    align-items: center;
  }

  .info-buttons {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }
}



/* Why Us Section */
.why-us {
    background: #f5f3f0;
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    color:var(--bordeaux);
    margin-bottom: 60px;
    font-family: 'Georgia', serif;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bordeaux);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature h3 {
    font-size: 20px;
    color:var(--bordeaux);
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    font-size: 14px;
}

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

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f3f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Section */
.services {
    background: white;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: var(--bordeaux);
    margin-bottom: 60px;
    font-family: 'Georgia', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e0e0e0;
}

.service-card h3 {
    font-size: 20px;
    color: var(--bordeaux);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "✓";
    color: var(--bordeaux);
    margin-right: 10px;
}





/* Contact Section */
.contact {
    background: var(--beige);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact h2 {
    font-size: 36px;
    color: var(--bordeaux);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.contact-info {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 10px 0;
    color: #666;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bordeaux);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .cta-content {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .social-links {
                justify-content: center;
            }
        }


body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f3f0;
        }


/* Footer */
.footer {
    background: #f5f3f0;
    padding: 80px 0;
    box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: var(--bordeaux);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--texte);
}

.footer-logo {
    text-align: center;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.footer-logo .logo-icon {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-svg {
    width: 100%;
    height: 100%;
}

.footer-logo .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-name {
    font-size: 32px;
    font-weight: bold;
    color: #8B4513;
    line-height: 1;
}

.footer-logo .logo-subtitle {
    font-size: 14px;
    color: #8B4513;
    letter-spacing: 2px;
    margin-top: 2px;
}

.footer-contact {
    text-align: right;
}

.footer-contact h4 {
    color: var(--bordeaux);
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 1rem;
}

.footer-contact p {
    color: var(--bordeaux);
    margin-bottom: 5px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
    margin-top: 10px;
}

.social-link {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background: #6B3410;
}

.logo-contact-footer {
    padding-right: 0.5rem;
}

.logo-social-link {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* MEDIA QUERIES RESPONSIVE */

/* Tablettes en mode portrait (jusqu'à 768px) */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
    }
    
    .footer-nav a {
        font-size: 13px;
    }
    
    .footer-logo .logo-icon {
        width: 200px;
        height: 70px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact h4 {
        font-size: 16px;
        margin-top: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}



/* Autre */

        .btn {
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--bordeaux);
            color: white;
        }

        .btn-primary:hover {
            background: var(--bordeaux);
        }

        .btn-secondary {
            background: transparent;
            color: var(--bordeaux);
            border: 2px solid var(--bordeaux);
        }

        .btn-secondary:hover {
            background: var(--bordeaux);
            color: white;
        }

        /* Promo Section */

        .rectangle-container {
            background-color: var(--bordeaux);
            color: var(--blanc);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            font-family: 'EB Garamond', serif;
        }

        .rectangle-container h1 {
            margin-bottom: 20px;
            font-size: 2.5em;
            font-weight: bold;
        }


        .rectangle-container p {
            line-height: 1.6;
            font-size: 1.6em;
        }

        .rectangle-container h4{
            font-size: 100px;
            font-weight: bold;
            font-style:italic;
            font-family: 'EB Garamond', serif;
            margin-top: 0;
        }

        .italic{
          font-style: italic;
        }

        .promo{
          background: var(--blanc);
          padding: 60px 0;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
        }




        .navbar .logo-icon {
            width: 40px;
            height: 40px;
            background: #8b2635;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .navbar .logo-icon::before {
            content: '';
            position: absolute;
            width: 90px;
            height: 40px;
            background: white;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 8px;
        }

        .navbar .logo-icon::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 30px;
            background: white;
            bottom: 8px;
            border-radius: 1px;
        }

        .navbar .logo-image-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .navbar .logo-image-link:hover {
            transform: scale(1.05);
        }

        .navbar .logo-image {
            height: 50px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .navbar .logo-image:hover {
            opacity: 0.8;
        }



        /* Responsive Design */
@media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }

            .promo-percentage {
                font-size: 3rem;
            }

            .offers-container{
              flex-direction: column;
            }

            .offer-card{
              min-width: 0px;
            }
        }



                /* Main Content */
        

        .page-title {
            font-size: 2.5rem;
            color: #8B4513;
            margin-bottom: 1rem;
            font-weight: normal;
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 1.8rem;
            color: #8B4513;
            margin-bottom: 2rem;
            font-weight: normal;
        }

                .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;

        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .service-card h3 {
            color: var(--bordeaux);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }



         .intro-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #8B4513;
        }

        .offers-container {
            display: flex;
            gap: 4rem;
            margin: 60px 0;
            justify-content: center;
        }

        .offer-card {
            background-color: var(--bordeaux);
            color: white;
            padding: 40px 30px;
            max-width: 550px;
            min-width: 330px;
            text-align: center;
            border-radius: 15px;
        }

        .offer-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .offer-duration {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .commission-text {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .percentage {
            font-size: 80px;
            font-weight: bold;
            line-height: 1;
            margin: 20px 0;
        }

        .revenue-text {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .fee-text {
            font-style: italic;
            font-size: 12px;
            margin-bottom: 30px;
        }

        .services-list {
            text-align: left;
            font-size: 16px;
            line-height: 1.8;
        }

        .services-list ul {
            list-style: none;
            padding-left: 0;
        }

        .services-list li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 3px;
        }

        .services-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: white;
        }

        .services-list ul ul {
            margin-left: 20px;
            margin-top: 5px;
        }

        h1 {
            font-size: 48px;
            color: var(--bordeaux);
            margin-bottom: 30px;
            font-weight: normal;
        }

        .intro-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #666;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px;
        }





/* NAVIGATION */

.navright {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navright ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}


.navright ul a {
  text-decoration: none;
  color: var(--bordeaux);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navright ul a:hover {
  color: var(--bordeaux);
  font-weight: 700; 
}

.header-actions {
  display: flex;
  gap: 0.75rem;
}




        .navbar .logo-icon {
            width: 40px;
            height: 40px;
            background: #8b2635;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .navbar .logo-icon::before {
            content: '';
            position: absolute;
            width: 90px;
            height: 40px;
            background: white;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 8px;
        }

        .navbar .logo-icon::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 30px;
            background: white;
            bottom: 8px;
            border-radius: 1px;
        }

        .navbar .logo-image-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .navbar .logo-image-link:hover {
            transform: scale(1.05);
        }

        .navbar .logo-image {
            height: 50px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .navbar .logo-image:hover {
            opacity: 0.8;
        }



      

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

              .header-actions {
                flex-direction: column;
                width: 50%;
                }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

          }




        /* Menu burger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: #8b4513;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Navigation mobile */
        @media (max-width: 1100px) {
            .menu-toggle {
                display: flex;
            }

          


          /* Navigation mobile */
  .navright {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    max-height: 500px;
  }

  .navright.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navright ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navright ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  }

  .navright ul li:last-child {
    border-bottom: none;
  }

  .navright ul a {
    display: block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: normal;
    color: var(--bordeaux);
    transition: all 0.3s ease;
    width: 100%;
  }

  .navright ul a:hover {
    background: rgba(139, 69, 19, 0.1);
  }


            .auth-buttons {
                order: 2;
                gap: 10px;
            }

            .header {
                position: relative;
                z-index: 1002;
            }
        }
        @keyframes slideInMenu {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }