@charset "utf-8";

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

html, body {
    width: 100%;
    overflow-x: hidden;
    background: #0b0b0b;
    font-family: Arial, Helvetica, sans-serif;
    color: #e6e6e6;
}

:root {
    --gold: #f5d76e;
    --gold-soft: #d4b85a;
    --text-light: #e6e6e6;
    --text-muted: #c4c4c4;
}

/* --------------------------------------------------
   UTILITY BAR (FIXED)
-------------------------------------------------- */
.utility-bar {
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.utility-bar a {
    color: #fff;
    text-decoration: none;
}

.utility-left select {
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
}

.utility-right span,
.utility-right a {
    margin-left: 18px;
}

/* --------------------------------------------------
   CINEMATIC HEADER (CONTACT PAGE STYLE)
-------------------------------------------------- */
.site-header {
    width: 100%;
    padding-top: 60px; /* space under utility bar */
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Emblem Row */
.header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 20px 0;
}

/* 24K GOLD EMBLEMS — 200px */
.header-design,
.main-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px gold);
}

/* Remove old spacing rules */
.header-side img,
.header-center img {
    margin: 0 !important;
}

/* --------------------------------------------------
   NAV BAR (CLEAN + GOLD HOVER)
-------------------------------------------------- */
nav {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 9999;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    position: relative;
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1rem;
    padding-bottom: 4px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Gold glow hover */
.nav-links a:hover {
    color: gold;
    text-shadow: 0 0 8px gold;
}

/* Gold underline */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: gold;
    box-shadow: 0 0 6px gold;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active link */
.nav-links a.active {
    color: gold;
    text-shadow: 0 0 8px gold;
}

.nav-links a.active::after {
    width: 100%;
}



/* --------------------------------------------------
   HERO BASE
-------------------------------------------------- */
.home-hero {
    height: 600px !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --------------------------------------------------
   FOOTER (CINEMATIC GOLD)
-------------------------------------------------- */



.footer-col h4 {
    color: gold;
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: gold;
    text-shadow: 0 0 6px gold;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
}
/* PAGE HEADER (Hero) */
.hero-terms {
    background: url("images/licensing-header.jpg") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.page-header-inner h1 {
    font-size: 3.2rem;
    color: #f5d37d;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-header-inner p {
    font-size: 1.2rem;
    color: #ddd;
    margin-top: 10px;
}


/* GRID LAYOUT */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

/* CARD STYLE */
.card {
    background: #0a0a0a;
    border: 1px solid #b8860b;
    border-radius: 12px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.35);
}

.card h3 {
    color: #f5d37d;
    margin-bottom: 10px;
}

.card p,
.card ul li {
    color: #ddd;
    line-height: 1.6;
}

/* FEATURE LIST */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.feature-list li {
    margin: 6px 0;
}

/* GOLD BUTTONS */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #b8860b, #ffd700);
    color: #000;
}

.btn-secondary {
    background: #222;
    border: 1px solid #b8860b;
    color: #f5d37d;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
    .header-design,
    .main-logo {
        height: 140px;
    }

    .header-row {
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 4,1fr;
    }
}
/* MUSIC PLAYER */
.player-container {
  max-width: 900px;
  margin: 20px auto;
  background: #111319;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
.track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #2a2d36;
}
.track:last-child {
  border-bottom: none;
}
.track-title {
  font-size: 15px;
  font-weight: bold;
}
.track-meta {
  font-size: 12px;
  color: #b0b3c0;
}
.track-buttons {
  text-align: right;
}
button.btn-mp3 {
  background: #f0b63a;
  color: #111319;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-left: 5px;
}
button.btn-wav {
  background: #3ac0f0;
  color: #050608;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-left: 5px;
}
button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.now-playing {
  margin-top: 15px;
  font-size: 13px;
  color: #d0d3e0;
}
audio {
  width: 100%;
  margin-top: 10px;
}
/* NAVBAR */
.navbar {
  width: 100%;
  background: #111;
  padding: 15px 0;
}

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

.nav-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #f0c040; /* gold highlight */
}
/* ========================= */
/*        GLOBAL BASE        */
/* ========================= */

body {
  background: #000;
  color: #d4af37;
  font-family: 'Cinzel', serif;
  margin: 0;
}

/* ========================= */
/*        GLOBAL NAV         */
/* ========================= */

.gold-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  background: linear-gradient(90deg, #000, #1a1a1a);
  border-bottom: 2px solid #d4af37;
}

.gold-nav .logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #d4af37;
}

.gold-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.gold-nav .nav-links li a {
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.gold-nav .nav-links li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

/* ========================= */
/*        GLOBAL HEADER      */
/* ========================= */

.gold-header {
  text-align: center;
  padding: 70px 20px;
  background: radial-gradient(circle, #111 0%, #000 70%);
  border-bottom: 2px solid #d4af37;
}

.gold-header h1 {
  font-size: 60px;
  color: #d4af37;
  text-shadow: 0 0 20px #d4af37;
}

.gold-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* ========================= */
/*        GLOBAL FOOTER      */
/* ========================= */

.gold-footer {
  background: #0a0a0a;
  border-top: 2px solid #d4af37;
  padding: 50px 40px;
  color: #d4af37;
}

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

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #d4af37;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
}
.gold-nav ul,
.gold-nav .nav-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
/* ========================= */
/*        GLOBAL BASE        */
/* ========================= */

body {
  background: #000;
  color: #d4af37;
  font-family: 'Cinzel', serif;
  margin: 0;
}

/* ========================= */
/*        GLOBAL NAV         */
/* ========================= */

.gold-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  background: linear-gradient(90deg, #000, #1a1a1a);
  border-bottom: 2px solid #d4af37;
}

.gold-nav .logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #d4af37;
}

/* THIS IS THE FIX — KEEPS NAV HORIZONTAL */
.gold-nav ul,
.gold-nav .nav-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.gold-nav li {
  list-style: none;
}

.gold-nav li a {
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.gold-nav li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

