@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f5f5f5;
      color: #333;
    }
    
    .admin-container {
      display: flex;
      min-height: 100vh;
    }
    
    .admin-sidebar {
      width: 250px;
      background: #187236;
      color: white;
      padding: 20px;
      position: fixed;
      height: 100vh;
      overflow-y: auto;
    }
    
    .admin-sidebar h1 {
      font-family: 'Luckiest Guy', cursive;
      font-size: 24px;
      margin-bottom: 30px;
      color: #FFBC40;
    }
    
    .admin-sidebar nav a {
      display: flex;
      gap: 10px;
      padding: 12px 15px;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      margin-bottom: 8px;
      transition: all 0.3s;

    }
    
    .admin-sidebar nav a:hover,
    .admin-sidebar nav a.active {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .admin-main {
      flex: 1;
      margin-left: 250px;
      padding: 30px;
    }
    
    .admin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      background: white;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .admin-header h2 {
      font-size: 28px;
      color: #187236;
    }
    
    .admin-user {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .admin-content {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .btn {
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
    }
    
    .btn-primary {
      background: #4CAF50;
      color: white;
    }
    
    .btn-primary:hover {
      background: #45a049;
    }
    
    .btn-danger {
      background: #f44336;
      color: white;
    }
    
    .btn-danger:hover {
      background: #da190b;
    }
    
    .btn-secondary {
      background: #757575;
      color: white;
    }
    
    .btn-secondary:hover {
      background: #616161;
    }
    
    .alert {
      padding: 15px 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    
    .alert-success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }
    
    .alert-error,
    .alert-danger {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }
    
    .alert-info {
      background: #d1ecf1;
      color: #0c5460;
      border: 1px solid #bee5eb;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    
    table th,
    table td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    
    table th {
      background: #f5f5f5;
      font-weight: 600;
      color: #187236;
    }
    
    table tr:hover {
      background: #f9f9f9;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    
    .stat-card {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .stat-card h3 {
      font-size: 14px;
      color: #757575;
      margin-bottom: 10px;
    }
    
    .stat-card .stat-value {
      font-size: 32px;
      font-weight: bold;
      color: #187236;
    }
    
    .logout-btn {
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.2);
      color: #333;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      font-size: 14px;
    }
    
    .logout-btn:hover {
      background: rgba(255, 255, 255, 0.3);
    }
    
    .login-container {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: linear-gradient(135deg, #187236 0%, #4CAF50 100%);
    }
    
    .login-box {
      background: white;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      width: 100%;
      max-width: 400px;
    }
    
    .login-box h1 {
      font-family: 'Luckiest Guy', cursive;
      color: #187236;
      text-align: center;
      margin-bottom: 30px;
      font-size: 32px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #333;
      font-weight: 600;
    }
    
    .form-group input {
      width: 100%;
      padding: 12px;
      border: 2px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.3s;
    }
    
    .form-group input:focus {
      outline: none;
      border-color: #4CAF50;
    }

    /* Page headers and sections */
    .page-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .page-title {
      color: #187236;
      font-size: 24px;
      margin-bottom: 5px;
    }

    .page-subtitle {
      color: #757575;
    }

    .action-buttons {
      display: flex;
      gap: 10px;
    }

    /* Table styles */
    .text-center {
      text-align: center;
      display: flex;
      gap: 5px;
    }

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

    .btn-small {
      padding: 6px 12px;
      font-size: 12px;
    }

    .btn-inline {
      display: inline-block;
      margin-right: 5px;
    }

    /* Empty state */
    .empty-state {
      text-align: center;
      padding: 60px 20px;
      color: #757575;
    }

    .empty-state-title {
      font-size: 18px;
      margin-bottom: 10px;
    }

    /* Pagination */
    .pagination-container {
      margin-top: 20px;
      text-align: center;
    }

    /* Dashboard grid */
    .dashboard-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    /* Section titles */
    .section-title {
      color: #187236;
      margin-bottom: 20px;
      font-size: 20px;
    }

    .section-link {
      display: inline-block;
      margin-top: 15px;
      color: #4CAF50;
      text-decoration: none;
      font-weight: 600;
    }

    .section-link:hover {
      text-decoration: underline;
    }

    /* Contact detail */
    .contact-detail-box {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      margin-top: 20px;
    }

    .detail-section {
      margin-bottom: 20px;
    }

    .detail-label {
      color: #757575;
      font-size: 12px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .detail-value {
      font-size: 16px;
      font-weight: 600;
    }

    .detail-email {
      color: #4CAF50;
    }

    .detail-subject {
      font-size: 18px;
      font-weight: 600;
      color: #187236;
    }

    .message-content {
      background: white;
      padding: 20px;
      border-radius: 8px;
      line-height: 1.6;
    }

    .detail-actions {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 2px solid #ddd;
    }

    /* Login page */
    .login-subtitle {
      text-align: center;
      margin-bottom: 30px;
      color: #757575;
      font-size: 18px;
    }

    .login-alert {
      margin-bottom: 20px;
    }

    .full-width {
      width: 100%;
    }

    .mt-10 {
      margin-top: 10px;
    }

    .mt-20 {
      margin-top: 20px;
    }

    .mb-20 {
      margin-bottom: 20px;
    }

    /* Statistics page */
    .overflow-auto {
      overflow-x: auto;
    }

    .stat-percentage {
      text-align: right;
    }

    .word-break {
      word-break: break-all;
    }

    /* Additional utility classes */
    .mb-30 {
      margin-bottom: 30px;
    }

    table td strong,
    table th strong {
      font-weight: 600;
    }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

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

body{
    background: #FEFBF6;
}

/* Turbo Progress Bar */
.turbo-progress-bar {
    background-color: #AC700C !important;
    height: 3px;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 49px;
    border: 1px solid #F1E7D1;
    background: #FFF;
    position: relative;
}

header .logo{
    height: 40px;
    width: auto;
}

/* Bouton hamburger mobile */
.mobile-menu-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span{
    width: 25px;
    height: 3px;
    background: #AC700C;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Navigation desktop */
header nav.desktop-nav{
    display: flex;
    align-items: center;
    gap: 50px;
}

header nav.mobile-nav{
    display: none;
}

/* Afficher le menu mobile quand il est actif */
header nav.mobile-nav.active,
nav.mobile-nav.active{
    display: flex;
}

/* Overlay mobile */
.mobile-menu-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active{
    display: block;
    opacity: 1;
}

/* Navigation mobile */
nav.mobile-nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #FFF;
    z-index: 1000;
    padding: 80px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

nav.mobile-nav.active{
    right: 0;
}

.mobile-menu-close{
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FEFBF6;
    border: 2px solid #F1E7D1;
    border-radius: 50%;
    font-size: 36px;
    color: #AC700C;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-close:hover{
    transform: rotate(90deg);
    background: #AC700C;
    color: #FFF;
    border-color: #AC700C;
}

.mobile-menu-close span{
    display: block;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
}

nav.mobile-nav a{
    padding: 18px 25px;
    border-bottom: 1px solid #F1E7D1;
    width: 100%;
    display: block;
    text-decoration: none;
    color: #E8D7B4;
    font-family: "Luckiest Guy";
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-align: left;
}

nav.mobile-nav a:hover{
    background: #FEFBF6;
    color: #AC700C;
    padding-left: 30px;
}

nav.mobile-nav a.active{
    color: #AC700C;
    background: #FEFBF6;
    border-left: 4px solid #AC700C;
}

nav.mobile-nav a.contact{
    margin: 20px 20px 0 20px;
    border-radius: 30px;
    text-align: center;
    border-bottom: none;
    background: #AC700C;
    color: #FFF;
    padding: 15px 20px;
    border: 2px solid #AC700C;
}

nav.mobile-nav a.contact:hover{
    background: #FFF;
    color: #AC700C;
    padding-left: 20px;
}

nav.mobile-nav a.contact.active{
    background: #AC700C;
    color: #FFF;
    border-left: 2px solid #AC700C;
}

.mobile-lang-switcher{
    margin-top: auto;
    padding: 25px 20px;
    border-top: 2px solid #F1E7D1;
    justify-content: center;
    background: #FEFBF6;
}

.mobile-lang-switcher .lang-link{
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mobile-lang-switcher .lang-link.active{
    background: #AC700C;
    color: #FFF !important;
}

.mobile-lang-switcher .lang-link:hover{
    background: #F1E7D1;
    color: #AC700C;
}

header nav{
    display: flex;
    align-items: center;
    gap: 50px;
}

header nav a{
    color: #E8D7B4;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
    line-height: 14px; /* 87.5% */
    letter-spacing: 0.64px;
    padding-top: 5px;
    transition: color 0.3s ease, font-weight 0.3s ease;
    cursor: pointer;
}

header nav a.active, header nav a:hover{
    color: #AC700C;
    font-size: 16px;
    font-weight: 400;
}

header nav a.contact{
    margin-left: 7px;
    border-radius: 30px;
    background: #AC700C;
    border: 1px solid #AC700C;
    height: 50px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FEFBF6;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.64px;
    padding-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

header nav a.contact:hover{
    background: #FFF;
    color: #AC700C;
    border: 1px solid #AC700C;
}

/* Language Switcher */
.language-switcher{
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    font-family: "Luckiest Guy";
    color: #AC700C;
}

.language-switcher .lang-link{
    color: #E8D7B4;
    font-family: "Luckiest Guy";
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    padding-top: 0;
}

.language-switcher .lang-link:hover{
    color: #AC700C;
}

.language-switcher .lang-link.active{
    color: #AC700C;
    font-weight: 700;
}

.language-switcher .separator{
    color: #E8D7B4;
    font-family: "Nunito";
}

main{
    padding-top: 55px;
    max-width: 1390px;
    margin: 0 auto;
}

main .concree{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #F0E4CE;
    background: #FCF4E1;
    width: fit-content;
    height: 40px;
    padding: 11px 40px;
    justify-content: center;
    margin: 0 auto;
}

main .concree span{
    color: #AC700C;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

main .title{
    position: relative;
}

main .title h1{
    margin-top: 69px;
    text-align: center;
    color: #4CAF50;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #187236;
    font-family: "Luckiest Guy";
    font-size: 84px;
    font-weight: 400;
    line-height: 110px; /* 130.952% */
    letter-spacing: 4.2px;
}
  
main .title svg{
    position: absolute;
    top: -16%;
    left: 40.8%;
    transform: translateX(-50%);
    width: 73.897px;
    height: 36.459px;
    z-index: 9999;
    margin: 0 auto;
    overflow: visible;
}

section.banner{
    border-radius: 30px;
    border: 3px solid #187236;
    background: #4CAF50;
    margin: 46px 5%;
    padding-top: 44px;
    position: relative;
    height: 448px;

}

section.banner h1{
    text-align: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 39px; /* 162.5% */
    letter-spacing: 0.96px;
    font-family: "Nunito", sans-serif;
}

section.banner .ludo {
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 400px;
    margin-top: 30px;
    width: 100%;
    object-fit: cover;
}

.petit-aile{
    background-image: url(/images/petit-aile.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 119.378px;
    height: 119.378px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: transform 0.2s linear;
    padding-top: 5px;
}

.petit-aile svg{
    width: 46.228px;
    height: 22.807px;
}

.dice1{
    position: absolute;
    left: -5%;
    top: -10%;
    animation: floatDown 4s ease-in-out infinite;
}

.dice2{
    position: absolute;
    left: 11%;
    top: 35%;
    animation: floatDown 4s ease-in-out infinite;
}

.pion-jaune{
    position: absolute;
    left: 37%;
    top: 36%;
}

.pion-bleu{
    position: absolute;
    left: 52.5%;
    top: 30%;
}

.pion-rouge{
    position: absolute;
    left: 63.5%;
    top: 44%;
}

.pion-vert{
    position: absolute;
    left: 42.5%;
    top: 74%;
}

.ailes1{
    position: absolute;
    top: 0;
    right: 0;
    animation: floatDown 4s ease-in-out infinite;
}

.ailes2{
    position: absolute;
    top: 36%;
    right: 10%;
    animation: floatDown 4s ease-in-out infinite;
}

a.see-guide{
    color: #AC700C;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.32px;
    width: 324px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid #F1E7D1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10rem auto;
    padding-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

a.see-guide:hover{
    background: #AC700C;
    color: #fff;
    border: 1px solid #AC700C;
}

.cards-content{
    margin: 70px 5%;
    overflow: hidden;
}

.cards-content .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cards-content .head h1{
    color: #AC700C;
    font-family: "Luckiest Guy";
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.84px;
}

.cards-content .head a{
    border-radius: 30px;
    background: #AC700C;
    width: 192px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.32px;
    padding-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cards-content .head a:hover{
    background: #FFF;
    color: #AC700C;
    border: 1px solid #AC700C;
}

.cards-content .cards{
    display: flex;
    gap: 49px;
    margin-top: 34px;
}

.cards-content .cards .card{
    width: 33%;
    border-radius: 30px;
    border: 2px solid #187236;
    background: #4CAF50;
    padding: 49px;
    position: relative;
    height: 413px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cards-content .cards .card:hover{
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.cards-content .cards .card h1{
    color: #FFF;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #187236;
    font-family: "Luckiest Guy";
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 0.9px;
}

.cards-content .cards .card:hover h1{
    color: #AC700C;
    -webkit-text-stroke-width: 0px;
}

.cards-content .cards .card img {
    position: absolute;
    right: -24.5%;
    bottom: -19.3%;
}

.cards-content .cards .card a{
    display: none;
    align-items: center;
    gap: 20px;
    justify-content: end;
    position: sticky;
    z-index: 9999;
}

.cards-content .cards .card:hover a{
    display: flex;
}

.cards-content .cards .card a span{
    color: #AC700C;
    font-family: "Luckiest Guy";
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.44px;
    padding-top: 5px;
}

.joinus{
    margin: 58px 5%;
    border-radius: 25px;
    border: 1px solid #F1E7D1;
    background: #FFF;
    padding: 40px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.joinus p{
    color: #4CAF50;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #187236;
    font-family: "Luckiest Guy";
    font-size: 24px;
    font-weight: 400;
    line-height: 40px; /* 166.667% */
    letter-spacing: 0.96px;
}

.joinus form{
    display: flex;
    align-items: center;
    gap: 15px;
}

.joinus form input{
    border-radius: 30px;
    border: 1px solid #F2E4CD;
    background: #FEFBF6;
    height: 50px;
    padding: 1rem;
    width: 367px;
    color: #AC700C;
    font-family: "Nunito";
    font-size: 14px;
    font-weight: 400;
}

input:focus{
    outline: 1px solid #AC700C;
    border: 1px solid #AC700C;
}

.joinus form button{
    border-radius: 30px;
    background: #AC700C;
    width: 152px;
    height: 50px;
    border: none;
    color: #FFF;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.64px;
    padding-top: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.joinus form button:hover{
    background: #FFF;
    color: #AC700C;
    border: 1px solid #AC700C;
}

.joinus form button:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-message{
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-message.success{
    background: #E8F5E9;
    color: #2E7D32;
    border: 2px solid #4CAF50;
}

.newsletter-message.error{
    background: #FFEBEE;
    color: #C62828;
    border: 2px solid #F44336;
}

footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 68px 5%;
}

footer .socials{
    display: flex;
    align-items: center;
    gap: 16px;
}

footer .socials a{
    width: 49.71px;
    height: 49.71px;
    background-color: #F7EEDF;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s all ease-in-out;
    cursor: pointer;
}

footer .socials a:hover{
    background-color: #AC700C;
}

footer .socials a svg{
    fill: #AC700C;
}

footer .socials a:hover svg{
    fill: #fff 
}

.end{
    margin-top: 58px;
    text-align: center;
    margin-bottom: 15px;
}

.end p{
    color: #AC700C;
    text-align: center;
    font-family: "Nunito";
    font-size: 12px;
    font-weight: 400;
}

.banner svg, .petit-aile svg {
    display: block;
    margin: 0 auto;
    transform: translateY(-2px); /* Pour éviter l'effet coupé en bas */
    overflow: visible;
}
  
.aile-gauche {
    transform-origin: right center;
    animation: flap-left 2s ease-in-out infinite;
}
  
.aile-droite {
    transform-origin: left center;
    animation: flap-right 2s ease-in-out infinite;
}

.petit-aile .aile-gauche {
    animation: flap-left 1s ease-in-out infinite;
}
  
.petit-aile .aile-droite {
    animation: flap-right 1s ease-in-out infinite;
}
  
@keyframes flap-left {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(7deg); /* Vers l'extérieur */
    }
}
  
@keyframes flap-right {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(-7deg); /* Vers l'extérieur */
    }
}

@keyframes floatDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px); /* très léger */
    }
    100% {
      transform: translateY(0);
    }
}

a{
    text-decoration: none;
}

.agricards-title{
    color: #AC700C;
    font-family: "Luckiest Guy";
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin: 0 5%;
}

.agricards {
    margin: 53px 5%;
}

.agricards .menu{
    display: flex;
    align-items: center;
    gap: 17px;
}

.agricards .menu .menu-item{
    border-radius: 30px;
    border: 1px solid #EDDFC7;
    padding: 4px 30px;
    color: #E6D4B6;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.32px;
    padding-top: 10px;
    cursor: pointer;
}

.agricards .menu .menu-item.active{
    border-radius: 30px;
    border: 1px solid #EDDFC7;
    background: #AC700C;
    color: #FFF;
}

.agricards .cards{
    margin-top: 31px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 53px;
}

.agricards .cards .card{
    border-radius: 20px;
    border: 1px solid #E3D1AD;
    padding: 27px 31px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.agricards .cards .card:hover{
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}


.agricards .cards .card h2{
    text-align: center;
    color: #4BA24E;
    font-family: "Luckiest Guy";
    font-size: 16px;
    font-weight: 400;
}

.agricards .cards .card img{
    margin: 30px auto;
    display: flex;
    justify-content: center ;
}

.agricards .cards .card .question{
    border-radius: 10px;
    background: #AC700C;
    width: 79px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #FFF;
    font-family: "Luckiest Guy";
    font-size: 10px;
    font-weight: 400;
    padding-top: 5px;
}

.agricards .cards .card p{
    color: #AC700C;
    text-align: center;
    font-family: "Nunito";
    font-size: 13px;
    font-weight: 700;
    line-height: 26px; /* 200% */
    width: 70%;
    margin: 12px auto;
}

.agricards .cards .card .dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 33px;
}

.agricards .cards .card .dots .dot{
    border-radius: 9px;
    background: #EFE8DC;
    width: 9px;
    height: 9px;
}

.agricards .cards .card .dots .dot.active{
    background: #AC700C;
}

.cards-slider-container {
    margin-top: 31px;
}

.cards-slider-container .cards-slider{
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px #0000001A;
    padding-bottom: 20px;
}

.card-header{
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(180.04deg, #DFFCE0 0.04%, #FFFFFF 78.28%);
    height: 66px;
    border-bottom: 1px solid #E3D1AD;
    border-radius: 20px 20px 0 0;
    padding: 0 20px;
}

.card-header h2{
    font-family: Luckiest Guy;
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #4BA24E;
}

.card-slide{
    display: none;
}

.card-slide.active{
    display: block;
}

.card-body{
    display: flex;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
    gap: 30px;
}

.card-body  .right{
    width: 60%;
}

.card-answers div{
    width: 80%;
}

.card-body .left{
    width: 40%;
    border: 1px solid #E3D1AD;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 270px;
}

.card-body .left img{
    width: 149px;
    height: 149px;
}

.card-body .left h3{
    font-family: Luckiest Guy;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    color: #4BA24E;

}

.card-question{
    font-family: Nunito;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: 0%;
    color: #AC700C;
    border: 1px solid #E3D1AD;
    border-radius: 15px;
    padding: 21px 32px;
    height: 70%;
}

.card-answers{
    border: 1px solid #E3D1AD;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 32px;
}

.card-answers p{
    font-family: Luckiest Guy;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 14px;
    letter-spacing: 0%;
    color: #4BA24E;
}

.card-answers .pts{
    background: #FFBC40;
    border: 1px solid #AC700C;
    font-family: Luckiest Guy;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.voice-msg{
    width: calc(100% - 40px);
    display: flex;
    gap: .5rem;
    align-items: center;
    border: 1px solid #E3D1AD;
    background: #FEFBF6;
    margin: 0 20px;
    padding: 15px 20px;
    border-radius: 15px;
}

.voice-msg button{
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.voice-track {
    flex: 1;
    height: 1px;
    background: #E3D1AD;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.voice-progress {
    height: 100%;
    width: 0%;
    background: #AC700C;
    border-radius: 3px;
}

.voice-msg span{
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 4%;
    color: #AC700C;
    background: #F1E6D3;
    padding: 5px 15px;
    border-radius: 20px;
}

.pagination-case{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.pagination-case button{
    border: 1px solid #EDDFC7;
    padding: 13px 18px;
    border-radius: 15px;
    background-color: transparent;
    font-family: Luckiest Guy;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #AC700C;
}

.pagination-case button:disabled{
    background: transparent;
    color: #E6D4B6;
    cursor: not-allowed;
    opacity: 0.7;
}

.pagination-case .pagination button{
    opacity: .7;
}

.pagination-case .pagination button.active{
    opacity: 1;
    background: #AC700C1A;
    border: 1px solid #AC700C
}

.pagination-case .pagination button:disabled{
    opacity: 0.7;
}

.pagination-case .pagination .ellipsis{
    display: inline-block;
    padding: 0 5px;
    color: #AC700C;
    font-family: Luckiest Guy;
    font-size: 16px;
    opacity: 0.7;
    user-select: none;
}

.event-type{
    margin-bottom: 15px;
}

.badge-opportunite{
    background-color: #4BA24E1A;
    color: #4BA24E;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: Luckiest Guy;
    font-size: 14px;
    display: inline-block;
    border: 1px solid #4BA24E;
}

.badge-challenge{
    background-color: #D946461A;
    color: #D94646;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: Luckiest Guy;
    font-size: 14px;
    display: inline-block;
    border: 1px solid #D94646;
}

.event-description{
    margin-bottom: 15px;
}

.event-description p{
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    color: #AC700C;
    font-family: "Luckiest Guy";
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-header p {
    color: #4CAF50;
    font-family: "Nunito";
    font-size: 20px;
    font-weight: 600;
}

.contact-container {
    background: #FFF;
    border-radius: 25px;
    border: 1px solid #F1E7D1;
    padding: 50px;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #AC700C;
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    border-radius: 15px;
    border: 1px solid #F2E4CD;
    background: #FEFBF6;
    padding: 15px 20px;
    font-family: "Nunito";
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 2px solid #AC700C;
    background: #FFF;
}

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

.submit-btn {
    border-radius: 30px;
    background: #AC700C;
    border: none;
    color: #FFF;
    font-family: "Luckiest Guy";
    font-size: 18px;
    padding: 18px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    letter-spacing: 0.72px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(172, 112, 12, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-message {
    margin-top: 30px;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 2px solid #4CAF50;
}

.contact-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 2px solid #F44336;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #FFF;
    border-radius: 20px;
    border: 2px solid #F1E7D1;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #AC700C;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(172, 112, 12, 0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: #FEFBF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #F1E7D1;
}

.info-card h3 {
    color: #AC700C;
    font-family: "Luckiest Guy";
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #666;
    font-family: "Nunito";
    font-size: 16px;
}

.waitlist-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 30px 20px;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
}


@media (max-width: 968px) {
    /* Afficher le bouton hamburger et cacher le menu desktop */
    .mobile-menu-toggle{
        display: flex;
    }
    
    header nav.desktop-nav{
        display: none;
    }
    
    header{
        padding: 15px 20px;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    header .logo{
        height: 38px;
    }
    
    /* Amélioration du menu mobile */
    nav.mobile-nav,
    header nav.mobile-nav{
        width: 90%;
        max-width: 350px;
    }
    
    nav.mobile-nav.active,
    header nav.mobile-nav.active{
        display: flex !important;
    }
    
    .mobile-menu-overlay{
        display: block;
    }
}

@media (max-width: 700px) {

    *{
        overflow-x: hidden;
    }
    
    header{
        padding: 12px 15px;
    }
    
    header .logo{
        height: 32px;
    }
    
    .mobile-menu-toggle{
        padding: 6px;
    }
    
    .mobile-menu-toggle span{
        width: 24px;
        height: 3px;
    }
    
    /* Menu mobile pour petits écrans */
    nav.mobile-nav,
    header nav.mobile-nav{
        width: 100%;
        max-width: 100%;
        padding: 70px 0 20px 0;
    }
    
    nav.mobile-nav.active,
    header nav.mobile-nav.active{
        display: flex !important;
    }
    
    nav.mobile-nav a{
        padding: 16px 20px;
        font-size: 17px;
    }
    
    .mobile-menu-close{
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-close span{
        font-size: 28px;
    }

    main{
        margin: 0 20px;
    }

    main .title h1{
        font-size: 38px;
        line-height: 54px; /* 142.105% */
        letter-spacing: 1.9px;
    }

    main .title svg {
        top: -33%;
        left: 34.8%;
    }

    .cards-content{
        margin-top: 30px;
    }

    .cards-content .cards{
        flex-direction: column;
    }

    .cards-content .cards .card{
        width: 100%;
        padding: 20px;
    }

    .cards-content .head{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cards-content .cards .card img {
        right: -28%;
    }

    .joinus{
        flex-direction: column;
        padding: 25px;
        gap: 15px;
    }

    .joinus p{
        text-align: center;
        font-size: 20Px;
        letter-spacing: 0.8px;
        line-height: 32px; /* 160% */
    }

    .joinus form{
        flex-direction: column;
        width: 100%;
    }

    .joinus form input{
        width: 100%;
    }

    .joinus form button{
        width: 100%;
    }

    footer{
        flex-direction: column;
        gap: 30px;
    }

    section.banner{
        height: 300px;
        display: flex;
        flex-direction: column;
        padding-top: 0;
        gap: 0px;
        position: static;
        overflow: hidden;
        z-index: 999;
    }

    section.banner .ludo{
        height: 122px;
        position: absolute;
        bottom: 146px;
        z-index: 9999;
        left: 0;
        right: 0;
        width: calc(100% - 20px);
    }

    .cc{
        position: relative;
        height: 100%;
        z-index: 999999;
        margin-top: 1rem;
    }

    a.see-guide{
        margin: 5rem auto;
    }

    section.banner h1{
        font-size: 17px;
        line-height: 29px; /* 170.588% */
        padding-top: 26px;
        height: 100px;
    }

    section.banner a{
        display: none;
    }

    main .concree{
        overflow: hidden;
    }

    .agricards-title{
        text-align: center;
        margin: 0;
    }

    .agricards{
        margin: 30px 0;
    }

    .agricards .menu{
        flex-direction: column;
        gap: 10px;
    }

    .agricards .menu .menu-item{
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .card-body{
        flex-direction: column;
    }

    .card-body .left, .card-body .right{
        width: 100%;
    }

    .card-answers p{
        line-height: 25px;
    }

    .pagination{
        display: none;
    }

    .dice1{
        left: 2%;
        top: 3%;
        width: 63px;
    }

    .dice2{
        width: 70px;
    }

    .ailes1{
        width: 80px;
    }

    .petit-aile{
        width: 60px;
        height: 60px;
    }

    .petit-aile svg{
        width: 30px;
        height: 15px;
    }

    .pion-jaune{
        left: 35%;
        top: 75%;
        width: 22px;
    }

    .pion-vert{
        width: 22Px;
    }

    .pion-bleu{
        top: 63%;
        width: 22px;
    }

    .pion-rouge{
        width: 22px;
        top: 82%;
    }

    .card-header h2 {
        font-family: Luckiest Guy;
        font-weight: 400;
        font-size: 24px;
        line-height: 34px;
        letter-spacing: 0%;
        color: #4BA24E;
    }
}
