/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0b0b0b;
    --secondary-bg: #121212;
    --accent-color: #ff6b35;
    --accent-hover: #ff8b5e;
    --text-primary: #ffffff;
    --text-secondary: #e6e6e6;
    --text-muted: #a0a0a0;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    --header-footer-bg: #0b0b0b; /* New variable for header/footer */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Simple Floating Circles Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(255, 165, 0, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 20% 60%, rgba(255, 107, 53, 0.08) 0%, transparent 15%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 40% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 18%),
        radial-gradient(circle at 70% 70%, rgba(255, 165, 0, 0.07) 0%, transparent 22%),
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.09) 0%, transparent 16%);
    z-index: -1;
    animation: floatBackground 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-10px, -5px) scale(1.02);
    }
    50% {
        transform: translate(5px, -10px) scale(0.98);
    }
    75% {
        transform: translate(-5px, 5px) scale(1.01);
    }
}

.container {
    width: 100%;
    max-width: 1100px; /* Reduced from 1200px*/
    margin: 0 auto;
    padding: 0 15px;    /* Reduced from 20px */
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* TYPOGRAPHY FIXES - Add this after the existing h1, h2, h3 styles */

p {
    font-size: 1rem; /* 16px - Standard body text */
    line-height: 1.6;
    color: var(--text-secondary); 
    margin-bottom: 1rem;
}

/* Make all paragraph-like text use the same base size */
.section-subtitle,
.intro-text,
.about-description,
.about-description p,
.featured-artist p,
.music-info p,
.video-card p {
    font-size: 1rem; /* All paragraphs same size */
    line-height: 1.6;
}

/* NEW: */
.section-header {
    text-align: left;  /* Changed from center */
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: left;  /* Changed from center */
    margin: 0.5rem 0 0 0;  /* Adjusted margins */
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-footer-bg); /* Changed from rgba() */
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;  /* Reduced from 4rem */
    align-items: center;
    margin-bottom: 4rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.artist-name {
    font-size: 3rem;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-color);
    padding-left: 0.5rem;
    margin-top: 2rem;
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.music-platforms a {
    transition: transform 0.3s ease;
}

.music-platforms a:hover {
    transform: translateY(-5px);
}

.music-platforms img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.music-platforms a:hover img {
    opacity: 1;
}

.hero-video {
    position: relative;
}

.hero-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--secondary-bg);
}

/* Reverse the grid order - text first, image second */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
}

.about-description p {
    font-size: 1rem; /* Ensure all paragraphs are same */
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Image with Overlay */
.about-image .image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.image-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


/* Mobile responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* On mobile, image should come first for better flow */
    .about-image {
        order: -1;
        text-align: center;
    }
}

/* Music Section */
.music-section {
    padding: 5rem 0;
    background-color: transparent;
    position: relative;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.music-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.music-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.album-art {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.music-card:hover .album-art img {
    transform: scale(1.05);
}

.music-info {
    padding: 1.5rem;
}

.featuring {
    color: var(--text-muted);
    font-size: 0.875rem; /* 14px - Slightly smaller for metadata */
    margin-bottom: 1rem;
}

audio {
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
}

audio::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: var(--text-primary);
    text-shadow: none;
}

audio::-webkit-media-controls-play-button {
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Videos Section */
.videos-section {
    padding: 5rem 0;
    background-color: transparent;
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--secondary-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}


.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-image img {
    width: 100%;
    max-width: 600px; /* Limits size on desktop */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive contact layout */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Optional: reduce gap on mobile */
    }
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: var(--header-footer-bg);
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover .social-icon {
    fill: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.made-by {
    text-align: center;
    padding-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.made-by a {
    text-decoration: none;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* ADD THESE TEXT SIZE ADJUSTMENTS: */
    h2 {
        font-size: 1.75rem; /* Slightly smaller on mobile */
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .artist-name {
        font-size: 2rem; /* Adjust hero name */
    }
    
    p,
    .section-subtitle,
    .intro-text,
    .about-description,
    .about-description p {
        font-size: 0.9375rem; /* 15px - Perfect for mobile */
        line-height: 1.6;
    }
    
    .subtitle {
        font-size: 0.875rem; /* 14px - Slightly smaller */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .music-platforms {
        padding: 1rem 0.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9375rem
    }
    
    .music-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8rem 0 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .music-platforms {
        gap: 1rem;
    }
    
    .music-platforms img {
        width: 30px;
        height: 30px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    /* ENSURE MINIMUM TEXT SIZES: */
    p,
    .section-subtitle,
    .intro-text,
    .about-description,
    .about-description p {
        font-size: 0.9375rem; /* 15px - Don't go below this */
        line-height: 1.6;
    }
    
    .featuring,
    .music-info .small-text {
        font-size: 0.8125rem; /* 13px - Minimum for secondary text */
    }
}

/* AOS Custom Styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    body::after {
        animation: none;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    body::after {
        animation-duration: 40s; /* Slower on mobile */
        background-size: 150% 150%; /* Larger coverage */
    }
    
    /* Reduce gradient count on mobile for performance */
    body::after {
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 25%),
            radial-gradient(circle at 90% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 30%),
            radial-gradient(circle at 50% 80%, rgba(255, 165, 0, 0.12) 0%, transparent 35%),
            radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 25%);
    }
}