@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #b5952f;
    --primary-glow: rgba(212, 175, 55, 0.4);
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --gray-bg: #111111;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --text-color: #f2f2f2;
    --text-muted: #999999;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Typography Enhancements */
.text-gold { 
    color: var(--primary-color) !important; 
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.text-muted {
    color: #ffffff !important;
}
.bg-gold { background-color: var(--primary-color) !important; color: #000 !important; }
.bg-dark-secondary { background-color: var(--gray-bg) !important; }

/* Premium Buttons */
.btn-gold-solid {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000 !important;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold-solid::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: -1;
}

.btn-gold-solid:hover::after {
    left: 120%;
    opacity: 1;
}

.btn-gold-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Outline Buttons */
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Glassmorphism Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.navbar-brand { transition: transform 0.3s ease; }
.navbar-brand:hover { transform: scale(1.02); }
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 8px;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.text-gold {
    color: var(--primary-color) !important;
}

/* Cinematic Hero Section */
.cinematic-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    margin-top: 0;
}
.cinematic-bg {
    position: absolute;
    top: -5%; left: -5%; right: -5%; bottom: -5%;
    background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    animation: cinematicZoom 20s infinite alternate ease-in-out;
    z-index: 0;
}
@keyframes cinematicZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.cinematic-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}
.cinematic-content {
    position: relative;
    z-index: 2;
    height: 100%;
}
.cinematic-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 40px rgba(212,175,55,0.4);
}
.cinematic-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #e0e0e0;
    text-shadow: 0px 4px 15px rgba(0,0,0,1);
    line-height: 1.6;
}
.flare-effect {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
    animation: flarePulse 5s infinite alternate ease-in-out;
}
@keyframes flarePulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Sticky Socials */
.sticky-buttons {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-5px); }
    100% { transform: translateY(-50%) translateX(0); }
}

.social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1.2rem; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.social-btn:hover { 
    transform: scale(1.15) translateY(-3px); 
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
}
.social-btn-small {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1rem; transition: transform 0.3s;
}
.social-btn-small:hover { transform: scale(1.1) translateY(-2px); }

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.section-padding { padding: 90px 0; }

/* Teacher Section */
.teacher-img {
    transition: all 0.5s ease;
    border: 3px solid rgba(212, 175, 55, 0.2);
}
.teacher-img:hover {
    transform: scale(1.03) rotate(1deg);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}
.glass-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 15px rgba(212, 175, 55, 0.05);
}

/* Instrument Cards (Premium) */
.inst-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.inst-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.08);
}
.inst-img {
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inst-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.inst-card:hover .inst-img img {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.inst-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.inst-title {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.inst-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.inst-list li {
    color: #bbb;
    font-size: 0.85rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    padding-left: 18px;
}
.inst-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 0.6rem;
    top: 7px;
}
.inst-list li:last-child { border-bottom: none; }
.inst-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}
.inst-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Features Grid */
.feature-box {
    transition: all 0.4s ease;
    border-color: rgba(255,255,255,0.05) !important;
}
.feature-box:hover {
    background: #151515 !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Video Cards */
.video-card {
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}
.video-card img {
    transition: all 0.5s ease;
}
.video-card i {
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.video-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}
.video-card:hover i {
    transform: translate(-50%, -50%) scale(1.3);
    color: var(--primary-color) !important;
}

/* Reviews */
.review-card {
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color) !important;
}

/* Footer Links */
.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover { 
    color: var(--primary-color) !important; 
    transform: translateX(5px);
}

/* Qualifications List */
.qualification-list li { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }
.qualification-list li:last-child { border-bottom: none; }
