/* 
 * AuditeNova - Style principal
 * Palette de couleurs:
 * - Fond principal: #0f3d3e
 * - Accentuation: #ff6b6b
 * - Titres: #ffcd3c
 * - Texte: #f4f4f4
 * - Boutons: gradient de #ff6b6b à #ffcd3c
 */

/* === Variables globales === */
:root {
    --color-bg: #0f3d3e;
    --color-accent: #ff6b6b;
    --color-heading: #ffcd3c;
    --color-text: #f4f4f4;
    --color-text-dark: #333333;
    --color-bg-light: #154545;
    --color-shadow: rgba(0, 0, 0, 0.15);
    --font-main: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #ff6b6b, #ffcd3c);
    --gradient-dark: linear-gradient(135deg, #0f3d3e, #154545);
}

/* === Reset et base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
    scroll-padding-top: 7rem; /* Pour la navigation par ancre */
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

/* === Typographie === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-heading);
}

h1 {
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background: var(--gradient-primary);
    border-radius: 3px;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

a:not(.btn):after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--color-heading);
    transition: width 0.3s ease;
}

a:not(.btn):hover:after {
    width: 100%;
}

a:hover {
    color: var(--color-heading);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

strong {
    color: var(--color-heading);
    font-weight: 600;
}

/* === Layout === */
.container {
    width: 100%;
    max-width: 120rem;
    padding: 0 2rem;
    margin: 0 auto;
}

section {
    padding: 8rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--color-bg-light);
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(2rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-3rem); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(3rem); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* === Boutons === */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 5rem;
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn:after {
    display: none;
}

.primary-btn {
    background: var(--gradient-primary);
    color: var(--color-text);
    box-shadow: 0 0.4rem 1rem var(--color-shadow);
    position: relative;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: brightness(1.2);
}

.primary-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.6rem 1.5rem var(--color-shadow);
    color: var(--color-text);
}

.primary-btn:hover::before {
    opacity: 1;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--color-heading);
    color: var(--color-heading);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-heading);
    transition: width 0.3s ease;
    z-index: -1;
}

.secondary-btn:hover {
    color: var(--color-bg);
}

.secondary-btn:hover::before {
    width: 100%;
}

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 61, 62, 0.95);
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
    padding: 1rem 0;
    background-color: rgba(15, 61, 62, 0.98);
    box-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo svg {
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 2.5rem;
    height: 0.3rem;
    margin: 0.5rem 0;
    background-color: var(--color-heading);
    border-radius: 0.3rem;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.8rem, 0.6rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.8rem, -0.6rem);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
}

.nav-menu li:not(:last-child) {
    margin-right: 2rem;
}

.nav-menu li a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-heading);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 80%;
}

.nav-menu li a.btn::after {
    display: none;
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(15, 61, 62, 0.8), rgba(15, 61, 62, 0.95)), url('./img/NtFAFs.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    background: linear-gradient(to top, var(--color-bg), transparent);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease forwards;
    
}

.hero-section h1 {
    margin-bottom: 2rem;
    font-size: 5rem;
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(to right, var(--color-heading), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-text {
    font-size: 2.2rem;
    max-width: 70rem;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

/* === À propos Section === */
.about-section {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    right: -10rem;
    top: -10rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0) 70%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 1s ease forwards;
}

.about-image {
    animation: slideInRight 1s ease forwards;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem var(--color-shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 205, 60, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    transition: transform 0.5s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--color-bg-light);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem var(--color-shadow);
    transition: var(--transition);
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-0.8rem);
    box-shadow: 0 1.5rem 3rem var(--color-shadow);
}

.service-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.8rem 0.8rem 0 0;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3, .service-card p {
    padding: 0 2rem;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card p {
    padding-bottom: 2rem;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.service-card:hover::after {
    width: 100%;
}

/* === Benefits Section === */
.benefits-section {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    left: -10rem;
    bottom: -10rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 205, 60, 0.1) 0%, rgba(255, 205, 60, 0) 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.benefit-item {
    padding: 2.5rem;
    border-radius: 0.8rem;
    background-color: var(--color-bg);
    box-shadow: 0 0.8rem 2rem var(--color-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 107, 107, 0.05), rgba(255, 205, 60, 0.05));
    transition: top 0.5s ease;
}

.benefit-item:hover {
    transform: translateY(-0.5rem);
}

.benefit-item:hover::before {
    top: 0;
}

.benefit-icon {
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 205, 60, 0.1);
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(360deg);
}

/* === Testimonials Section === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--color-bg-light);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 2rem var(--color-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-0.5rem) scale(1.02);
    box-shadow: 0 1.5rem 3rem var(--color-shadow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(255, 205, 60, 0.2);
    font-family: serif;
    line-height: 1;
    z-index: -1;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: translateY(-0.5rem);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.author-name {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.author-position {
    font-style: italic;
    font-size: 1.4rem;
    opacity: 0.8;
}

/* === Contact Section === */
.contact-section {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    right: -10rem;
    top: 50%;
    transform: translateY(-50%);
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0) 70%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 0.8rem;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-0.5rem);
}

.contact-form {
    background-color: var(--color-bg);
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 1rem 2rem var(--color-shadow);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-0.5rem);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid transparent;
    background-color: var(--color-bg-light);
    border-radius: 0.6rem;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0.5rem rgba(255, 107, 107, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.4rem;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 1.4rem;
    cursor: pointer;
}

.form-errors {
    background-color: rgba(255, 107, 107, 0.2);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.4rem;
    animation: fadeIn 0.3s ease;
}

.form-errors ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.form-errors li {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

/* === FAQ Section === */
.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 0.8rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.8rem 2rem;
    background-color: var(--color-bg-light);
    cursor: pointer;
    font-weight: 600;
    position: relative;
    outline: none;
    border-radius: 0.8rem;
    transition: var(--transition);
    list-style: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: var(--color-heading);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item summary:hover {
    background-color: rgba(21, 69, 69, 0.9);
}

.faq-content {
    padding: 2rem;
    background-color: rgba(21, 69, 69, 0.5);
    border-radius: 0 0 0.8rem 0.8rem;
}

/* === Footer === */
.site-footer {
    background-color: var(--color-bg-light);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-description {
    opacity: 0.8;
    max-width: 40rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-legal a {
    color: var(--color-text);
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a::before,
.footer-legal a::before {
    content: '›';
    position: absolute;
    left: -1rem;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--color-heading);
}

.footer-links a:hover::before,
.footer-legal a:hover::before {
    opacity: 1;
    transform: translateX(0.5rem);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-heading);
    opacity: 1;
    padding-left: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 244, 244, 0.1);
    font-size: 1.4rem;
    opacity: 0.6;
}

/* === Cookie Popup === */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-light);
    padding: 2rem;
    box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: bottom 0.5s ease;
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120rem;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content button {
    white-space: nowrap;
}

/* === Média Queries === */
@media (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 1rem = 9px */
    }

    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 1rem = 8px */
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 40rem;
        height: 100vh;
        background-color: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 8rem 3rem 3rem;
        transition: right 0.3s ease;
        box-shadow: -0.5rem 0 2rem rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .nav-menu li a.btn {
        display: block;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    section {
        padding: 6rem 0;
    }
    
    h1 {
        font-size: 4.2rem;
    }
    
    h2 {
        font-size: 3.2rem;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-section h1 {
        font-size: 4.8rem;
    }

    .hero-text {
        font-size: 1.8rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-info {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 3.8rem;
    }
    
    .hero-text {
        font-size: 1.8rem;
    }

    .hero-section h1 {
        font-size: 4rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 18rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content button {
        width: 100%;
    }
}

/* === Ajouts pour les pages de politique === */
.policy-section {
    padding: 12rem 0 6rem;
}

.policy-content {
    background-color: var(--color-bg-light);
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
    box-shadow: 0 1rem 2rem var(--color-shadow);
}

.policy-content h2 {
    font-size: 2.4rem;
    margin-top: 3rem;
    text-align: left;
    padding-bottom: 1rem;
}

.policy-content h2::after {
    left: 0;
    transform: none;
    width: 5rem;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th, .cookie-table td {
    padding: 1.2rem;
    border: 1px solid rgba(244, 244, 244, 0.2);
    text-align: left;
}

.cookie-table th {
    background-color: var(--color-bg);
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(15, 61, 62, 0.5);
}

/* === Ajouts pour la page de remerciement === */
.thankyou-section {
    display: flex;
    align-items: center;
    padding: 15rem 0;
    text-align: center;
    min-height: 80vh;
}

.thankyou-content {
    max-width: 60rem;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--color-bg-light);
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem var(--color-shadow);
    animation: fadeIn 1s ease forwards;
}

.lead {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.thankyou-icon {
    margin: 3rem 0;
    animation: pulse 2s infinite ease-in-out;
}

/* === Utils === */
.text-accent {
    color: var(--color-accent);
}

.text-heading {
    color: var(--color-heading);
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

.float {
    animation: float 4s infinite ease-in-out;
} 