/* Prudels Distro - Brutalist Streetwear Style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Anton&display=swap');

:root {
    --text-color: #ffffff;
    --border-color: #ffffff;
    --hover-bg: #ffffff;
    --hover-text: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    /* Use the user-provided background */
    background-image: url('assets/img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center vertically too */
    min-height: 100vh;
    padding: 2rem 1rem;
    position: relative;
    overflow-x: hidden;
}

/* Dark Overlay to ensure text readability */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Adjust opacity as needed */
    z-index: -1;
    backdrop-filter: blur(3px);
    /* Slight blur for focus */
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    z-index: 1;
}

/* Header Section */
.profile-section {
    margin-bottom: 3.5rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 2rem;
}

.streetwear-text {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    line-height: 0.85;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.outline-text {
    /* Solid text for better readability on busy background, 
       or keep outline if contrast is high enough. 
       Let's go solid white for "PRUDELS", Outline for "STREETWEAR" */
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    display: block;
    font-size: 3rem;
}

.slogan {
    font-size: 0.9rem;
    letter-spacing: 6px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
    background: #fff;
    color: #000;
    display: inline-block;
    padding: 5px 15px;
}

/* Links Section */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* Base Style: Glassmorphism */
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;

    /* Slight rounding for modern feel, or keep 0 for brutalist. Let's go slight 4px */
    border-radius: 4px;
}

/* Slide-in Fill Effect */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* Ease-out quart */
    z-index: 1;
}

.link-card:hover {
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.link-card:hover::before {
    width: 100%;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    position: relative;
    z-index: 2;
    /* Keep text above the fill */
    transition: color 0.3s ease;
}

.link-card:hover .link-content,
.link-card:hover .link-icon {
    color: #000;
    /* Invert text color on hover */
}

.link-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #fff;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-text {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.link-arrow {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    transform: translateX(0);
    transition: all 0.3s ease;
    color: #fff;
}

.link-card:hover .link-arrow {
    color: #000;
    transform: translateX(5px);
}

/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.7rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 480px) {
    .streetwear-text {
        font-size: 3.2rem;
    }

    .outline-text {
        font-size: 2.5rem;
    }
}