
@font-face {
    font-family: 'Valorant';
    src: url('../font/Valorant_Font.ttf');
    font-weight: normal;
    font-style: normal;
}
*{
    box-sizing:border-box;
    margin:0;
    padding:0
}

html,
body{
    height:100%
}

body {
    font-family: 'Valorant', sans-serif;
    background: #0f1923;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px; /* espace sous la navbar */
    padding-bottom: 40px;
}

.navbar {
background: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(20px);
position: fixed;
width: 100%;
top: 0;
left: 0;
right: 0;
z-index: 1000;
box-shadow: 0 8px 32px rgba(255, 70, 85, 0.2);
border-bottom: 1px solid rgba(255, 70, 85, 0.2);
}

.lien_page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.nav_links {
    display: flex;
    gap: 45px;
}

.logo_navbar {
    height: 55px;
    width: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.3));
}

.logo_navbar:hover {
    transform: scale(1.15) rotate(14deg);
    filter: drop-shadow(0 0 20px rgba(255, 70, 85, 0.6));
}

.links {
    text-decoration: none;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.links::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4655, transparent);
    transition: transform 0.3s ease;
}

.links:hover {
    color: #ff4655;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
}

.links:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav_icons {
    display: flex;
    gap: 20px;
    align-items: center;
}
.icon_btn {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15), rgba(255, 70, 85, 0.05));
    border: 1.5px solid rgba(255, 70, 85, 0.4);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.icon_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 70, 85, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.icon_btn:hover::before {
    width: 300px;
    height: 300px;
}

.icon_btn:hover {
    background: linear-gradient(135deg, #ff4655, #ff2a3d);
    border-color: #ff4655;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 70, 85, 0.5);
}

.icon_btn span {
    position: relative;
    z-index: 1;
}

button, 
input, 
select, 
textarea {
  font-family: inherit;
}

.card {
    width: 90%;
    max-width: 520px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,70,85,0.10);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    margin-top: 40px;
}


h1{
    font-size:20px;
    text-transform:uppercase;
    color:#ff5c5c;
    text-align:center;
    margin-bottom:18px;
    letter-spacing:1.5px;
}

label{
    display:block;
    font-size:12px;
    color:#ffdede;
    text-transform:uppercase;
    margin-top:14px;
    margin-bottom:6px;
    letter-spacing:0.8px;
}

input,textarea{
    width:100%;
    padding:12px 14px;
    border-radius:10px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,70,85,0.15);
    color:#fff;
    font-size:14px;
}

textarea{
    min-height:100px;
    resize:vertical
}

input:focus,textarea:focus{
    outline:none;
    border-color:#ff4655;
    box-shadow:0 0 10px rgba(255,70,85,0.18)
}

.btn{
    display:block;
    width:100%;
    padding:12px;
    margin-top:18px;
    border-radius:10px;
    border:none;
    background:linear-gradient(90deg,#ff4655,#ff6b6b);
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
    letter-spacing:1px;
}

.note{
    margin-top:12px;
    font-size:12px;
    color:rgba(255,255,255,0.6);
    text-align:center;
}

@media (max-width:768px){

    .card{
        margin: 200px 10px; 
    }

    h1{
        font-size:18px
    }
    
}


@media (max-width: 768px) {
    .lien_page {
        flex-direction: column;
        gap: 20px;
        padding: 15px 30px;
    }
    .nav_left {
        flex-direction: column;
        gap: 20px;
    }
    .nav_links {
        gap: 20px;
        white-space: nowrap;
    }
}