﻿/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background: linear-gradient(135deg,#001f3f,#003366,#00509d);
    color:white;
    min-height:100vh;
}

/* ===== HEADER ===== */
header{
    text-align:center;
    padding:40px 20px;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
    box-shadow:0 4px 20px rgba(0,0,0,0.4);
}

header h1{
    font-size:3rem;
    color:#FFD700;
    text-shadow:0 0 15px rgba(255,215,0,.8);
    margin-bottom:15px;
}

header h3{
    font-size:1.2rem;
    color:#f1f1f1;
    margin-bottom:20px;
}

.country-selection a{
    text-decoration:none;
    color:white;
    background:#ff4b2b;
    padding:12px 25px;
    border-radius:50px;
    font-weight:bold;
    display:inline-block;
    transition:.3s;
}

.country-selection a:hover{
    background:#ff6f4f;
    transform:translateY(-3px);
}

/* ===== MAIN ===== */
main{
    width:95%;
    max-width:1600px;
    margin:30px auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

/* ===== CARTE EQUIPE ===== */
.search-section{
    background:rgba(255,255,255,0.12);
    border-radius:20px;
    overflow:hidden;
    backdrop-filter:blur(12px);
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.4s;
    padding:15px;
}

.search-section:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(255,215,0,.4);
}

.search-section img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

/* ===== SELECT ===== */
select{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    margin-top:10px;
    margin-bottom:15px;
    font-size:15px;
    background:white;
    color:#333;
    cursor:pointer;
}

/* ===== BOUTONS ===== */
#search-btn{
    width:100%;
    border:none;
    border-radius:12px;
    margin-top:10px;
    padding:14px;
    cursor:pointer;
    transition:.3s;
    font-weight:bold;
}

#search-btn a{
    text-decoration:none;
    color:white;
    display:block;
}

/* Bouton maillot */
#search-btn:first-child{
    background:linear-gradient(45deg,#28a745,#43d86a);
}

/* Effet */
#search-btn:hover{
    transform:scale(1.05);
}

/* ===== FEEDBACK ===== */
.user-feedback{
    grid-column:1/-1;
    background:rgba(255,255,255,0.12);
    border-radius:20px;
    padding:30px;
    text-align:center;
    margin-top:20px;
}

.user-feedback h2{
    color:#FFD700;
    margin-bottom:20px;
    font-size:2rem;
}

.user-feedback p{
    font-size:1.1rem;
    margin:10px 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#FFD700;
    border-radius:10px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    header h1{
        font-size:2rem;
    }

    header h3{
        font-size:1rem;
    }

    .search-section img{
        height:200px;
    }

    select{
        font-size:14px;
    }
}

/* ===== ANIMATION ===== */
.search-section{
    animation:fadeIn .8s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
