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

@font-face {
    font-family: "Zabal DEMO regular";
    src: url('../font/ZabalDEMO-Regular.otf');
}

@font-face {
    font-family: "Zabal DEMO semi bold";
    src: url('../font/ZabalDEMO-SemiBold.otf');
}

@font-face {
    font-family: "Inter";
    src: url('../font/Inter_24pt-Regular.ttf');
}


:root {
    --font-regular: "Zabal DEMO regular";
    --font-semibold: "Zabal DEMO semi bold";
    --font-link: "Zabal DEMO semi bold", sans-serif;

    --color-primary: rgba(186, 60, 231, 1);
    --color-secondary: rgba(111, 100, 237, 1);
    --color-fonce: rgba(90, 56, 175, 1);

    --color-primary-2: rgba(234, 201, 70, 1);
    --color-secondary-2: rgba(210, 169, 71, 1);
    --color-fonce-2: rgba(184, 135, 71, 1);

    --color-text: rgba(77, 77, 77, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-regular);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;

    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fdfbff 0%, #ffffff 50%, #e0d1ff 100%);
    background-attachment: fixed;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-semibold);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: var(--font-semibold);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg,
            var(--color-primary),
            var(--color-secondary));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(186, 60, 231, 0.3);
    color: white;
}



.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(186, 60, 231, 0.3);
    color: var(--color-text);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: var(--color-primary);
    background: rgba(186, 60, 231, 0.05);
    transform: translateY(-2px);
    color: var(--color-primary);
}

.btn-get-started {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(186, 60, 231, 0.3);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(186, 60, 231, 0.4);
    color: white;
}

.btn-get-started:active {
    transform: translateY(-1px);
}

.btn.read-more {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn.read-more:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

/* Bouton Scroll to Top */
a#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 7px 15px;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 10px 25px rgba(186, 60, 231, 0.3);
    color: white;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease-in-out;
}

a#scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

a#scroll-top:hover {
    transform: translateY(0) scale(1.1);
}

a#scroll-top i::before {
    font-size: 25px;
}


/* ===== SECTIONS ===== */
section {
    width: 100% !important;
    padding: 5rem 0;
    position: relative;
    padding: 60px 40px;
    width: 80%;
    border-radius: 8px;
    background: transparent !important;
    color: #3a2f5a;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
}

.light-background {
    background: linear-gradient(135deg, #f9f7ff 0%, #f0edff 100%);
}

.section-title {
    margin-bottom: 3rem;
}

.title-mini {
    font-size: 1.2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.text-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* ===== CONTAINERS & GRIDS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}

.col {
    padding: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}