@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Orbitron:wght@500;700;900&family=Poppins:wght@400;600;800&display=swap');

:root {
  --bg-color: #0a0a0c;
  --neon-purple: #c5a059; /* Classy Muted Gold/Bronze */
  --electric-pink: #d4af37; /* Metallic Gold */
  --aqua-blue: #f4e8d3; /* Champagne */
  --neon-green: #8b7355; /* Dark Gold/Bronze */
  --gold-highlight: #f8e5a2;
  
  --party-gradient: linear-gradient(135deg, #d4af37, #c5a059, #f4e8d3, #8b7355);
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(212, 175, 55, 0.2);
  
  --font-heading: 'Orbitron', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --spacing-sm: clamp(0.5rem, 1vw, 1rem);
  --spacing-md: clamp(1rem, 2vw, 2rem);
  --spacing-lg: clamp(2rem, 4vw, 4rem);
  --spacing-xl: clamp(4rem, 8vw, 8rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  cursor: none; /* Custom cursor */
}

/* Utilities */
.relative {
  position: relative;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--electric-pink);
  box-shadow: 0 0 15px var(--electric-pink), 0 0 30px var(--neon-purple);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

.custom-cursor.hovering {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--aqua-blue);
  box-shadow: 0 0 10px var(--aqua-blue);
}

/* Scroll Progress */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--party-gradient);
  z-index: 10000;
  box-shadow: 0 0 10px var(--electric-pink);
  transition: width 0.1s linear;
}

/* Particles Background */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.6; box-shadow: 0 0 10px currentColor; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2.2rem); }

p {
  margin-bottom: var(--spacing-md);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #ccc;
}

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

.text-glow {
  text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--electric-pink);
}

/* Glassmorphism System */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: var(--spacing-lg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.glass-panel:hover::before {
  left: 200%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-primary {
  background: var(--party-gradient);
  color: #000;
  box-shadow: 0 0 15px var(--electric-pink);
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--electric-pink), 0 0 10px var(--aqua-blue);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--electric-pink);
  border: 2px solid var(--electric-pink);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) inset, 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover {
  background: var(--electric-pink);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px var(--neon-purple); }
  50% { box-shadow: 0 0 25px var(--electric-pink); }
  100% { box-shadow: 0 0 10px var(--neon-purple); }
}

/* Layout & Grid */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

/* Navigation */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--electric-pink);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--party-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--aqua-blue);
  text-shadow: 0 0 10px var(--aqua-blue);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 0 5px var(--electric-pink);
}

/* Mobile Nav */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(212, 175, 55, 0.15);
  }
  .nav-links.nav-active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
  .hamburger.toggle span:nth-child(2) { opacity: 0; }
  .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('images/tillygamebreez-nightclub-crowd.png') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,12,0.8), rgba(10,10,12,0.4), rgba(10,10,12,1));
  z-index: -1;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: breathe 4s infinite alternate;
}

@keyframes breathe {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content p {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  margin-bottom: var(--spacing-lg);
  color: #ddd;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--electric-pink);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.card-body {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Venue Highlights (Grid) */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: var(--spacing-md);
}

.venue-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.venue-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-item:hover img {
  transform: scale(1.1);
}

.venue-item-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.venue-item:hover .venue-item-overlay {
  transform: translateY(0);
}

.v-item-1 { grid-column: span 8; grid-row: span 2; }
.v-item-2 { grid-column: span 4; grid-row: span 1; }
.v-item-3 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 768px) {
  .v-item-1, .v-item-2, .v-item-3 { grid-column: span 12; grid-row: span 1; }
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--aqua-blue);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--electric-pink);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  background: rgba(0,0,0,0.6);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 30px var(--neon-purple);
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover { color: var(--electric-pink); }

/* FAQ Accordion */
details {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

summary {
  padding: 20px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--electric-pink);
  transition: transform 0.3s;
}

details[open] summary {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid var(--glass-border);
}

details[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-content {
  padding: 20px;
  color: #ccc;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: #020202;
  border-top: 1px solid var(--glass-border);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  color: var(--neon-purple);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-col ul a:hover {
  color: var(--aqua-blue);
  text-shadow: 0 0 5px var(--aqua-blue);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--glass-border);
  padding-top: var(--spacing-md);
  color: #666;
  font-size: 0.9rem;
}

/* Internal Page Header */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(212,175,55,0.08), rgba(10,10,12,1));
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

/* Testimonials Slider */
.testimonial-wrapper {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.testimonial-wrapper::-webkit-scrollbar { height: 8px; }
.testimonial-wrapper::-webkit-scrollbar-track { background: #111; border-radius: 10px; }
.testimonial-wrapper::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 10px; }

.testimonial-card {
  min-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}
.testimonial-card p { font-style: italic; color: #fff; }
.testimonial-author { margin-top: 20px; font-weight: bold; color: var(--gold-highlight); }

/* Classy Blog Styles */
.classy-card {
  transition: all 0.3s ease;
  transform: none !important; /* Disables any previous transforms */
  background: rgba(255, 255, 255, 0.03);
}

.classy-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.classy-title {
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--aqua-blue);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
}

.classy-card .excerpt {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0;
  line-height: 1.6;
}

.full-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease, margin 0.6s ease;
}

.full-content.open {
  max-height: 1000px;
  opacity: 1;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
}

.full-content p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 15px;
}

.full-content p:last-child {
  margin-bottom: 0;
}

.btn-classy {
  background: transparent;
  color: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.5px;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 0.85rem;
  margin-top: 20px;
  align-self: flex-start;
  font-weight: 500;
  animation: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-classy:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #fff;
  border-color: var(--electric-pink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}