/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Landing Page Container */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    position: relative;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-image {
    margin-bottom: 3rem;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(231, 76, 60, 0.3);
    box-shadow: 
        0 0 0 8px rgba(231, 76, 60, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 
        0 0 0 8px rgba(231, 76, 60, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.7);
}

.hero-name {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e74c3c 50%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Hero Social Icons */
.hero-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-icon::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.5s ease;
}

.hero-icon:hover::before {
    left: 100%;
}

.hero-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    color: #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.hero-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e1306c;
    color: white;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.hero-icon.snapchat:hover {
    background: rgba(255, 252, 0, 0.2);
    border-color: #fffc00;
    color: #fffc00;
    box-shadow: 0 10px 25px rgba(255, 252, 0, 0.3);
}

.hero-icon.email:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    color: #e74c3c;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.about-text strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}
/* Music Section */
.music-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.music-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.music-item-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.music-item-link h3 {
    text-decoration: none !important;
}

.music-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.music-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.music-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.music-item:hover img {
    transform: scale(1.1);
}

.music-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.music-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.music-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-grid {
    max-width: 800px;
    margin: 0 auto;
}

.content-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.content-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-item:hover img {
    transform: scale(1.05);
}

.content-info {
    padding: 2rem;
    text-align: center;
}

.content-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.content-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Social Section */
.social-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Business Email */
.business-email {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.email-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.business-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 50px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.business-email-link:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    color: #ffffff;
}

.business-email-link i {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 180px;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.5rem;
}

.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    color: #ff0000;
}

.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #e1306c;
    color: #e1306c;
}

.snapchat:hover {
    background: rgba(255, 252, 0, 0.1);
    border-color: #fffc00;
    color: #fffc00;
}

/* Footer Section */
.footer-section {
    padding: 3rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 0 4rem 0;
        min-height: auto;
    }

    .profile-img {
        width: 250px;
        height: 250px;
    }

    .hero-name {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-social-icons {
        gap: 1rem;
    }

    .hero-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.1rem;
        text-align: left;
    }

    .music-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .stat-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .social-link {
        width: 250px;
    }

    .business-email {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .business-email-link {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 200px;
        height: 200px;
    }

    .hero-name {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .music-info h3 {
        font-size: 1.2rem;
    }

    .content-info h3 {
        font-size: 1.4rem;
    }

    .content-info p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .social-link {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 200px;
    }

    .hero-social-icons {
        gap: 0.75rem;
    }

    .hero-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .business-email {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .business-email-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .email-label {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(231, 76, 60, 0);
    }
}

.profile-img {
    animation: pulse 3s infinite;
}

/* Scroll animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling for webkit browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Dark theme optimizations */
::selection {
    background: rgba(231, 76, 60, 0.3);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}