*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}


/* ANIMATIONS CUSTOM */
@keyframes flyIn {
    0% {
      opacity: 0;
      transform: translateY(100px) rotate(5deg) scale(0.8);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(0) scale(1);
    }
  }
  
  @keyframes swirlIn {
    0% {
      opacity: 0;
      transform: scale(0) rotate(-540deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
  }
  
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* CLASSES D'ANIMATION */
  [data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-flyIn { animation: flyIn 1s ease-out forwards; }
  .animate-swirlIn { animation: swirlIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .animate-bounceIn { animation: bounceIn 1s both; }
  .animate-slideInLeft { animation: slideInLeft 1s ease-out forwards; }
  .animate-slideInRight { animation: slideInRight 1s ease-out forwards; }
  
  /* DELAIS */
  .delay-1 { animation-delay: 0.2s !important; }
  .delay-2 { animation-delay: 0.4s !important; }
  .delay-3 { animation-delay: 0.6s !important; }
  .delay-4 { animation-delay: 0.8s !important; }



:root {
    /* Nouvelle palette basée sur #FFEBAE */
    --primary: #FFEBAE;         /* Couleur logo - doré clair */
    --secondary: #D4A017;       /* Doré foncé (contraste) */
    --tertiary: #8B8000;        /* Olive doré */
    --light: #FFFDF5;           /* Fond crème très clair */
    --dark: #2C2C2C;            /* Texte noir doux */
    --accent: #C1921E;          /* Accent doré */
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
header {
    background: rgba(255, 251, 240, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--secondary);
    animation: rotate 20s linear infinite;
    animation-play-state: paused;
}

.logo:hover .logo-icon {
    animation-play-state: running;
    border-color: var(--accent);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    transition: var(--transition);
}

.logo:hover .logo-name {
    color: var(--accent);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

nav a:hover {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.don-btn {
    background: var(--secondary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-weight: 600;
    border: none;
}

.don-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--accent);
}

.don-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/acceuil.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 235, 174, 0.2);
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 30%;
    animation: float 5s ease-in-out infinite 1s;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-highlight {
    background: linear-gradient(to right, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
}

.about-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.about-highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* President Section */
/* Section Président - Version optimisée espacement */
/* Style original avec seulement espacements modifiés */
.president-section {
    background: linear-gradient(135deg, #FFFDF5 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.president-container {
    display: flex;
    align-items: center;
    gap: 30px; /* Ajusté (original: 50px) */
    position: relative;
}

.president-photo-wrapper {
    flex: 1;
    position: relative;
    min-width: 350px;
}

.president-photo {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.president-photo img {
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    height: 90vh;
    transition: transform 0.5s ease;
}

.photo-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 15px;
    top: 20px;
    left: 20px;
    z-index: 1;
    transform: rotate(3deg);
    transition: all 0.5s ease;
}

.president-message {
    flex: 1.5;
    padding-left: 25px; /* Ajusté (original: 40px) */
    position: relative;
}

.message-content {
    background: white;
    padding: 35px; 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    height: 80%;
}

.message-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-top: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
}

.highlight-paragraph {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 20px 0; /* Ajusté */
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.key-points {
    display: flex;
    gap: 20px;
    margin: 20px 0; /* Ajusté */
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 160, 23, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.point i {
    color: var(--secondary);
}

.mission-vision {
    margin-top: 30px; /* Ajusté */
    padding: 20px;
    background: rgba(255, 235, 174, 0.2);
    border-radius: 10px;
    position: relative;
}

.mission h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.president-signature {
    text-align: right;
    margin-top: 30px; /* Ajusté */
    font-style: italic;
    display: flex;
    flex-direction: column;
}

.president-signature span:first-child {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .president-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .president-photo-wrapper {
        margin-bottom: 30px;
    }
    
    .president-message {
        padding-left: 0;
    }
}

.highlight {
    font-weight: 600;
    color: #D4A017;
    margin: 20px 0;
    padding-left: 15px;
    border-left: 3px solid #D4A017;
}

.key-points {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.mission-box {
    margin: 25px 0;
    padding: 15px;
    background: rgba(255, 235, 174, 0.15);
    border-radius: 8px;
}

.mission-box h4 {
    color: #D4A017;
    margin-bottom: 8px;
}

.signature {
    margin-top: 30px;
    font-style: italic;
    text-align: right;
}

.signature span:first-child {
    font-weight: 600;
    color: #D4A017;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .president-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .president-photo-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .president-text-container {
        padding-left: 0;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-title::after {
    background: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 174, 0.4), transparent);
    transition: 0.5s;
}

.partner-item:hover::before {
    left: 100%;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Donation Section */
.donation-section {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    opacity: 0.1;
}

.donation-section .section-title {
    color: white;
}

.donation-section .section-title::after {
    background: white;
}

.donation-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    position: relative;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color:#D4A017;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#newsletter-form input {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: var(--transition);
}

#newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.2);
}

.form-message {
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 20px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .president-photo {
        margin-bottom: 30px;
    }
}

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 120px 0;
        height: auto;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ANIMATIONS CUSTOM */
@keyframes flyIn {
    0% {
      opacity: 0;
      transform: translateY(100px) rotate(5deg) scale(0.8);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(0) scale(1);
    }
  }
  
  @keyframes swirlIn {
    0% {
      opacity: 0;
      transform: scale(0) rotate(-540deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
  }
  
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* CLASSES D'ANIMATION */
  [data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-flyIn { animation: flyIn 1s ease-out forwards; }
  .animate-swirlIn { animation: swirlIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .animate-bounceIn { animation: bounceIn 1s both; }
  .animate-slideInLeft { animation: slideInLeft 1s ease-out forwards; }
  .animate-slideInRight { animation: slideInRight 1s ease-out forwards; }
  
  /* DELAIS */
  .delay-1 { animation-delay: 0.2s !important; }
  .delay-2 { animation-delay: 0.4s !important; }
  .delay-3 { animation-delay: 0.6s !important; }
  .delay-4 { animation-delay: 0.8s !important; }
  /* Styles du bouton Burger */
/* Styles de base */
#navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

#navbar ul li a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

#navbar ul li a:hover {
    color: var(--secondary);
}

/* Bouton Burger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Version mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    #navbar ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 251, 240, 0.98);
        backdrop-filter: blur(8px);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    #navbar.active ul {
        display: flex;
    }
    
    /* Transformation en croix */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Style des liens mobiles */
    #navbar ul li a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
    }
    
    #navbar ul li .don-btn {
        display: inline-block;
        margin-top: 10px;
    }
}