/* --- GLOBAL RESET & PREMIUM TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Syne:wght@600;700;800&display=swap');

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

body { background: #050505; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* --- HEADER (LOCKED TOP) --- */
.site-header { position: absolute; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; padding: 30px 5%; z-index: 100; }
.logo h2 { font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: 4px; font-size: 1.5rem; }
.main-nav a { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.8rem; margin-left: 20px; color: #fff; text-decoration: none; transition: 0.3s; }
.main-nav a:hover { color: #888; }

/* --- HOME LAYOUT (LOCKED SCREEN) --- */
.hero-section { height: 100vh; width: 100vw; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.video-background iframe { width: 100vw; height: 56.25vw; min-height: 100%; min-width: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }

/* --- HERO CONTENT --- */
.hero-content { position: relative; z-index: 2; text-align: center; margin-top: -50px; }
.hero-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 5rem; letter-spacing: 10px; text-transform: uppercase; }

/* --- BOTTOM NAV (RESTORED SOLID BAR) --- */
.bottom-nav { position: absolute; bottom: 0; left: 0; width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); z-index: 10; }
.nav-btn { background: rgba(0, 0, 0, 0.9); border: 1px solid #222; border-bottom: none; border-left: none; padding: 40px; text-align: center; color: #fff; text-decoration: none; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: 2px; transition: 0.3s; }
.nav-btn:first-child { border-left: 1px solid #222; }
.nav-btn:hover { background: #fff; color: #000; }

/* --- MUSIC PAGE GRID --- */
.catalog-wrapper { max-width: 1200px; margin: 0 auto; padding: 150px 5% 50px; }
.category-title { font-size: 1.5rem; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 10px; font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: 2px; }

.square-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-bottom: 60px; }
.square-card { aspect-ratio: 1 / 1; position: relative; border: 1px solid #222; background: #111; display: flex; align-items: center; justify-content: center; color: #444; font-size: 0.8rem; letter-spacing: 1px; }

.square-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); }
.square-overlay h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 5px; text-transform: uppercase; }
.square-overlay p { font-size: 0.8rem; color: #ccc; margin-bottom: 10px; }

.platform-btn { display: inline-block; padding: 5px 12px; border: 1px solid #666; font-size: 0.7rem; text-transform: uppercase; margin-right: 5px; color: #fff; text-decoration: none; transition: 0.3s; }
.platform-btn:hover { background: #fff; color: #000; }

/* --- TEXT & INFO PAGES (ABOUT, PRESS, BOOK ME) --- */
.page-wrapper { max-width: 1100px; margin: 0 auto; padding: 180px 5% 100px; }
.page-title { text-align: center; margin-bottom: 50px; }
.page-title h1 { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: 5px; text-transform: uppercase; border-bottom: 1px solid #222; padding-bottom: 20px; display: inline-block; }

.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }

.content-box { background: #0a0a0a; border: 1px solid #1a1a1a; padding: 50px; transition: 0.3s ease; }
.content-box:hover { border-color: #444; }
.content-box h3 { font-family: 'Syne', sans-serif; font-size: 1.5rem; margin-bottom: 15px; color: #fff; font-weight: 800; letter-spacing: 2px; }
.content-box p { color: #888; line-height: 1.8; font-size: 0.95rem; margin-bottom: 25px; font-weight: 300; }

.content-box .platform-btn { border-color: #444; color: #aaa; padding: 8px 16px; letter-spacing: 1px; }
.content-box .platform-btn:hover { background: #fff; color: #000; border-color: #fff; }
