@import url('lineicons.css');

/* 
======================================================
  LUXURY EVENT MANAGEMENT - LIVE EXPERIENCE & STAGE MOTION
====================================================== 
*/

:root {
  /* Primary Colors */
  --midnight-purple: #1b002c;
  --deep-magenta: #c8005b;
  --electric-coral: #ff5e5b;
  --champagne-gold: #e2c073;
  --velvet-black: #080809;
  --vibrant-peach: #ff9b71;
  
  /* Accents */
  --neon-pink: #ff007f;
  --stage-blue: #00f0ff;
  
  /* Typography */
  --font-primary: 'Outfit', 'Inter', system-ui, sans-serif;
  
  /* Gradients */
  --spotlight-gold: radial-gradient(circle at 50% 0%, rgba(226, 192, 115, 0.4), transparent 70%);
  --stage-glow: radial-gradient(ellipse at 50% 50%, rgba(200, 0, 91, 0.2), rgba(27, 0, 44, 0) 60%);
  --text-gradient: linear-gradient(135deg, var(--champagne-gold), #fff, var(--vibrant-peach));
}

/* ================== GLOBAL STYLES ================== */
body {
  font-family: var(--font-primary);
  background-color: var(--velvet-black);
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--neon-pink);
  color: #fff;
}

/* Lenis Smooth Scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.display-1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
  font-weight: 900;
}

.display-2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

/* ================== BUTTONS ================== */
.btn-luxury {
  background: transparent;
  color: #fff;
  border: 1px solid var(--champagne-gold);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--champagne-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury:hover {
  color: var(--velvet-black);
}

.btn-luxury:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ================== NAVIGATION ================== */
.navbar {
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  z-index: 1000;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(8, 8, 9, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 192, 115, 0.1);
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff !important;
}
.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--champagne-gold) !important;
}

/* Dropdown overrides */
.dropdown-menu {
  background: rgba(8, 8, 9, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 192, 115, 0.1) !important;
  padding: 0.5rem 0;
}
.dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: rgba(226, 192, 115, 0.1) !important;
  color: var(--champagne-gold) !important;
}

/* ================== HERO SECTION ================== */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(8, 8, 9, 0.3), var(--velvet-black));
  z-index: -1;
}
.hero-light {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 150vw; height: 100vh;
  background: var(--spotlight-gold);
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.kinetic-text {
  overflow: hidden;
}
.kinetic-text span {
  display: block;
}

/* ================== SECTIONS ================== */
.section-padding {
  padding: 100px 0;
}
.section-heading {
  margin-bottom: 50px;
}
.section-subtitle {
  color: var(--champagne-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

/* ================== PORTFOLIO GRID ================== */
.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
}
.portfolio-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(27, 0, 44, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-category {
  color: var(--electric-coral);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* ================== FOOTER ================== */
.site-footer {
  background: var(--midnight-purple);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(226, 192, 115, 0.1);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--stage-glow);
  pointer-events: none;
}
.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--champagne-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ================== RESPONSIVE NAV ================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(8, 8, 9, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 1px solid rgba(226, 192, 115, 0.1);
  }
  .navbar-nav {
    align-items: flex-start !important;
  }
  .nav-link {
    margin: 5px 0 !important;
    padding: 10px 0 !important;
    width: 100%;
  }
  .dropdown-menu {
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 1.5rem !important;
    margin: 0;
    box-shadow: none;
    width: 100%;
  }
  .dropdown-item {
    padding: 10px 0 !important;
  }
  .dropdown-item:hover, .dropdown-item:focus {
    background: transparent !important;
  }
}
