/* Light, minimal tweaks */
body { background: #ffffff; color: #111; font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }
header { border-bottom: 1px solid rgba(0,0,0,0.06); background: #fff; }
.card { border-radius: 12px; }
.card img, .card video { border-radius: 12px; display:block; height: auto; }
.hero-center h1 { font-weight: 300; letter-spacing: 1px; }

.video-credit {
  position: absolute;
  bottom: 20px;
  right: 25px;
  color: #ffffffcc; /* soft white */
  font-size: 12px;
  backdrop-filter: blur(3px);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(91, 90, 90, 0.35);
}

.video-credit a{
    text-decoration: none;
    color: inherit;
}
.custom-logo {
    height: 40px;
    width: auto;
}
/* -------------------------------------------------
   PREMIUM HEADER BASE
------------------------------------------------- */
.premium-header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 14px 0;
  z-index: 2000;
  transition: all 0.35s ease;
  backdrop-filter: blur(18px);
}

/* Transparent on Homepage */
.header-transparent {
  background: rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.20);
}

/* Solid on inner pages */
.header-solid {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Shrink on scroll */
.premium-header.scrolled {
  padding: 6px 0;
  background: rgba(255,255,255,0.75) !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  backdrop-filter: blur(22px);
}

/* Brand */
.brand-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* Logo size */
.custom-logo {
  height: 28px;
  width: auto;
}

/* Desktop Nav Links */
.navpremium-link {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.navpremium-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #111;
  transition: width 0.25s ease;
}

.navpremium-link:hover {
  color: #000;
}
.navpremium-link:hover::after {
  width: 100%;
}

/* -------------------------------------------------
   MOBILE MENU
------------------------------------------------- */
.hamburger-btn {
  width: 34px;
  height: 28px;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px;
  cursor: pointer;
}

.hamburger-btn span {
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* When active, transform into perfect X */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  transform-origin: center;
}

/* Slide-down mobile menu */
.mobile-menu-panel {
  position: absolute;
  top: 100%;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  display: none;
  flex-direction: column;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-panel.open {
  display: flex;
}

.mobile-link {
  font-size: 18px;
  color: #111;
  padding: 10px 0;
  text-decoration: none;
}
.mobile-link:hover {
  color: #555;
}

/* Container holding Site Title + Tagline */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}


/* Title */
.brand-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* Tagline */
.brand-tagline {
  font-size: 13px;
  color: #555;
  opacity: 0.85;
  margin-top: 1px;
  
}
.premium-header a{
    text-decoration: none ;
}

.main-container{
    padding-top: 40px ;
    margin-top: 40px;
}

.custom-menu-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-icon {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

/* Hide close icon initially */
.menu-close {
  display: none;
}

/* When active, swap icons */
.custom-menu-btn.active .menu-open { display: none; }
.custom-menu-btn.active .menu-close { display: block; }
.mobile-menu-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu-panel.open {
  max-height: 300px; /* adjust to your content */
  opacity: 1;
  transform: translateY(0);
}
.header-home-btn .home-icon {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.header-home-btn {
  display: inline-flex;
  align-items: center;
}
.header-home-btn .home-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}


