/*
Theme Name: YashB Music
Theme URI: https://yashbmusic.nl
Author: YashB Music
Author URI: https://yashbmusic.nl
Description: Een professioneel WordPress theme voor muziekproducent Yash B, geïnspireerd door Bollywood esthetiek
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yashb-music
Tags: music, producer, bollywood, professional, portfolio

This theme uses Tailwind CSS for styling.
*/

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827 !important;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

#page,
.site {
    background-color: #111827;
    min-height: 100vh;
}

main#main,
.site-main {
    min-height: calc(100vh - 80px);
    background-color: #111827;
}

/* Footer Visibility Fix */
footer {
    background-color: #030712 !important;
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
    width: 100%;
    clear: both;
}

footer * {
    visibility: visible !important;
}

.site-footer,
footer.bg-gray-950 {
    margin-top: 5rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* Make sure sections don't overlap footer */
section {
    position: relative;
    z-index: 1;
}

section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 5rem;
}

/* Ensure page wrapper doesn't hide footer */
#page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

footer {
    flex-shrink: 0;
    margin-top: auto;
}
:root {
    --primary-gold: #D4AF37;
    --primary-purple: #4A148C;
    --primary-red: #B71C1C;
    --accent-orange: #FF6F00;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

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

.bollywood-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-red) 50%, var(--accent-orange) 100%);
}

.gold-text {
    color: var(--primary-gold);
}

.text-shadow-lg {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Pattern overlay for Bollywood feel */
.pattern-overlay {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
}

/* Music note decorations */
.music-notes::before {
    content: '♪ ♫ ♪';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 24px;
    color: var(--primary-gold);
    opacity: 0.3;
}