@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    overflow-x: hidden;
    background-color: #000;
    color: #aaa;
}
a {
    color: #fff;
}

/* NAV */
.header__box {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.header__ul {
    display: flex;
    list-style: none;
    position: absolute;
    gap: 40px;
}
.ul__list {
    padding: 10px;
}
.list__link {
    color: #fff;
    border-bottom: 3px solid transparent;
    transition: border 0.3s, color 0.3s;
    font-size: 1.75rem;
}
.link--active {
    padding-bottom: 4px;
    border-bottom: 2px solid #6556b7;
    color: #6556b7;
}


.list__link:hover {
    padding-bottom: 3px;
    color: #6556b7;
    border-bottom: 2px solid #6556b7;
}

.link--tienda:hover {
    border: 1px solid #6556b7;
}

@media(max-width:995px) {
    .header__box {
        display: none;
    }
}

/* Navegación tlf*/

.menu-container {
    position: absolute;
    z-index: 1000;
}

.menu-label {
    display: none;
}

.menu-label input[type="checkbox"] {
    display: none;
}


.hidden-buttons {
    display: none;
    margin-top: 10px;
}

.header__ul--tlf {
    width: 9.5rem;
    list-style: none;
    gap: 40px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 3px #aaa;
    z-index: 40;
}

.list__link--tlf {
    color: #fff;
    border-left: 3px solid transparent;
    transition: border 0.5s, color 0.3s;
}
.link--active-tlf {
    padding-left: 6px;
    border-left: 2px solid #6556b7;
    color: #6556b7;
}
.list__link--tlf:hover {
    padding-left: 6px;
    border-left: 2px solid #6556b7;
    color: #6556b7;
}


@media(max-width:995px) {
    .menu-container {
        position: absolute;
        padding: 15px 10px;
        z-index: 10;
    }
    
    .menu-label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }
    
    .menu-label input[type="checkbox"] {
        display: none;
    }
    
    .icon-box {
        width: 1.5rem;
        color: #aaa;
        height: 1.60rem;
        border: 1px solid #fff;
        background-color: #222;
        border-radius: 4px;
        scale: 2;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        transition: all 0.3s;
        margin: 10px 10px;
    }
    
    .menu-label input[type="checkbox"]:checked + .icon-box {
        border-color: #6556b7;
    }
    
    .menu-label input[type="checkbox"]:checked + .icon-box i {
        color: white;
    }
    
    .hidden-buttons {
        display: none;
        margin-top: 10px;
    }
    
    .menu-label input[type="checkbox"]:checked ~ .hidden-buttons {
        position: absolute;
        top: 60px;
        left: 20px;
        display: flex;
        flex-flow: column wrap;
        scale: 1.2;
        z-index: 20;
    }
}

/* Contacto */

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
}

.contact-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.contact-title {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 1.8rem;
    color: #aaa;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    width: 100%;
    max-width: 400px;
    background: #111;
    border: 2px solid #333;
    border-radius: 12px;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-button i {
    font-size: 3rem;
    z-index: 2;
}

.social-button span {
    z-index: 2;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 1;
}

.social-button:hover::before {
    left: 0;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.discord {
    border-color: #5865F2;
}

.discord::before {
    background: linear-gradient(135deg, #5865F2, #4752C4);
}

.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.twitter {
    border-color: #1DA1F2;
}

.twitter::before {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.github {
    border-color: #fff;
}

.github::before {
    background: linear-gradient(135deg, #333, #000);
}

.github:hover {
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

@media(max-width:995px) {
    .contact-title {
        font-size: 3rem;
    }

    .contact-subtitle {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .social-button {
        padding: 15px 30px;
        font-size: 1.6rem;
    }

    .social-button i {
        font-size: 2.5rem;
    }
}