/* =========================================================
   RESET & BASE
========================================================= */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #102830;
    color: #cbd5e1;
    overflow-x: hidden;
    max-width: 100vw;
}


/* =========================================================
   VARIABLES — PALETTE CLAIRE & VIVANTE
========================================================= */

:root {
    --primary: #10b981;
    --primary-light: #34d399;
    --primary-soft: rgba(16, 185, 129, 0.15);
    --accent: #0ea5e9;
    --accent-soft: rgba(14, 165, 233, 0.15);
    --coral: #f43f5e;
    --coral-soft: rgba(244, 63, 94, 0.15);
    --violet: #8b5cf6;
    --violet-soft: rgba(139, 92, 246, 0.15);
    --gold: #f59e0b;
    --surface: rgba(20, 55, 65, 0.75);
    --surface-2: rgba(20, 55, 65, 0.95);
    --surface-3: rgba(28, 70, 82, 0.8);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(16, 185, 129, 0.45);
    --text-primary: #f0fdf4;
    --text-secondary: #a7c5bd;
    --text-muted: #5e8a7e;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* NEXT PAGE BUTTON FLOW */
.next-page-container {
  display: flex; justify-content: center; align-items: center;
  margin: 60px 0 20px; padding: 20px; width: 100%; position: relative; z-index: 10;
}
.btn-next-page {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 40px;
  background: var(--surface-2); color: var(--text-primary); text-decoration: none;
  font-size: 16px; font-weight: 700; border-radius: 50px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all var(--transition-spring); backdrop-filter: blur(10px);
}
.btn-next-page:hover {
  background: var(--primary-soft); border-color: var(--primary); color: var(--primary);
  transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md);
}
.btn-next-page i { transition: transform var(--transition-spring); }
.btn-next-page:hover i { transform: translateX(6px); }


/* =========================================================
   CONTENEUR PRINCIPAL
========================================================= */

.portfolio {
    min-height: 100vh;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--surface);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    height: 62px;
    background: var(--surface-2);
    box-shadow: var(--shadow-md);
}


/* Logo */

.logo {
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

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

.logo span {
    color: var(--primary);
}


/* Navigation */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-soft);
    font-weight: 600;
}

/* Dropdowns */
.nav-item { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 8px; min-width: 160px;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
    transition: all var(--transition-fast); z-index: 100;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav-item:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-link {
    display: block; padding: 10px 16px; color: var(--text-secondary);
    text-decoration: none; font-size: 14px; font-weight: 500;
    border-radius: var(--radius-sm); transition: all var(--transition-fast);
}
.dropdown-link:hover {
    background: var(--primary-soft); color: var(--primary);
}


/* Bouton CV */

.cv-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid var(--border-hover);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--primary-soft);
    transition: all var(--transition-smooth);
    flex-shrink: 0;
}

.cv-button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(67, 97, 238, 0.25);
    transform: translateY(-2px);
}

.cv-icon {
    width: 16px;
    height: 16px;
}

/* Mobile menu toggle */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: linear-gradient(-45deg, #0a2a35, #0d4a30, #102830, #1a3a45);
    background-size: 400% 400%;
    animation: gradient-bg 15s ease infinite;
}

@keyframes gradient-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* =========================================================
   ANIMATIONS D'ENTRÉE
========================================================= */

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   PARTICULES FLOTTANTES
========================================================= */

.particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle 12s infinite ease-in-out;
}

.particle:nth-child(1) { left: 8%; top: 18%; width: 8px; height: 8px; background: var(--primary-light); animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(2) { left: 25%; top: 65%; width: 6px; height: 6px; background: var(--accent); animation-delay: -2s; animation-duration: 10s; }
.particle:nth-child(3) { left: 55%; top: 25%; width: 10px; height: 10px; background: var(--coral); opacity: 0.35; animation-delay: -4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 78%; top: 72%; width: 6px; height: 6px; background: var(--violet); animation-delay: -6s; animation-duration: 11s; }
.particle:nth-child(5) { left: 45%; top: 82%; width: 7px; height: 7px; background: var(--primary); animation-delay: -8s; animation-duration: 13s; }
.particle:nth-child(6) { left: 88%; top: 12%; width: 5px; height: 5px; background: var(--accent); animation-delay: -3s; animation-duration: 15s; }

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(25px, -35px) scale(1.4); opacity: 0.6; }
    50% { transform: translate(-15px, -65px) scale(1); opacity: 0.35; }
    75% { transform: translate(30px, -25px) scale(1.2); opacity: 0.5; }
}


/* =========================================================
   GRILLE DÉCORATIVE
========================================================= */

.grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(67, 97, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 97, 238, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black, transparent);
}


/* =========================================================
   CONTENU GAUCHE
========================================================= */

.hero-content {
    position: relative;
    z-index: 3;
    width: 55%;
    padding-right: 40px;
}


/* Badge de disponibilité */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--accent-soft);
    border: 1px solid rgba(6, 214, 160, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(6, 214, 160, 0); }
}


/* Intro */

.intro {
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}


/* Nom */

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 76px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -2.5px;
}

.name-line {
    display: block;
    color: var(--text-primary);
}

.name-line.accent {
    background: linear-gradient(to right, var(--primary), var(--violet), var(--coral), var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s linear infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* Description */

.description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 460px;
}

.highlight {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 2px;
    opacity: 0.4;
}


/* =========================================================
   TECH STACK BADGES
========================================================= */

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 253, 248, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--transition-spring);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.tech-badge:nth-child(1):hover { border-color: #e34c26; color: #e34c26; background: #fef2ee; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(227, 76, 38, 0.12); }
.tech-badge:nth-child(2):hover { border-color: #264de4; color: #264de4; background: #eef1ff; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(38, 77, 228, 0.12); }
.tech-badge:nth-child(3):hover { border-color: #f0db4f; color: #b8a72e; background: #fffcec; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(240, 219, 79, 0.15); }
.tech-badge:nth-child(4):hover { border-color: #3776ab; color: #3776ab; background: #eef4ff; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(55, 118, 171, 0.12); }
.tech-badge:nth-child(5):hover { border-color: #092e20; color: #092e20; background: #e8f5e9; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(9, 46, 32, 0.1); }
.tech-badge:nth-child(6):hover { border-color: #42b883; color: #42b883; background: #eefaf3; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(66, 184, 131, 0.12); }
.tech-badge:nth-child(7):hover { border-color: #61dafb; color: #2192b0; background: #eefaff; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(97, 218, 251, 0.15); }


/* =========================================================
   BOUTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    height: 52px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}


/* Bouton principal */

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--violet) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(67, 97, 238, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
}


/* Bouton secondaire */

.btn-secondary {
    color: var(--text-primary);
    border: 1.5px solid var(--surface-3);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


/* =========================================================
   PARTIE PHOTO
========================================================= */

.hero-image-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Anneaux animés autour de la photo */

.photo-ring {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 1.5px dashed rgba(67, 97, 238, 0.15);
    animation: ring-rotate 25s linear infinite;
}

.photo-ring::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(67, 97, 238, 0.4);
}

.ring-2 {
    width: 500px;
    height: 500px;
    border-color: rgba(6, 214, 160, 0.1);
    animation-direction: reverse;
    animation-duration: 35s;
    border-style: dotted;
}

.ring-2::before {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(6, 214, 160, 0.4);
    width: 9px;
    height: 9px;
    top: -4px;
}

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


/* Cercle de la photo */

.photo-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-soft), var(--surface-2));
    border: 2px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(67, 97, 238, 0.1),
                0 0 0 8px rgba(67, 97, 238, 0.03);
    transition: transform var(--transition-smooth);
}

.photo-circle:hover {
    transform: scale(1.03);
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    width: 70px;
    height: 70px;
    color: var(--text-muted);
    opacity: 0.4;
}


/* Badges flottants autour de la photo */

.floating-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: var(--shadow-md);
    animation: float-badge 5s ease-in-out infinite;
    transition: transform var(--transition-spring);
}

.floating-badge:hover {
    transform: scale(1.2) translateY(-5px) !important;
}

.floating-badge i, .floating-badge svg {
    width: 22px;
    height: 22px;
}

.badge-1 {
    top: 12%;
    left: -8%;
    animation-delay: 0s;
}

.badge-1 i, .badge-1 svg { color: var(--primary); }

.badge-2 {
    bottom: 14%;
    left: -4%;
    animation-delay: -1.8s;
}

.badge-2 i, .badge-2 svg { color: var(--accent); }

.badge-3 {
    top: 4%;
    right: 6%;
    animation-delay: -3.5s;
}

.badge-3 i, .badge-3 svg { color: var(--coral); }

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


/* =========================================================
   FORMES DÉCORATIVES
========================================================= */

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(70px);
    transition: transform 0.3s ease-out;
}

.shape-blue {
    width: 450px;
    height: 450px;
    background: rgba(67, 97, 238, 0.08);
    right: -80px;
    top: -80px;
}

.shape-green {
    width: 380px;
    height: 380px;
    background: rgba(6, 214, 160, 0.07);
    left: 12%;
    bottom: -120px;
}

.shape-purple {
    width: 300px;
    height: 300px;
    background: rgba(123, 97, 255, 0.06);
    right: 28%;
    top: 55%;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 5;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border-radius: 11px;
    border: 2px solid var(--text-muted);
    position: relative;
    opacity: 0.45;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: var(--primary);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}


/* =========================================================
   RESPONSIVE — TABLETTE
========================================================= */

@media screen and (max-width: 1100px) {

    .navbar {
        padding: 0 32px;
    }

    .nav-links {
        gap: 2px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .hero {
        padding: 110px 32px 70px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .description {
        font-size: 16px;
    }

    .hero-image-container {
        right: 2%;
        width: 340px;
        height: 340px;
    }

    .photo-circle {
        width: 230px;
        height: 230px;
    }

    .photo-ring {
        width: 290px;
        height: 290px;
    }

    .ring-2 {
        width: 350px;
        height: 350px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    /* Navbar */

    .navbar {
        height: 60px;
        padding: 0 20px;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
        z-index: -1;
    }

    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 18px;
        padding: 14px 28px;
    }

    .cv-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* Hero */

    .hero {
        min-height: 100vh;
        padding: 90px 20px 50px;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .badge {
        margin-left: auto;
        margin-right: auto;
    }

    .intro {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .description {
        font-size: 16px;
        max-width: 100%;
    }

    .tech-stack {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }


    /* Photo */

    .hero-image-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 280px;
        height: 280px;
        margin: 0 auto 30px;
        order: -1;
    }

    .photo-circle {
        width: 190px;
        height: 190px;
    }

    .photo-ring {
        width: 240px;
        height: 240px;
    }

    .ring-2 {
        width: 280px;
        height: 280px;
    }

    .floating-badge {
        width: 40px;
        height: 40px;
    }


    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }


    /* Décorations */

    .shape-blue {
        width: 280px;
        height: 280px;
        right: -130px;
        top: 40px;
    }

    .shape-green {
        width: 230px;
        height: 230px;
        left: -100px;
        bottom: -60px;
    }

    .shape-purple {
        width: 180px;
        height: 180px;
    }
}


/* =========================================================
   PETITS TÉLÉPHONES
========================================================= */

@media screen and (max-width: 450px) {

    .navbar {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 16px 36px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .description {
        font-size: 15px;
    }

    .photo-circle {
        width: 160px;
        height: 160px;
    }

    .placeholder-icon {
        width: 45px;
        height: 45px;
    }
}
