﻿/* === MOLO BRASS BAND - RETRO-FUTURISTIC BRASS/GOLD/RED === */

:root {
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gold-dark: #B8860B;
    --brass: #C9942E;
    --red: #B22222;
    --red-light: #D4382E;
    --bg-dark: #0A0A0F;
    --bg-card: #111118;
    --bg-card-hover: #1A1A24;
    --text: #E8E4DC;
    --text-dim: #9A958A;
    --text-bright: #FFFFFF;
    --border: rgba(212, 168, 67, 0.15);
    --glow: rgba(212, 168, 67, 0.3);
    --glow-red: rgba(178, 34, 34, 0.3);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --container: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

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

/* Scanlines */
.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

/* === NAVIGATION === */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: all 0.3s;
}
.nav.scrolled {
    background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(10px);
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    color: var(--text-bright); letter-spacing: 3px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 500;
    color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase;
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--gold);
    margin: 5px 0; transition: all 0.3s;
}

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 24px 80px;
}
.hero-grid-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(rgba(212,168,67,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,168,67,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    perspective: 500px;
    transform: rotateX(60deg) translateY(-100px) scale(2.5);
    transform-origin: center top;
    mask-image: linear-gradient(to bottom, white 20%, transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, white 20%, transparent 70%);
}
.hero::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}
.hero-content { text-align: center; position: relative; z-index: 2; }
.hero-tag {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 6px; color: var(--gold); margin-bottom: 24px;
    text-shadow: 0 0 20px var(--glow);
}
.hero-title {
    font-family: var(--font-display); font-weight: 900; line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title .line1 {
    display: block; font-size: clamp(3rem, 10vw, 7rem);
    color: var(--text-bright);
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.hero-title .line2 {
    display: block; font-size: clamp(3.5rem, 12vw, 8.5rem);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--glow));
}
.hero-sub {
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 4px; color: var(--text-dim); text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-desc {
    font-size: 1.15rem; color: var(--text-dim); max-width: 550px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
    font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 3px;
    color: var(--text-dim); text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}

/* === BUTTONS === */
.btn {
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; padding: 14px 36px;
    border: none; cursor: pointer; transition: all 0.3s; display: inline-block;
}
.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--text-bright);
    box-shadow: 0 0 20px var(--glow-red), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
    color: var(--text-bright);
    box-shadow: 0 0 40px var(--glow-red), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent; color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    color: var(--bg-dark); background: var(--gold);
    box-shadow: 0 0 30px var(--glow);
}
.btn-large { padding: 18px 48px; font-size: 0.85rem; }

/* === SECTIONS === */
.section { padding: 100px 0; position: relative; }
.section-tag {
    font-family: var(--font-display); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 4px; color: var(--gold); text-transform: uppercase;
    margin-bottom: 16px;
}
.section h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700; color: var(--text-bright); margin-bottom: 20px;
}
.section-intro {
    font-size: 1.1rem; color: var(--text-dim); max-width: 700px;
    margin-bottom: 50px; line-height: 1.7;
}
.mt-section { margin-top: 80px; }

/* === ABOUT === */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
    margin-top: 40px;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; line-height: 1.8; }
.about-text .btn { margin-top: 16px; }
.about-stats { display: grid; gap: 20px; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border); padding: 32px;
    position: relative; overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--red));
}
.stat-number {
    font-family: var(--font-display); font-size: 3rem; font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px var(--glow);
}
.stat-label {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 3px; color: var(--text-dim); text-transform: uppercase;
    margin-top: 4px;
}

/* === SERVICES === */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    font-size: 2rem; color: var(--gold); margin-bottom: 16px;
    text-shadow: 0 0 20px var(--glow);
}
.service-card h3 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    letter-spacing: 1px; color: var(--text-bright); margin-bottom: 12px;
}
.service-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

/* === HISTORY TIMELINE === */
.timeline { margin-top: 50px; position: relative; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--red), transparent);
}
.timeline-item {
    position: relative; margin-bottom: 48px;
    padding: 28px 32px; background: var(--bg-card); border: 1px solid var(--border);
}
.timeline-item::before {
    content: ''; position: absolute; left: -48px; top: 32px;
    width: 12px; height: 12px; background: var(--gold);
    box-shadow: 0 0 15px var(--glow); transform: rotate(45deg);
}
.timeline-year {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
    margin-bottom: 8px;
}
.timeline-content h3 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--text-bright); margin-bottom: 8px;
}
.timeline-content p { color: var(--text-dim); font-size: 0.95rem; }

/* === GALLERY === */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
    position: relative; overflow: hidden; border: 1px solid var(--border);
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
    filter: sepia(20%) saturate(80%);
}
.gallery-item:hover img { transform: scale(1.05); filter: sepia(0%) saturate(100%); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(10,10,15,0.9));
    padding: 40px 16px 16px; font-family: var(--font-display);
    font-size: 0.7rem; letter-spacing: 2px; color: var(--gold);
    text-transform: uppercase;
}
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-item { aspect-ratio: 16/9; border: 1px solid var(--border); }
.video-item iframe { width: 100%; height: 100%; border: none; }

/* === SUPPORT === */
.support-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.support-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 40px 28px; text-align: center; transition: all 0.3s;
}
.support-card:hover { border-color: var(--gold); }
.support-icon {
    font-size: 2.5rem; color: var(--red); margin-bottom: 16px;
}
.support-card h3 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    letter-spacing: 1px; color: var(--text-bright); margin-bottom: 12px;
}
.support-card p { color: var(--text-dim); font-size: 0.95rem; }
.support-cta { text-align: center; margin-top: 48px; }

/* === VISION MISSION VALUES === */
.vmv { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vmv-card {
    padding: 40px 28px; text-align: center;
    border-right: 1px solid var(--border);
}
.vmv-card:last-child { border-right: none; }
.vmv-card h3 {
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
    margin-bottom: 16px;
}
.vmv-card p { color: var(--text-dim); font-size: 1rem; line-height: 1.7; }

/* === CONTACT === */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px;
}
.contact-item { margin-bottom: 32px; }
.contact-item h4 {
    font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
    margin-bottom: 8px;
}
.contact-item p { color: var(--text-dim); line-height: 1.8; }
.contact-item a { color: var(--text-dim); }
.contact-item a:hover { color: var(--gold); }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 18px; background: var(--bg-card);
    border: 1px solid var(--border); color: var(--text);
    font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.3s; outline: none; margin-bottom: 16px;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* === FOOTER === */
.footer {
    padding: 60px 0 32px; border-top: 1px solid var(--border);
    text-align: center;
}
.footer-brand {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    letter-spacing: 4px; color: var(--text-bright); margin-bottom: 12px;
}
.footer p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 16px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; }
.footer-links a {
    font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 2px;
    color: var(--text-dim); text-transform: uppercase;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); opacity: 0.5; }

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background: rgba(10,10,15,0.98);
        padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
    }
    .nav-toggle { display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .vmv-grid { grid-template-columns: 1fr; }
    .vmv-card { border-right: none; border-bottom: 1px solid var(--border); }
    .vmv-card:last-child { border-bottom: none; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-title .line1 { font-size: 2.5rem; }
    .hero-title .line2 { font-size: 3rem; }
}
