/* ============================================
   YOUNA - About Page Styles
   ============================================ */

/* Keyword highlight styles */
.keyword-highlight {
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(15, 240, 252, 0.3);
    padding: 0 2px;
}

@keyframes keywordPulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(15, 240, 252, 0.3);
    }
    50% {
        text-shadow: 0 0 12px rgba(15, 240, 252, 0.5);
    }
}

#about {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cards-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.content-grid {
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.title-icon {
    font-size: 1.8rem;
}

.about-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.bio-content {
    color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bio-social {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    box-sizing: border-box;
}

.bio-paragraph {
    margin-bottom: 0;
    position: relative;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    word-spacing: 1px;
}

/* Hero content now inside page-header */
.page-header .hero-content {
    margin: 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
}

.page-header .artist-name {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin: 0;
    padding: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    display: block;
}

.page-header .logo-img {
    height: auto;
    max-height: 1.75rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.links-card {
    color: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

/* Links Grid - Responsive columns handled by CSS */
.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop: ≥ 1024px */
@media (min-width: 1024px) {
    .links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Grid styles moved to grid.css */


.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
}

.social-link:hover {
    transform: translate3d(5px, 0, 0);
}

.link-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    background: transparent !important;
}

.link-youtube .link-icon,
.link-instagram .link-icon,
.link-spotify .link-icon,
.link-komi .link-icon,
.link-download .link-icon,
.link-soundcloud .link-icon {
    background: transparent !important;
}

.link-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Extra small mobile: < 480px */
@media (max-width: 479px) {
    .content-grid {
        margin-bottom: 2rem;
    }
    
    .about-section {
        padding: 0 0.75rem;
    }
    
    .bio-content {
        border-radius: 12px;
        margin-top: 0.25rem;
        gap: 1rem;
    }
    
    .bio-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: 0.25px;
        word-spacing: 0.8px;
    }
    
    .page-header .artist-name {
        font-size: 1.75rem;
        margin: 0;
        padding: 0;
        text-align: left;
        width: 100%;
        display: block;
    }
    
    .page-header .hero-content {
        justify-content: flex-start;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .page-header .logo-img {
        max-height: 1.25rem;
        height: auto;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .links-card {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    
    .social-link {
        padding: 0.75rem;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
    }
    
    .link-icon {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }
    
    .link-label {
        font-size: 0.8rem;
    }
}

/* Mobile: 480px - 767px */
@media (min-width: 480px) and (max-width: 767px) {
    .content-grid {
        margin-bottom: 3rem;
    }
    
    .about-section {
        padding: 0 1rem;
    }
    
    .bio-content {
        border-radius: 15px;
        margin-top: 0.5rem;
        gap: 1.25rem;
    }
    
    .bio-paragraph {
        font-size: 1.05rem;
        line-height: 1.65;
        letter-spacing: 0.3px;
        word-spacing: 1px;
    }
    
    .page-header .artist-name {
        font-size: 1.75rem;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .page-header .hero-content {
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }
    
    .page-header .logo-img {
        max-height: 1.5rem;
        height: auto;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .links-card {
        border-radius: 15px;
        padding: 1.5rem;
        margin-top: 1.25rem;
    }
    
    
    .social-link {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
    }
    
    .link-icon {
        font-size: 1.3rem;
        width: 40px;
        height: 40px;
    }
    
    .link-label {
        font-size: 0.85rem;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .content-grid {
        margin-bottom: 3rem;
    }
    
    .about-section {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .bio-content {
        border-radius: 15px;
        margin-top: 0.75rem;
        gap: 1.5rem;
    }
    
    .bio-paragraph {
        font-size: 1.1rem;
        line-height: 1.7;
        letter-spacing: 0.35px;
        word-spacing: 1.2px;
    }
    
    .page-header .artist-name {
        font-size: 1.75rem;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .page-header .logo-img {
        max-height: 1.75rem;
        height: auto;
    }
    
    .page-header .hero-content {
        margin: 0;
        padding: 0;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .links-card {
        border-radius: 15px;
        padding: 1.75rem;
        margin-top: 1.5rem;
    }
    
    
    .social-link {
        padding: 1.1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .link-icon {
        font-size: 1.6rem;
        width: 45px;
        height: 45px;
    }
    
    .link-label {
        font-size: 0.85rem;
    }
}

/* Desktop: 1024px - 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .content-grid {
        margin-bottom: 3rem;
    }
    
    .about-section {
        max-width: 1200px;
    }
    
    .bio-content {
        border-radius: 15px;
        margin-top: 0.75rem;
        gap: 1.5rem;
    }
    
    .bio-paragraph {
        font-size: 1.15rem;
        line-height: 1.75;
        letter-spacing: 0.4px;
        word-spacing: 1.5px;
    }
    
    .page-header .artist-name {
        font-size: 1.75rem;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .page-header .logo-img {
        max-height: 1.75rem;
        height: auto;
    }
    
    .page-header .hero-content {
        margin: 0;
        padding: 0;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .links-card {
        border-radius: 15px;
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    
    .social-link {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .link-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .link-label {
        font-size: 0.9rem;
    }
}

/* Large screens: ≥ 1440px */
@media (min-width: 1440px) {
    .content-grid {
        margin-bottom: 3rem;
    }
    
    .about-section {
        max-width: 1200px;
    }
    
    .bio-content {
        border-radius: 15px;
        margin-top: 0.75rem;
        gap: 1.5rem;
    }
    
    .bio-paragraph {
        font-size: 1.15rem;
        line-height: 1.75;
        letter-spacing: 0.4px;
        word-spacing: 1.5px;
    }
    
    .page-header .artist-name {
        font-size: 1.75rem;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .page-header .logo-img {
        max-height: 1.75rem;
        height: auto;
    }
    
    .page-header .hero-content {
        margin: 0;
        padding: 0;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .links-card {
        border-radius: 15px;
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    
    .social-link {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .link-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .link-label {
        font-size: 0.9rem;
    }
}

/* Extra small mobile: < 360px */
@media (max-width: 359px) {
    .page-header .artist-name {
        font-size: 1.75rem;
    }
    
    .page-header .logo-img {
        max-height: 1.75rem;
        height: auto;
    }
    
    .bio-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
        word-spacing: 0.5px;
    }
    
    .page-header .hero-content {
        margin: 0;
        padding: 0;
    }
    
    .page-header .logo-img {
        max-height: 1rem;
        height: auto;
    }
    
    
    .social-link {
        padding: 0.65rem;
    }
    
    .link-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}
