/* ============================================
   Variables & Reset
   ============================================ */
:root {
  --primary: #ff00ff;
  /* Neon Pink */
  --primary-dark: #cc00cc;
  --secondary: #00ffff;
  /* Neon Cyan */
  --bg-dark: #050505;
  --bg-card: #111111;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --spacing-container: 2rem;
  --border-radius: 16px;

  --glow-primary: 0 0 20px rgba(255, 0, 255, 0.3);
  --glow-secondary: 0 0 20px rgba(0, 255, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: black;
  padding: 1rem;
  z-index: 10000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
  top: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.highlight {
  color: var(--secondary);
  text-shadow: var(--glow-secondary);
}

.neon-text {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.text-center {
  text-align: center;
}

/* ============================================
   Components
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: black;
  box-shadow: 0 0 15px var(--secondary);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-block {
  display: block;
  width: 100%;
}

.section {
  padding: 5rem 0;
  content-visibility: auto;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--secondary);
  color: black !important;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700 !important;
}

.btn-nav:hover {
  box-shadow: 0 0 15px var(--secondary);
}

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
}

.nav-facebook-btn:hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
  transform: translateY(-2px);
  border-color: #1877f2;
}

.nav-instagram-btn:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
  transform: translateY(-2px);
  border-color: #e6683c;
}

.nav-tiktok-btn:hover {
  background: #000000;
  color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  border-color: #000000;
}

.nav-social-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  padding: 0.5rem;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Transform hamburger to X when active */
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s infinite alternate;
  will-change: transform;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-img {
    animation: none;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.9));
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-list .icon {
  font-size: 1.5rem;
}

.glow-card {
  position: relative;
  border-radius: var(--border-radius);
  padding: 5px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  box-shadow: var(--glow-primary);
}

.placeholder-img {
  height: 400px;
  width: 100%;
  border-radius: calc(var(--border-radius) - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: #0a0a0a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-card p {
  color: var(--text-muted);
}

/* ============================================
   Vibe/Gallery Section - Carousel (Redesigned)
   ============================================ */
#vibe .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#vibe .section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
  overflow: hidden;
}

/* Feathered fade gradients on left and right sides */
.carousel-container::before,
.carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10rem;
  z-index: 10;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, rgba(5, 5, 5, 0.8) 40%, transparent 100%);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark) 0%, rgba(5, 5, 5, 0.8) 40%, transparent 100%);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 0;
  will-change: transform;
  align-items: center;
  padding: 2rem 0;
}

.carousel-slide {
  flex: 0 0 30%;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 3px solid transparent;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  opacity: 1;
  transform: scale(0.9);
  filter: brightness(1) blur(0);
}

.carousel-slide.active {
  flex: 0 0 30%;
  opacity: 1;
  transform: scale(1);
  border-color: var(--primary);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.5),
    0 0 80px rgba(255, 0, 255, 0.3);
  z-index: 3;
  filter: brightness(1) blur(0);
}

.carousel-slide:not(.active):hover {
  opacity: 1;
  transform: scale(0.95);
  filter: brightness(1) blur(0);
  border-color: rgba(255, 0, 255, 0.3);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  position: relative;
  z-index: 2;
  filter: brightness(1) !important;
  opacity: 1 !important;
}

.carousel-slide.active img {
  transform: scale(1.05);
  filter: brightness(1) !important;
  opacity: 1 !important;
}

.carousel-slide:hover img {
  transform: scale(1.1);
}



/* ============================================
   Contact Section
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-methods {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.contact-method .icon {
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.1);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-main);
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: 0.3s ease;
    border-bottom: 1px solid var(--primary);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-grid,
  .contact-wrapper,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #vibe .container {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #vibe .section-title {
    text-align: center;
    width: 100%;
  }

  .carousel-container {
    padding: 0;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-container::before,
  .carousel-container::after {
    width: 3rem;
  }

  .carousel-track {
    padding: 1rem 0;
    gap: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }

  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    opacity: 1;
    transform: scale(1);
    aspect-ratio: 16 / 9;
    filter: brightness(1) blur(0);
    border-width: 2px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 3px solid transparent;
  }

  .carousel-slide.active {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    transform: scale(1);
    border-color: var(--primary);
    box-shadow:
      0 0 40px rgba(255, 0, 255, 0.5),
      0 0 80px rgba(255, 0, 255, 0.3);
    z-index: 3;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 85vh;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }


  .contact-wrapper {
    padding: 1.5rem;
  }
}

/* ============================================
   Refinements & Fixes
   ============================================ */

/* 2. Social Icon Buttons (Logos with Glow) */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: black;
  box-shadow: 0 0 20px var(--primary);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.social-icon-btn:nth-child(2):hover {
  background: var(--secondary);
  box-shadow: 0 0 20px var(--secondary);
  border-color: var(--secondary);
}

/* 3. Mobile Menu Full Screen & Transparency */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }

  .navbar {
    z-index: 1000;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9) !important;
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transform: translateY(-100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  /* Make regular nav items full width (appear stacked) */
  .nav-links li:not(:nth-last-child(3)):not(:nth-last-child(2)):not(:nth-last-child(1)) {
    flex-basis: 100%;
    width: 100%;
    text-align: center;
  }

  /* Group social icons horizontally on mobile */
  .nav-links li:nth-last-child(3),
  .nav-links li:nth-last-child(2),
  .nav-links li:nth-last-child(1) {
    flex-basis: auto;
    width: auto;
    display: flex;
  }

  .nav-social-btn {
    width: 50px;
    height: 50px;
    margin-top: 0.5rem;
  }

  .nav-social-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* 4. Footer Credit */
.footer-credit {
  text-align: right;
}

.footer-credit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: var(--secondary);
  text-shadow: 0 0 8px var(--secondary);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 1.25rem 0;
    margin-top: 3rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    white-space: normal;
  }

  .footer-credit {
    text-align: center;
  }

  .footer-credit p {
    font-size: 0.8rem;
  }
}

/* ============================================
   Return to Top Button
   ============================================ */
.return-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: black;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.return-to-top:hover {
  background: var(--secondary);
  color: black;
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-3px);
}

.return-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.return-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .return-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .return-to-top svg {
    width: 20px;
    height: 20px;
  }
}