@font-face {
    font-family: 'Valorant';
    src: url('font/Valorant_Font.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Police appliqué sur toutes les trucs du site */
button, 
input, 
select, 
textarea {
  font-family: inherit;
}


/* Style général body */
body {
    font-family: 'Valorant', sans-serif;
    background: #0f1923;
    color: white;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 70, 85, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 70, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}


/* navbar machin */
.content-wrapper {
    position: relative;
    z-index: 1;
}


.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 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;
}

/* Texte intro qui ma pris 20 ans */
.hero {
    margin-top: 90px;
    height: 100vh; 
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.4) 0%, rgba(15, 25, 35, 0.95) 50%, rgba(15, 25, 35, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(255, 70, 85, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 70, 85, 0.15) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: rgba(255, 70, 85, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero_content {
    text-align: center;
    z-index: 10;
    padding: 40px;
}

.hero_title {
    font-size: 82px;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ff4655 50%, #ff8a92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 80px rgba(255, 70, 85, 0.5);
    letter-spacing: 3px;
}

.hero_subtitle {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero_btn {
    background: linear-gradient(135deg, #ff4655 0%, #ff2a3d 100%);
    border: none;
    padding: 18px 60px;
    font-size: 16px;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.hero_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero_btn:hover::before {
    left: 100%;
}

.hero_btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 70, 85, 0.6);
}




/* icones gun sur texte intro + la petite anime stylé */
.hero_deco {
  position: absolute;
  top:30%; 
  pointer-events: none;        
  z-index: 0;                  
  display: block;
  width:90%;                  /* pour ajuste taille */
  height: auto;
  overflow: visible;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.hero_deco_img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.30;               
  filter: drop-shadow(0 20px 60px rgba(255,70,85,0.06));
  will-change: transform, opacity;
  transform-origin: left center;
  animation: heroFloat 5s ease-in-out infinite;
}

/* anime stylé*/
@keyframes heroFloat {
  0%   { transform: translateY(0) scale(1) rotate(0deg); }
  50%  { transform: translateY(-18px) scale(1.02) rotate(2deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}


.hero_content {
  position: relative;
  z-index: 2; 
}


.hero_deco { z-index: 0; }
.hero_deco_img { z-index: 0; }


/* Anime appartion objet */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* style section */
.section {
    padding: 100px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.section_title {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #ff4655 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section_subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff4655, transparent);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}


/* card pres sous forme de grid */
.cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.08) 0%, rgba(26, 29, 41, 0.6) 100%);
    border: 1.5px solid rgba(255, 70, 85, 0.25);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 70, 85, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover::before {
    opacity: 1;
}

.card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff4655, transparent, #ff4655);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(10px);
}

.card:hover::after {
    opacity: 0.6;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 70, 85, 0.8);
    box-shadow: 
        0 20px 60px rgba(255, 70, 85, 0.3),
        0 0 40px rgba(255, 70, 85, 0.2),
        inset 0 0 30px rgba(255, 70, 85, 0.05);
}

.card_image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15), rgba(15, 25, 35, 0.9));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 70, 85, 0.2);
}

/* MODIFIER ICI SI PROBLEME IMAGE DANS CARD */
.card_image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.5s ease;
    object-fit:scale-down;
}

.card:hover .card_image img {
    transform: scale(1.1);
}

.card_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.card:hover .card_image::before {
    left: 100%;
}

.card_content {
    position: relative;
    z-index: 10;
}

.card_title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.card_price {
    font-size: 28px;
    font-weight: bold;
    color: #ff4655;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* MODIFIER ICI SI PROBLEME ICONE PRIX */
.vp_icon {
    width: 32px;
    height: 32px;
}

.card_btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid rgba(255, 70, 85, 0.6);
    color: #ff4655;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

.card_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ff4655;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.card_btn span {
    position: relative;
    z-index: 1;
}

.card_btn:hover::before {
    width: 400px;
    height: 400px;
}

.card_btn:hover {
    color: white;
    border-color: #ff4655;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 70, 85, 0.4);
}

.parallax_container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
    perspective: 1000px;
}

.parallax_card {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15) 0%, rgba(15, 25, 35, 0.9) 100%);
    border: 2px solid rgba(255, 70, 85, 0.3);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 70, 85, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.parallax_card:hover::before {
    opacity: 1;
}

.parallax_card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 70, 85, 0.8);
    box-shadow: 
        0 20px 60px rgba(255, 70, 85, 0.3),
        0 0 40px rgba(255, 70, 85, 0.2),
        inset 0 0 30px rgba(255, 70, 85, 0.05);
}

.parallax_image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.parallax_card_left .parallax_image {
    clip-path: polygon(0 0, 60% 0, 50% 100%, 0 100%);
}

.parallax_card_right .parallax_image {
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 50% 100%);
}

.parallax_content {
    position: absolute;
    z-index: 10;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.parallax_card_left .parallax_content {
    right: 0;
    text-align: right;
    align-items: flex-end;
    width: 50%;
}

.parallax_card_right .parallax_content {
    left: 0;
    text-align: left;
    align-items: flex-start;
    width: 50%;
}

.parallax_content h3 {
    font-size: 48px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ff4655 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 70, 85, 0.5);
}

.parallax_content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}


/* Responsive */
@media (max-width: 768px) {
    .parallax_card {
        height: 350px;
    }
    
    .parallax_card_left .parallax_image,
    .parallax_card_right .parallax_image {
        clip-path: none;
    }
    
    .parallax_content {
        width: 100%;
        text-align: center;
        align-items: center;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        bottom: 0;
        top: auto;
        height: auto;
        padding: 30px;
    }
    
    .parallax_content h3 {
        font-size: 32px;
    }
    
    .parallax_content p {
        font-size: 16px;
    }
}

.featured_section {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(15, 25, 35, 0.8));
    border: 2px solid rgba(255, 70, 85, 0.3);
    border-radius: 20px;
    padding: 60px;
    margin: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 70, 85, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.featured_title {
    font-size: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ff4655 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
}

.featured_text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.featured_btn {
    background: linear-gradient(135deg, #ff4655 0%, #ff2a3d 100%);
    border: none;
    padding: 16px 50px;
    font-size: 15px;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.4);
    position: relative;
    z-index: 10;
    font-weight: 600;
}

.featured_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.6);
}


footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 25, 35, 0.95) 100%);
    padding: 60px 60px 30px 60px;
    border-top: 2px solid rgba(255, 70, 85, 0.3);
    margin-top: 100px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4655, transparent);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.footer_content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer_links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer_link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
}

.footer_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff4655;
    transition: width 0.3s ease;
}

.footer_link:hover {
    color: #ff4655;
    text-shadow: 0 0 8px rgba(255,70,85,0.6);
}

.footer_link:hover::after {
    width: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}


.promo_banner {
    background: linear-gradient(90deg, #ff2a3d 0%, #ff4655 50%, #ff2a3d 100%);
    padding: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 70, 85, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.promo_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@media (max-width: 1200px) {
    .hero_title {
        font-size: 64px;
    }
    .section_title {
        font-size: 38px;
    }
}

@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;
    }
    .hero_title {
        font-size: 48px;
    }
    .hero_subtitle {
        font-size: 18px;
    }
    .section {
        padding: 60px 30px;
    }
    .featured_section {
        padding: 40px 30px;
        margin: 60px 30px;
    }
}



