/*
Theme Name: meg360
Theme URI: https://360meg.websitestagingdomain.top
Description: Custom theme for 360 Marketing & Events Group. Dark luxury events aesthetic.
Author: CyberTek Marketing
Version: 1.0.0
Text Domain: meg360
*/

:root {
    --bg: #0a0a0a;
    --gold: #c9a84c;
    --white: #ffffff;
    --muted: rgba(255,255,255,0.5);
    --card-bg: #111111;
    --border: rgba(255,255,255,0.08);
    --font: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Buttons */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 4px;
    font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
    cursor: pointer; transition: opacity 0.2s, transform 0.2s;
    border: 2px solid transparent;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-gold   { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-dark   { background: #111; color: var(--white); }

/* Nav */
.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 32px;
}
.nav-logo { font-size: 22px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0; }
.nav-logo .gold { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* Hero */
.hero {
    min-height: 90vh; display: flex; align-items: center; padding: 100px 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 60%), var(--bg);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(
        90deg, transparent, transparent 79px,
        rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px
    );
    pointer-events: none;
}
.hero-content { max-width: 800px; position: relative; }
.eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero h1 { font-size: clamp(40px,6vw,80px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 580px; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Brand Bar */
.brand-bar { background: #0f0f0f; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 0; }
.brand-bar-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 24px; }
.brand-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brand-pill {
    padding: 8px 20px; border: 1px solid var(--border); border-radius: 100px;
    font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.03em;
    transition: border-color 0.2s, color 0.2s;
}
.brand-pill:hover { border-color: var(--gold); color: var(--white); }

/* Sections */
.section { padding: 100px 0; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section h2 { font-size: clamp(32px,4vw,52px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-top: 12px; }

/* Events Grid */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.event-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-top: 3px solid transparent; border-radius: 4px; padding: 32px;
    transition: border-top-color 0.25s, transform 0.25s;
}
.event-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.event-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.event-card p { font-size: 14px; color: var(--muted); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.service-item { padding: 32px; border: 1px solid var(--border); border-radius: 4px; transition: border-color 0.25s; }
.service-item:hover { border-color: rgba(201,168,76,0.3); }
.service-num { font-size: 36px; font-weight: 800; color: rgba(201,168,76,0.2); letter-spacing: -0.02em; line-height: 1; margin-bottom: 16px; }
.service-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.founder-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: 40px; }
.founder-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.founder-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.founder-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* Stats */
.stats-section { background: #0f0f0f; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-card { padding: 40px 24px; border: 1px solid var(--border); border-radius: 4px; }
.stat-value { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* CTA Band */
.cta-band { background: var(--gold); padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; color: #000; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: rgba(0,0,0,0.65); margin-bottom: 36px; }

/* Footer */
.site-footer { background: #050505; border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 18px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-logo .gold { color: var(--gold); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* Generic Page */
.page-content { padding: 80px 0; min-height: 60vh; }
.page-content h1 { font-size: clamp(32px,4vw,56px); font-weight: 800; margin-bottom: 32px; letter-spacing: -0.02em; }
.page-content p { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 700px; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 900px) {
    .events-grid { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
    .events-grid, .services-grid, .founders-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .hero { padding: 80px 0; }
    .section { padding: 72px 0; }
}
