/* ═══════════════════════════════════════════════════════════════
   STYLE.CSS — Styles globaux & contenu des pages
   Europale Basket Club
   NB : header → header.css | footer → footer.css
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@100;300;600;700&display=swap');

/* Classes pour l'animation au scroll */
.section-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #f4f4f4;
}
section{
    padding: 20px 15%;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
button{
    cursor: pointer;
}
.home {
    min-height: 90vh;
    position: relative;
    margin-bottom: 230px;
    width: 100%;
}

/* home_page_content */
/* Effet apparition depuis la gauche */
.home_page_content {
    position: absolute;
    bottom: 60px;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.home_page_content span{
    display: flex;
    align-items: center;
}
.home_page_content span i{
    color: #097eeb;
    margin-right: 15px;
}
.home_page_content span p{
    color: #fff;
    font-weight: bold;
}
.home_page_content h1{
    margin: 20px 0;
    font-size: 70px;
    color: #fff;
    font-weight: bold;
    line-height: 80px;
}
.home_page_content .text{
    color: #b5b5b5;
    margin-bottom: 30px;
}
.white_btn{
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 15px;
    color: #fff;
    padding: 10px 30px;
    transition: 0.5s;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.white_btn:hover{
    background-color: #fff;
    color: #000;
}
.white_btn i{
    margin-left: 20px;
}

/* image_box */
.image_box {
    position: absolute;
    bottom: -140px;
    right: 7%;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.3s;
}

.image_box img {
    border-radius: 6px;
    width: 600px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .24);
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image_box p{
    margin-top: 20px;
    text-align: right;
    font-weight: bold;
}
.image_box i{
    color: #097eeb;
    margin-right: 15px;
}

/* text_section */
.text_section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
.text_section p{
    position: absolute;
    font-size: clamp(80px, 18vw, 250px);
    font-family: 'Anton', sans-serif;
    color: #dadada;
    z-index: -10;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}
.text_section h2{
    font-size: clamp(20px, 4vw, 30px);
    position: relative;
    z-index: 1;
}

/* owner */
.owner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 120px 0;
    height: 70vh;
    margin-bottom: 170px ;
}
.owner_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 120px 0;
    height: 70vh;
    margin-bottom: 170px;
    flex-direction: row-reverse;
}
.image_box_owner {
    width: 45%;
    height: 100%;
}
.image_box_owner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 32px 80px -32px rgba(0, 0, 0,.24);
}
.content_box {
    width: 45%;
}
.small_title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    width: fit-content;
}
.small_title::before{
    content: "";
    position: absolute;
    background-color: #097eeb;
    left: -65px;
    bottom: 10px;
    width: 50px;
    height: 2px;
    border-radius: 6px;
}
.big_title {
    margin: 20px 0;
    font-size: 40px;
    line-height: 40px;
}
.text {
    margin-bottom: 20px;
}
.dark_btn {
    color: #000;
    border: 1px solid #000;
}
.content_box button {
    margin-top: 30px;
}
.dark_btn:hover {
    background-color: #000;
    color: #fff;
}
.image_box_owner p {
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.55);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.content_box p {
    margin-top: 20px;
}

/* background */
.background {
    height: 70vh;
    width: 100%;
    position: relative;
    margin-bottom: 200px;
}
.background .image {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
    animation: infinite animation1;
    animation-duration: 50s;
}
@keyframes animation1 {
    from {
        transform: scale(1);
    }to {
        transform: scale(2);
    }
}
.text-box {
    position: absolute;
    right: 15%;
    bottom: -100px;
    z-index: 10;
    width: 450px;
    background-color: #fff;
    box-shadow: 0 32px 80px -32px rgba(0, 0, 0,.24);
    padding: 45px;
    border-radius: 6px;
}
.text-box {
    font-weight: bold;
}
.text-box h3 {
    margin: 15px 0;
    font-weight: bold;
    font-size: 30px;
}
.text-box p {
    margin-bottom: 25px;
}
.text-box h6 {
    font-size: 14px;
    margin: 15px 0;
}
.text-box i {
    margin-right: 10px;
    color:#fff;
}
.text-box button {
    margin-top: 45px;
}
.text-box button i {
    color: #000;
}
.text-box button:hover i {
    color: #fff;
}

/* big */
.big {
    margin: 290px 0;
    margin-bottom: 50px;
}
.big p {
    font-size: 260px;
    line-height: 240px;
}
.big h2 {
    font-size: 80px;
}

/* services */
.services {
    display: flex;
    text-align: center;
    margin-top: 35px;
}
.services .box {
    width: 33.33%;
    margin: 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.services .box img {
    width: 400px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}
.services .box h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.services .box p {
    color: #999;
}
.services .box .details {
    color: #555;
    font-size: 14px;
    margin-top: 5px;
}

.contact {
    text-align: center;
    margin-top: 50px;
}

.contact h2 {
    margin-bottom: 10px;
}

.contact p {
    color: #333;
    font-size: 16px;
}

/* testimonials */
.testimonials {
    margin: 120px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.left , .right {
    width: 48%;
}
.comment {
    padding: 50px;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.5s;
}
.comment p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 14px;
    color: #444;
}
.comment p:last-of-type {
    margin-bottom: 0;
}
.comment img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}
.comment:hover {
    box-shadow: 0 32px 80px -32px rgba(0, 0, 0,.24);
}
.down {
    margin-bottom: 55px;
}
.profil {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.profils {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   EN-TÊTES DE SECTIONS (watermark Anton)
   Partagé entre event.css, sponsors, etc.
══════════════════════════════════════ */
.ev-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding: 60px 15% 80px;
}
.ev-text-section .watermark {
    position: absolute;
    font-size: 220px;
    font-family: 'Anton', sans-serif;
    color: #dadada;
    z-index: 0;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.ev-text-section h2 {
    font-size: 30px;
    position: relative;
    z-index: 1;
}
