/* DRMA Landing Page — Dreams to Reality Music Academy */
/* Brand: Gold #e6b65c, Navy #0f1115, Teal #24a8a2, Orange #ee612e */

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

:root {
    --bg: #0f1115;
    --surface: #16181f;
    --surface-2: #1e2028;
    --border: #2a2c35;
    --text: #f4f1ec;
    --text-dim: #9a9aaa;
    --gold: #e6b65c;
    --gold-dark: #c49530;
    --gold-glow: #e6b65c30;
    --teal: #24a8a2;
    --orange: #ee612e;
    --blue: #57a2d8;
    --radius: 12px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--bg) !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.nav-cta:hover { opacity: 0.9; }

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--gold-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(36, 168, 162, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Problem */
.problem {
    padding: 80px 0;
    background: var(--surface);
}

.problem h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.problem-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.problem-card:nth-child(1) { transition-delay: 0s; }
.problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-card:nth-child(3) { transition-delay: 0.2s; }
.problem-card:nth-child(4) { transition-delay: 0.3s; }

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--text-dim);
    font-size: 15px;
}

.problem-answer {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    max-width: 600px;
    margin: 0 auto;
}

/* Pillars */
.pillars {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 16px;
}

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

.pillar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pillar-color);
}

.pillar-card:hover {
    border-color: var(--pillar-color, var(--border));
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.pillar-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--pillar-color, var(--gold));
    opacity: 0.3;
    margin-bottom: 8px;
}

.pillar-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pillar-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.5;
}

/* About */
.about {
    padding: 80px 0;
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.about-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.about-tagline {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 12px;
    font-size: 15px;
}

.about-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Team */
.team {
    padding: 60px 0;
}

.team h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    width: 200px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.team-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-dim);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--surface);
}

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

.testimonial-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.testimonial-name {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

/* Tools */
.tools {
    padding: 80px 0;
}

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

.tool-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.tool-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tool-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.tool-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.tool-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gold);
}

.tool-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background:
        radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-grid h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid p,
.footer-grid a {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-grid a:hover { color: var(--text); }

.footer-motto {
    color: var(--gold) !important;
    font-style: italic;
    margin-top: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        gap: 16px;
    }
    .mobile-menu { display: block; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-stats { gap: 24px; }
}
