/* Variables */
:root {
    --color-background: #fffaf5;
    --color-primary: #8b3a3a;
    --color-secondary: #d9b08c;
    --color-text: #2c2c2c;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

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

/* Header et Navigation */
header {
    background-color: var(--color-primary);
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/webp/salle-barre.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(30%);
    z-index: -1;
}

nav {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 0.3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

nav::after {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding: 0 1.5rem;
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
}

nav li {
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0.8rem;
    display: block;
}

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

.logo::after {
    display: none;
}

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

.logo {
    position: relative;
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    padding: 0;
}

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

.logo:hover {
    transform: scale(1.1);
}

.logo svg {
    display: none;
}

/* Suppression des styles inutiles */
/* .hero-content et .hero-content h1 supprimés car jamais utilisés */

.slogan {
    /* On retire display: none; car la classe est utilisée dans .main-title */
    color: var(--color-secondary);
    font-size: 24px;
    font-style: italic;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Sections communes */
section {
    padding: clamp(2rem, 5vw, 5rem) 0;
    width: 100%;
}

.main-title {
    text-align: center;
    padding: 60px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/webp/salle-barre.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(30%);
    z-index: -1;
}

.main-title h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-title .slogan {
    display: block;
    color: white;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.main-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

/* À propos */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: center;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image h1 {
    color: var(--color-primary);
    font-size: 48px;
    margin-bottom: 1rem;
}

.about-image .slogan {
    color: var(--color-secondary);
    font-size: 24px;
    font-style: italic;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* Presentation */
.presentation {
    background-color: var(--color-background);
}

.presentation-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.presentation-text {
    padding-right: 20px;
}

.presentation-text h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: left;
}

.presentation-text p {
    font-size: 18px;
    line-height: 1.6;
}

.presentation-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .presentation-content {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    .presentation-text, .presentation-image {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
    .presentation-image img {
        width: 100%;
        border-radius: 8px;
    }
}

/* Menu */
.menu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 1200px;
}

.menu-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card-header {
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.menu-card-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.menu-price {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.menu-card-content {
    padding: 1rem;
}

.menu-option {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-option-title {
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.menu-option-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.menu-option-details .price {
    font-weight: bold;
    color: var(--color-primary);
}

.note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    font-size: 0.9rem;
}

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

    .menu-card-header {
        padding: 1.2rem;
    }

    .menu-card-content {
        padding: 1.2rem;
    }
}

@media (max-width: 600px) {
    .menu-cards {
        width: auto;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .menu-card {
        width: auto;
        max-width: 100%;
    }
    .menu-option-details {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 1em;
    }
    .menu-option-details .price {
        font-size: 1em;
    }
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #f5f5f5; /* Couleur de fond pendant le chargement */
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform; /* Optimisation des performances */
    backface-visibility: hidden; /* Réduit le flickering */
    transform: translateZ(0); /* Force l'accélération matérielle */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

/* Suppression des styles de la légende */
.gallery-item .caption {
    display: none;
}

.gallery-item img.img-loading {
    background: #eee;
    min-height: 180px;
    filter: blur(4px);
    transition: filter 0.3s, opacity 0.3s;
    opacity: 0.5;
}

.gallery-item img {
    transition: filter 0.3s, opacity 0.3s;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2.5rem);
    min-height: 450px;
    align-items: start;
}

.contact-info {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 10px;
}

.map {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
}

.btn {
    background-color: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

/* Footer */
footer {
    background-color: var(--color-primary);
    color: white;
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1rem, 3vw, 1.5rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    align-items: center;
}

.footer-logo {
    text-align: center;
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
    margin: 0 auto;
}

.footer-logo a {
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.1);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.social-links p {
    margin: 0;
    text-align: right;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-secondary);
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content,
    .contact-content,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 20px;
    }

    .map {
        padding: 20px;
    }

    .about-image {
        width: 80%;
        margin: 0 auto 2rem auto;
        display: flex;
        justify-content: center;
    }

    .about-text {
        padding: 0;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .map {
        width: 100%;
        margin: 0 auto;
    }
    .map iframe {
        aspect-ratio: 1 / 1;
        height: auto;
    }
    .social-links {
        margin-top: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .main-title {
        padding: 24px 0;
        margin-bottom: 1rem;
        min-height: unset;
    }
    .main-title h1 {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    .main-title .slogan {
        font-size: 1rem;
        margin-top: 0.3rem;
    }
    .main-title::before {
        background-size: cover;
        background-position: center;
        min-height: 80px;
        max-height: 120px;
        filter: grayscale(40%);
    }

    .about-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 1rem;
    }
    .about-image {
        margin: 0 -10px 20px -10px;
    }
    .about-image img, .presentation-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    .about-text h2, .presentation-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    .about-text p, .presentation-text p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-info {
        text-align: center;
    }

    nav ul {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 0.2rem;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }

    .logo {
        margin: 0 0.3rem;
        max-width: 38px;
        max-height: 38px;
    }

    .footer-content {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        text-align: center;
        overflow-x: auto;
        padding: 0.2rem 0.1rem;
    }
    .footer-info h3 {
        font-size: 0.6rem;
        margin-bottom: 0.08rem;
    }
    .footer-info p {
        font-size: 0.48rem;
        margin: 0.04rem 0;
        white-space: nowrap;
    }
    .footer-logo {
        max-width: 28px;
        max-height: 28px;
    }
    .footer-logo img {
        width: 100%;
        height: auto;
    }
    .social-links p {
        font-size: 0.48rem;
        margin: 0.04rem 0;
        white-space: nowrap;
    }
    .footer-bottom p {
        font-size: 0.45rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }

    .contact-info {
        text-align: center;
    }
    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .presentation {
        display: none;
    }

    .contact-info a[href^="tel"], .contact-info a[href^="mailto"] {
        color: #2c2c2c;
        text-decoration: none;
        position: relative;
        transition: color 0.3s;
    }
    .contact-info a[href^="tel"]:hover, .contact-info a[href^="mailto"]:hover {
        color: var(--color-primary);
    }
    .contact-info a[href^="tel"]::after, .contact-info a[href^="mailto"]::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--color-primary);
        transition: width 0.3s;
    }
    .contact-info a[href^="tel"]:hover::after, .contact-info a[href^="mailto"]:hover::after {
        width: 100%;
    }
    .contact h2 {
        display: none;
    }

    .restaurant-title {
        font-size: clamp(1.1rem, 5vw, 1.4rem) !important;
        margin-bottom: 0.5rem;
    }
    .menu-info p,
    .menu-description p,
    .menu-card-content p,
    .menu-option-details,
    .menu-option-title,
    .payment-info,
    .payment-info p,
    .note {
        font-size: 18px !important;
    }
    .menu-price {
        font-size: 18px !important;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        text-align: center;
        overflow-x: auto;
        padding: 0.2rem 0.1rem;
    }
    .footer-info h3 {
        font-size: 0.6rem;
        margin-bottom: 0.08rem;
    }
    .footer-info p {
        font-size: 0.48rem;
        margin: 0.04rem 0;
        white-space: nowrap;
    }
    .footer-logo {
        max-width: 28px;
        max-height: 28px;
    }
    .footer-logo img {
        width: 100%;
        height: auto;
    }
    .social-links p {
        font-size: 0.48rem;
        margin: 0.04rem 0;
        white-space: nowrap;
    }
    .footer-bottom p {
        font-size: 0.45rem;
    }
}

/* Styles pour la page Menu */
.menu-page {
    padding-top: 60px;
}

.restaurant-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.menu-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.menu-info {
    text-align: center;
    margin-bottom: 20px;
}

.menu-info p {
    margin: 8px 0;
    font-size: 20px;
    color: var(--color-text);
}

.menu-description {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--color-background);
    border-radius: 8px;
}

.menu-description p {
    margin: 8px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--color-text);
}

.menu-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-bottom: 40px;
}

.lunch-menu, .dinner-menu {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lunch-menu h2, .dinner-menu h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
}

.menu-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-list ul {
    flex-grow: 1;
    margin-bottom: 20px;
}

.menu-pricing ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-pricing li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-secondary);
    font-size: 20px;
    gap: 20px;
}

.menu-pricing li:last-child {
    border-bottom: none;
}

.menu-pricing span {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 22px;
    min-width: 80px;
    text-align: right;
    white-space: nowrap;
}

.payment-info {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: var(--color-background);
    border-radius: 8px;
}

.payment-info h2 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 24px;
}

.payment-info p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .menu-pricing {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la page Galerie */
.gallery-page {
    padding-top: 2rem;
}

.gallery-page .restaurant-title {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: var(--color-secondary);
}

/* Animation pour la modale */
@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.modal-content {
    animation-name: zoom;
    animation-duration: 0.3s;
}

/* Styles pour la page Bon Cadeau */
.gift-card-page {
    padding-top: 40px;
}

.gift-card-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.gift-card-info {
    text-align: center;
    margin-bottom: 20px;
}

.gift-card-info p {
    font-size: 20px;
    margin: 8px 0;
    color: var(--color-text);
    line-height: 1.4;
}

.gift-card-info .example-text {
    margin-top: 15px;
    font-style: italic;
}

.gift-card-example {
    margin: 20px 0;
    text-align: center;
}

.gift-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .gift-card-info p {
        font-size: 18px;
    }
}

.contact-info a[href^="tel"], .contact-info a[href^="mailto"] {
    color: #2c2c2c;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}
.contact-info a[href^="tel"]:hover, .contact-info a[href^="mailto"]:hover {
    color: var(--color-primary);
}
.contact-info a[href^="tel"]::after, .contact-info a[href^="mailto"]::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}
.contact-info a[href^="tel"]:hover::after, .contact-info a[href^="mailto"]:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .about-content,
    .presentation-content {
        grid-template-columns: 1fr;
    }
    .about-text {
        text-align: center;
    }
    .about-image {
        margin: 0 -20px;
    }
    nav ul {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .main-title .slogan {
        font-size: 18px;
    }
    .main-title::before {
        background-position: center 70%;
    }

    .about-image {
        margin: 0 -15px 20px;
    }

    .about-content {
        gap: 1.5rem;
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s;
}
.loader-spinner {
    border: 6px solid #eee;
    border-top: 6px solid #b48a4a;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}