/* ---------------------------------------------------
   GLOBAL SETTINGS
---------------------------------------------------- */
:root {
  --gold: #d4af37;
  --gold-light: #f5e6a1;
  --gold-dark: #b8860b;
  --red-royal: #8b0000;
  --bg-black: #0a0a0a;
  --text-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-black);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  padding-bottom: 40px;
}

p, .content-block p {
  text-align: justify;
  color: #eeeeee;
}

/* ---------------------------------------------------
   HEADER & BRAND
---------------------------------------------------- */
.site-header {
  text-align: center;
  padding: 25px 0 10px;
}

.brand {
  text-decoration: none;
  color: var(--text-white);
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.brand-text {
  margin-top: 8px;
  font-size: 1.7em;
  font-weight: 700;
  color: var(--gold);
}

/* ---------------------------------------------------
   NAVIGATION MENU
---------------------------------------------------- */
#page-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 12px;
}

#page-nav ul li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  background: linear-gradient(90deg, var(--gold), var(--red-royal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease;
}

#page-nav ul li a:hover,
#page-nav ul li a.active {
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* ---------------------------------------------------
   MAIN TITLES & HEADERS
---------------------------------------------------- */
.page-header h1,
.page-main h1 {
  font-size: 2.3em;
  color: var(--gold);
  text-align: center;
  margin: 20px 0 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-block h2,
.content-block h3 {
  color: var(--gold-light);
  margin: 15px 0 10px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}

/* ---------------------------------------------------
   CONTENT AREA
---------------------------------------------------- */
.page-main {
  padding: 15px;
  max-width: 950px;
  margin: auto;
}

.content-block {
  margin-bottom: 25px;
}

/* ---------------------------------------------------
   VIDEO CARDS
---------------------------------------------------- */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px 0;
}

.video-card {
  width: 320px;
  padding: 12px;
  background: rgba(255,215,0,0.07);
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(212,175,55,0.25);
  transition: 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212,175,55,0.45);
}

.video-card h3 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.video-card video {
  width: 100%;
  border-radius: 10px;
}

/* ---------------------------------------------------
   FOOTER
---------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #333;
  margin-top: 40px;
  background: var(--bg-black);
}

.site-footer img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.site-footer a {
  text-decoration: none;
  color: var(--gold-light);
}

/* ---------------------------------------------------
   BACK TO TOP BUTTON
---------------------------------------------------- */
#back-to-top {
  position: fixed;
  right: 25px;
  bottom: 40px;
  background: var(--red-royal);
  color: var(--gold);
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(139,0,0,0.6);
  transition: 0.2s ease;
}

#back-to-top:hover {
  background: #a30000;
}

/* ---------------------------------------------------
   MOBILE FRIENDLY
---------------------------------------------------- */
@media (max-width: 600px) {
  .brand-text {
    font-size: 1.4em;
  }
  #page-nav ul li a {
    font-size: 0.95em;
  }
  .page-header h1 {
    font-size: 1.8em;
  }
  p, .content-block p {
    font-size: 0.95em;
    text-align: justify;
  }
}
