/* ---------------------------------------------------
   GLOBAL STYLES & VARIABLES
-----------------------------------------------------*/
:root {
  --bg: #0d0f24;
  --text: #eaf1ff;
  --muted: #9aa4bf;

  --grad-1: linear-gradient(135deg, #ff6bcb, #ffa26b);
  --grad-2: linear-gradient(135deg, #6b9bff, #6bffe7);
  --grad-3: linear-gradient(135deg, #9d6bff, #ff6bd6);

  --glass: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.12);

  --radius: 14px;
  --maxw: 1200px;

  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, #1a1c40, #0d0f24 70%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---------------------------------------------------
   HEADER / NAVBAR
-----------------------------------------------------*/
/* ================================================
   PERFECT HORIZONTAL NAVBAR — SAME ON ALL PAGES
   ================================================ */
.site-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;   /* LOGO LEFT — NAV RIGHT */
  align-items: center;               /* vertically centered */
  padding: 18px 28px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(20, 22, 48, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* LOGO AREA */
.site-header.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 60px;
  border-radius: 10px;
  padding: 3px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: 0.3s ease;
}

/* Logo hover effect */
.brand-logo:hover {
  transform: scale(1.15);
  border-color: #6b9bff;
  box-shadow: 0 0 15px #6b9bff;
}

/* NAV MENU ALIGNMENT */
.nav {
  display: inline-flex;
  flex-direction: row;     /* ALWAYS horizontal */
  align-items: center;
  gap: 24px;               /* spacing between menu items */
  padding-left: 545px;
}

/* NAV LINKS BASE STYLE */
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.25s ease;
}

/* HOVER FOR ALL NAV ITEMS EXCEPT CONTACT */
.nav a:not(.contact-cta):hover {
  color: #6b9bff;
  transform: scale(1.15);
  border: 2px solid #6b9bff;
  background: rgba(107,155,255,0.1);
  box-shadow: 0 0 15px #6b9bff;
  border-radius: 10px;
}

/* CONTACT BUTTON SPECIAL STYLE */
.contact-cta {
  background: linear-gradient(90deg, #ff6bcb, #7f7fff);
  color: white !important;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.25s ease;
}

/* CONTACT HOVER EFFECT */
.contact-cta:hover {
  transform: scale(1.18);
  box-shadow: 0 0 18px #7f7fff;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav {
    gap: 14px;
  }
  .brand-logo {
    height: 48px;
  }
}

/* Brand (logo) area */
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ensure nav is a horizontal row, not a column */
.site-header .nav,
.nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px;
}

/* Make each link inline-block so they don't stack */
.site-header .nav a,
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;   /* prevent wrapping to next line */
  padding: 8px 12px;
}

/* Prevent any parent container from forcing children column */
.site-header * {
  flex-shrink: 0;
}

/* Mobile: stack into a burger if needed (optional) */
@media (max-width: 900px) {
  .site-header { padding: 12px 16px; }
  .nav { display: none; } /* show burger instead if implemented */
  .burger { display: block; }
}

.brand a {
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;

  .brand-logo {
    height: 60px;
    /* adjust size */
    width: 160px;
    border-radius: 8px;
    /* remove if you don’t want rounded corners */
    object-fit: cover;
  }

  .brand-logo {
    height: 60px;
    width: 160;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* soft border */
    padding: 3px;
    transition: all 0.3s ease;
    /* smooth animation */
    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    /* no glow initially */
  }

  /* hover effect */
  .brand-logo:hover {
    transform: scale(1.15);
    /* bigger */
    border-color: #6b9bff;
    /* border turns blue */
    box-shadow: 0 0 15px #6b9bff;
    /* glowing effect */
  }
}

.brand .dot {
  background: var(--grad-1);
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  transition: 0.25s;

}

/* Normal navbar links */
.nav a {
  color: var(--muted);
  /* your default color */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

/* Hover effect */


.nav a:hover {


  background: linear-gradient(90deg, #ff4e50, #fc913a);
  color: white !important;
  transform: scale(1.2);
  box-shadow: 0 0 20px #ff4e50,
    0 0 35px #fc913a;

}

.contact-cta {
  background: var(--grad-1);
  color: #101020 !important;
  border-radius: 12px;
}

.contact-cta {
  background: linear-gradient(90deg, #7f7fff, #ff6bcb);
  color: white;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
}

.contact-cta:hover {
  background: linear-gradient(90deg, #ff4e50, #fc913a);
  color: white !important;
  transform: scale(1.2);
  box-shadow: 0 0 20px #ff4e50,
    0 0 35px #fc913a;
}

.nav a.active {
  color: white;
}

/* ---------------------------------------------------
   MOBILE MENU
-----------------------------------------------------*/
.burger {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 23px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  right: 18px;
  background: #16182f;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 10px;
  z-index: 100;
}

.mobile-nav a {
  display: block;
  color: var(--muted);
  padding: 8px;
}

/* ---------------------------------------------------
   HERO SECTION
-----------------------------------------------------*/
.hero {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 20px;
}

.glow-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--grad-2);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(80, 127, 255, 0.4);
}

.lead {
  color: var(--muted);
  margin-bottom: 16px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--grad-2);
  color: #0c0f1a;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-ghost {
  color: var(--muted);
  border: 1px solid var(--border-glass);
}

.btn-ghost:hover {
  background: var(--glass);
  color: white;
}

/* ---------------------------------------------------
   FLOATING CARD + ANIMATION
-----------------------------------------------------*/
.floating-card {
  width: 320px;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  object-fit: cover;
}

.card-meta {
  color: var(--muted);
  margin-top: 8px;
}

.floating-blob {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--grad-1);
  filter: blur(40px);
  position: absolute;
  top: 20px;
  left: -80px;
  opacity: 0.5;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ---------------------------------------------------
   GRID PREVIEW SECTION
-----------------------------------------------------*/
.preview-grid {
  max-width: var(--maxw);
  margin: 20px auto;
  padding: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.preview {
  background: var(--glass);
  border-radius: 14px;
  padding: 10px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 40, 0.4);
}

.preview img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
}

/* Reel thumbnails in gallery */
.reel-item {
  position: relative;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff6bcb, #6b9bff);
  color: black;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------
   GALLERY PAGE
-----------------------------------------------------*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 20, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
}

.lb-close {
  position: fixed;
  top: 30px;
  right: 30px;
  background: none;
  color: white;
  font-size: 40px;
  border: none;
  cursor: pointer;
}

/* ---------------------------------------------------
   PRICING SECTION
-----------------------------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--glass);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--border-glass);
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0, 0, 40, 0.4);
}

.price {
  font-size: 1.8rem;
  background: var(--grad-3);
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* ---------------------------------------------------
   PAYMENT PAGE
-----------------------------------------------------*/
.payment-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}

.qr-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.qr-card img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  padding: 8px;
}

/* ---------------------------------------------------
   CONTACT FORM
-----------------------------------------------------*/
label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

/* ---------------------------------------------------
   FOOTER
-----------------------------------------------------*/
.site-footer {
  text-align: center;
  padding: 28px;
  color: var(--muted);
}

/* ---------------------------------------------------
   RESPONSIVE
-----------------------------------------------------*/
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .payment-wrap {
    flex-direction: column;
  }
}
