/* -------- FONT -------- */
@font-face {
    font-family: "TanNimbus";
    src: url("font/tan-nimbus.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

/* -------- GLOBAL -------- */
body {
    margin: 0;
    background: #f9ddb2;
    font-family: Arial, sans-serif;
}

/* -------- TOP BAR -------- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff7923;
    padding: 15px 25px;
    color: white;
    font-weight: bold;
}

.menu .icon {
    margin-right: 10px;
    margin-top: 20px;
}

.menu {
    font-size: 22px;
    color: #ff7923;
}

.socials img {
    width: 30px;
    margin-left: 15px;
    margin-top: 15px;
    filter: brightness(0) invert(1);
}

/* -------- HERO -------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

/* vague orange */
.orange-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* ajuste si nécessaire */
    overflow: hidden;
}

.orange-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* boule disco */
.bg-ball {
    position: absolute;
    right: 5%;
    top: 25%;
    width: 35%;
    opacity: 0.15;
}

/* contenu */
.hero-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 150px;
    flex-wrap: wrap;
}

.photo img {
    width: 600px;
    border-radius: 50%;
    filter: sepia(40%);
}

/* -------- TEXTES -------- */
.text-zone {
    text-align: left;
}

.sub {
    font-family: TanNimbus, cursive;
    font-size: 32px;
    color: #d85c16;
    margin-bottom: 20px;
}

.text-zone h1 {
    font-family: TanNimbus, sans-serif;
    font-size: 78px;
    color: #ff7923;
    margin: 0;
}

.h1_global {
    font-family: TanNimbus, sans-serif;
    text-align: center;
    font-size: 78px;
    color: #ff7923;
    margin: 0;
    margin-top: 70px;
}

.h2_global {
    font-family: TanNimbus, sans-serif;
    font-size: 42px;
    margin-top: -10px;
    color: #ff7923;
    text-align: center;

}


.text-zone h2 {
    font-family: TanNimbus, sans-serif;
    font-size: 42px;
    margin-top: -10px;
    color: #ff7923;
}

.my-underline {
    background-image: url("svg/underline_brush.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 100%;
    padding-bottom: 0.5em;
    display: inline-block;
}

.my-underline-white {
    background-image: url("svg/underline_brush_white.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 100%;
    padding-bottom: 1em;
    padding-right: 1em;
    display: inline-block;
}

.btn-orange {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff7923, #d85c16);
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 45px;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 25px rgba(216, 92, 22, 0.5);
}

.btn-orange:active {
    transform: translateY(0px);
    box-shadow: 0px 4px 12px rgba(216, 92, 22, 0.45);
}

.section-generic {

	margin-bottom: 100px;
    padding-top: 30px;

}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.logos-track {
    display: inline-flex;
    gap: 80px;
    white-space: nowrap;
    animation: scroll 45s linear infinite;
}

.logo-item {
    flex-shrink: 0;
}

.logo-item img {
    height: 180px;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.logo-item img:hover {
    opacity: 1;
}


/* Fade on edges */
.logo-slider:before,
.logo-slider:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.logo-slider:before {
    left: 0;
    background: linear-gradient(to right, #f9ddb2, transparent);
}

.logo-slider:after {
    right: 0;
    background: linear-gradient(to left, #f9ddb2, transparent);
}

/* Animation de d�filement */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.google-reviews {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 50px;
}

.reviews-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.arrow {
    font-size: 55px;
    cursor: pointer;
    user-select: none;
    color: #ff7923;
    transition: 0.2s;
}

.arrow:hover {
    transform: scale(1.2);
}

.review-card {
    background: #ff7923;
    color: white;
    padding: 40px;
    width: 550px;
    border-radius: 25px;
    text-align: left;
    min-height: 100px;
}

.review-card h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
}

.stars {
    margin: 10px 0 20px;
    font-size: 22px;
}

.give-review {
    font-family: TanNimbus;
    font-size: 20px;
    margin-top: 15px;
    color: #ff7923;
}

.give-review a {
    color: #ff7923;
    font-weight: bold;
}





/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
    .hero-content {
        text-align: center;
        flex-direction: column;
    }

    .text-zone h1 {
        font-size: 55px;
    }

    .text-zone h2 {
        font-size: 32px;
    }

    .bg-ball {
        display: none;
    }
}
