/* ============================================
   A.J.R ESTEVE — Feuille de style principale
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ---- Variables ---- */
:root {
    --gold: #b09944;
    --gold-dark: #906924;
    --gold-light: #d6b36a;
    --dark: #0d0d0d;
    --white: #ffffff;
    --white-2: #f9f9f9;
    --dark-2: #141414;
    --dark-3: #1a1a1a;
    --border: #2a2a2a;
    --text: #ddd0b0;
    --text-2: #b09944;
    --text-muted: #777;
    --red-accent: #cb7171;
}

/* ---- Reset & base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    font-family: "Outfit", Arial, sans-serif;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--gold-light);
    text-decoration: none;
}

a:hover {
    color: var(--gold);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.esb {
    background: #0a0508 url("empire-state-building.png") no-repeat !important;
    background-size: 16% !important;
    background-position-x: left !important;
    background-position-y: 200px !important;
}

@media (max-width: 768px) {
    .esb {
        background-size: 0% !important;
    }
}

.text-white {
    color: white !important;
    font-size: 14px !important;
}

.container.container-contact .hero-logo {
    width: 200px;
}

.container.container-contact {
    margin: 0 0 0 15%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo img {
    width: 44px;
}

.menu {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.menu a {
    color: var(--gold-light);
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.menu a:hover,
.menu a.menuselected {
    color: var(--gold);
    background: rgba(176, 153, 68, 0.1);
    text-decoration: none;
}

.menu a.menuselected {
    font-weight: 600;
}

.menu button#langToggle {
    background: none;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    padding: 0px 12px;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}

.menu button#langToggle:hover {
    background: var(--gold-light);
    color: var(--dark);
}

.text-centered * {
    text-align: center !important;
}

.burger {
    display: none;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
}

/* ---- Hero ---- */
.hero.hero-accueil {
    background: linear-gradient(160deg, #fdfaea 55%, #fbf4e2 100%);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #FdFdFd 55%, #FaF5F8 100%);
    padding: 120px 24px 80px;
}

.hero-inner {
    max-width: 980px;
}

.hero-logo {
    width: 130px;
    margin: 0 auto 32px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.hero h1 .silver {
    color: var(--text-muted);
    font-size: 24px;
    line-height: 72px;
}

.hero h1 {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle.hero-subtitle-desktop {
    display: block;
}

.hero-subtitle.hero-subtitle-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-subtitle.hero-subtitle-desktop {
        display: none;
    }

    .hero-subtitle.hero-subtitle-mobile {
        display: block;
    }

}

.hero-subtitle {
    letter-spacing: 0.06em;
    font-size: 23px;
    color: gray;
    margin: 24px 0;

    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.25), 0 0 12px rgba(255, 245, 220, 0.15), 0 2px 4px rgba(0, 0, 0, 0.35);
}

/* Animation du reflet métallique */
@keyframes goldShine {
    0% {
        background-position: -100% center;
    }

    100% {
        background-position: 100% center;
    }
}



.hero-name {
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-name span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* ---- Sections communes ---- */
section {
    padding: 40px 0;
}

section .container p,
section .container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 18px;
    text-align: justify;
}

section h2 {
    font-size: clamp(20px, 3vw, 30px);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

section h3 {
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-intro {
    max-width: 980px;
    margin-bottom: 40px !important;
}

/* ---- Pôles intro ---- */
.poles-intro {
    background: var(--white-2);
}

.label-phase {
    font-size: 13px !important;
    color: var(--red-accent) !important;
    letter-spacing: 0.1em;
    margin-top: 20px !important;
    margin-bottom: 18px !important;
    font-weight: 700;
    text-align: left !important;
}

.poles-list {
    list-style: none;
    padding: 0 0 0 8px;
    margin-bottom: 8px;
}

.poles-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text);
    text-align: left !important;
}

.poles-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.poles-list strong {
    color: var(--gold-light);
}

/* ---- Valeurs ---- */
.values-section {
    ZZbackground: var(--dark-3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white-2);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    padding: 28px 24px;
    border-radius: 6px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(176, 153, 68, 0.1);
}

.value-card h3 {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

/* ---- Fondatrice & parcours ---- */
.parcours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.parcours-col h4 {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag.year-bold {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 13px;
}

.tag {
    font-size: 11px;
    background: rgba(176, 153, 68, 0.12);
    color: var(--gold-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline li {
    position: relative;
    padding: 0 0 18px 100px;
    font-size: 14px !important;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0 !important;
    text-align: left !important;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: 76px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.year {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.03em;
    width: 52px;
    text-align: right;
    white-space: nowrap;
}

.year-bold {
    color: var(--gold-dark);
}

/* ---- Compétences ---- */
.skills-section {
    background: var(--white-2);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.skill-card {
    ZZbackground: var(--dark);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 6px;
    position: relative;
}

.skill-card h3 {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 12px;
}

.skill-card h3.logo {
    margin-bottom: 62px;
}

.skill-card p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

/* ---- Pôles détail ---- */
.poles-detail {
    background: var(--white-3);
}

.poles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(640px, 1fr));
    gap: 24px;
}

.pole-card {
    background: var(--white-2);
    border: 1px solid var(--border);
    padding: 28px 24px;
    border-radius: 6px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.pole-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(176, 153, 68, 0.1);
}

.pole-num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(176, 153, 68, 0.1);
    position: absolute;
    top: 14px;
    right: 18px;
    line-height: 1;
}

.pole-card h3 {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pole-card li {
    font-size: 14px !important;
}

.pole-card p {
    font-size: 14px !important;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px !important;
    text-align: left !important;
}

.pole-link {
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.pole-link:hover {
    color: var(--gold);
    text-decoration: none;
}



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

.container-world .bloc {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.container-world .bloc img {
    width: 420px;
    max-width: 40%;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.container-world .bloc .texte {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .container.container-contact {
        display: none;
    }

    .container-world .bloc {
        flex-direction: column;
        text-align: center;
    }

    .container-world .bloc img {
        max-width: 100%;
        width: 100%;
    }

    .container-world .bloc .texte {
        font-size: 16px;
    }
}


/* ---- Footer ---- */
.footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 44px;
    border-radius: 50%;
}

.footer-company {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.footer-companytitle2 {
    font-size: 28px !important;
}

.footer-company2 {
    margin-bottom: 28px !important;
}

.footer-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

.footer-info a {
    color: var(--gold-light);
    transition: color 0.2s;
}

.footer-info {
    max-width: 1200px;
    margin: 25px auto 0;
}

.footer-info a:hover {
    color: var(--gold);
}

/* ---- Animations ---- */
.fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .parcours-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container.container-contact .hero-logo {
        display: none;
    }

    .header {
        padding: 14px 20px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(13, 13, 13, 0.98);
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }

    .menu.active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .values-grid,
    .skills-grid,
    .poles-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 56px;
    }

    .timeline li {
        padding-left: 62px;
    }

    .timeline li::before {
        left: 52px;
    }

    .year {
        width: 36px;
        font-size: 10px;
        top: 5px;
        left: -3px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        gap: 32px;
    }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #393939ee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
    border-bottom: 1px solid #222;
    z-index: 1000;
}

.header .logo {
    margin-left: 40px;
}

.menu {
    padding-right: 40px;
}

.menu a.menuselected {
    font-weight: bold;
}

.menu a span {
    font-weight: 600;
}

.menu a.selectLangA {
    margin: 0;
}

.menu a {
    color: #d6b36a;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

.world2 img {
    width: 66%;
}

.world2 {
    padding-top: 5rem;
    justify-content: center;
    display: flex;
}

#scroll-down-arrow {
    position: fixed;
    bottom: 25px;
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gold-dark);
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: bounce 2s;
}

#scroll-down-arrow:hover {
    transform: scale(1.1);
    background: white;
}

@keyframes bounce {

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

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}


.gotpets-gallery {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 2px solid #ddd;
}

.gallery-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .3);
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.95);

    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 75vw;
    max-height: 80vh;
    object-fit: contain;
}

.close-modal {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 100000;
}

.langs {
    display: flex;
}