/* Variables */
:root {
    --neon-blue: #00f7ff;
    --neon-purple: #9775fa;
    --text-white: #ffffff;
    --intel-color: #0071c5;
    --amd-color: #ed1c24;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

/* Banner Section */
.banner-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/banner-palworld.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
    overflow: hidden;
}

/* Container principal */
.banner-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Titre FIVEM */
.banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--text-white);
    position: relative;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 247, 254, 0.5);
}

/* Barre verticale à côté du titre */
.banner-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-purple));
}

/* Zone de texte */
.banner-text {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 254, 0.1);
    backdrop-filter: blur(10px);
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Conteneur des boutons serveurs */
.server-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

/* Style des boutons serveurs */
.server-option {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Styles spécifiques pour Intel */
.server-option.intel {
    border-left: 3px solid var(--intel-color);
}

.server-option.intel:hover {
    background: rgba(0, 113, 197, 0.2);
    border-color: var(--intel-color);
    box-shadow: 0 0 15px rgba(0, 113, 197, 0.3);
}

/* Styles spécifiques pour AMD */
.server-option.amd {
    border-left: 3px solid var(--amd-color);
}

.server-option.amd:hover {
    background: rgba(237, 28, 36, 0.2);
    border-color: var(--amd-color);
    box-shadow: 0 0 15px rgba(237, 28, 36, 0.3);
}

/* Effet hover commun */
.server-option:hover {
    transform: translateY(-2px);
}

/* Texte des boutons */
.server-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .banner-section {
        min-height: 500px;
        padding: 3rem 1rem;
    }

    .banner-title {
        font-size: 3rem;
    }

    .banner-text {
        padding: 1.5rem;
    }

    .banner-text p {
        font-size: 1.1rem;
    }

    .server-options {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }

    .server-option {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .banner-section {
        min-height: 400px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-title::before {
        height: 60%;
        left: -15px;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .banner-text {
        padding: 1rem;
    }
    
    .server-option {
        padding: 0.7rem 1.2rem;
    }
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content {
    animation: fadeIn 1s ease-out forwards;
}