/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.page-loaded { opacity: 1; }

/* NAV (Sticky + Blur Animation) */
.nav {
  width: 100%;
  padding: 22px 0;
  position: fixed;
  top: 0;
  text-align: center;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 1000;
}

.nav.scrolled {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.nav-center a {
  text-decoration: none;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.nav-center a.active,
.nav-center a:hover { color: #d4af37; }

/* HERO */
.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 28%;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 260px 7% 0;
  animation: heroZoom 18s ease-in-out infinite;
}

@keyframes heroZoom {
  0% { background-size: 100%; }
  50% { background-size: 110%; }
  100% { background-size: 100%; }
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  animation: fadeInLeft 1.4s ease forwards;
  opacity: 0;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hero-name {
  font-size: 40px;
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(212,175,55,0.4);
}

.hero-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin: 20px 0;
}

.hero-sub {
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.8;
}

/* SOCIAL ICONS ROW */
.social-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* SIDE TITLE */
.side-title {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 20px;
  color: #d4af37;
  opacity: 0.6;
  font-weight: 700;
}

/* PAGE BASE */
.page {
  padding-top: 120px;
}

.page-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.page-title {
  text-align: center;
  color: #d4af37;
  font-size: 48px;
  font-weight: 700;
}

.page-sub {
  text-align: center;
  opacity: 0.85;
  margin: 10px 0 40px;
}

/* VIDEOS GRID */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.video-card {
  background: rgba(0,0,0,0.8);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.25s;
}

.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(0,0,0,0.8);
}

.video-frame iframe {
  width: 100%;
  height: 170px;
  border: none;
}

/* PAGER */
.pager {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.pager button {
  background: #d4af37;
  border: none;
  padding: 8px 12px;
  font-weight: 700;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
}

.more-text {
  margin-top: 30px;
  text-align: center;
  color: #d4af37;
}

/* RESPONSIVE */
@media(max-width:650px){
  .hero {
    padding: 130px 7% 0;
    background-position: center top;
  }

  .hero-name { font-size: 34px; }
  .hero-heading { font-size: 28px; }

  .hero-sub {
    background: rgba(0,0,0,0.55);
    padding: 12px;
    border-radius: 6px;
  }

  .videos-grid { grid-template-columns: 1fr; }
}
body {
  background: #000 !important;
}

