:root {
  --primary-black: #050505;
  --charcoal: #1a1a1a;
  --dark-burgundy: #2e0814;
  --dark-wine: #4a0d1b;
  --champagne: #e8d5b5;
  --gold: #d4af37;
  --cream: #f8f5f0;
  --white: #ffffff;
  
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  display: block;
}

/* Typography */
.text-gold { color: var(--gold); }
.text-champagne { color: var(--champagne); }

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* Loading Screen */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 5px;
  color: var(--champagne);
  margin-bottom: 20px;
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.loader-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background-color: rgba(232, 213, 181, 0.1);
}

@media (max-width: 1024px) {
  .custom-cursor { display: none; }
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--champagne);
}

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

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--champagne);
  transition: var(--transition);
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.hero-label {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold);
}

.hero-title {
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
  font-style: italic;
}

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

.hero-socials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-social-link {
  font-size: 1.1rem;
  color: var(--champagne);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.hero-social-link:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.hero-social-icons {
  display: flex;
  gap: 20px;
}

.hero-social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.hero-social-icons a:hover {
  color: var(--gold);
  transform: scale(1.2);
}

.btn {
  padding: 15px 30px;
  border: 1px solid var(--champagne);
  background: transparent;
  color: var(--champagne);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-solid {
  background: var(--champagne);
  color: var(--primary-black);
}

.btn-solid::before {
  background: var(--primary-black);
}
.btn-solid:hover {
  color: var(--champagne);
  border-color: var(--primary-black);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* Sections Base */
section {
  padding: 100px 5vw;
}

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 5px;
  filter: grayscale(20%);
  transition: var(--transition);
}

.about-image:hover img {
  filter: grayscale(0%);
}

.about-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-label {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.about-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 1px;
}

/* Visual Break */
.visual-break {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.break-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(46, 8, 20, 0.6);
}
.break-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.break-content h2 {
  font-size: 4rem;
  letter-spacing: 10px;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.event-card img, .event-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.event-category {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.event-card:hover img, .event-card:hover video {
  transform: scale(1.05);
}

.event-card:hover .event-overlay {
  background: linear-gradient(to top, rgba(74, 13, 27, 0.9) 0%, rgba(0,0,0,0.4) 100%);
}

/* Gallery */
.gallery-container {
  columns: 3 250px;
  column-gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

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

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

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 30px; right: 40px; }
.lightbox-prev { left: 40px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 40px; top: 50%; transform: translateY(-50%); }

/* Social */
.social-section {
  text-align: center;
  background: var(--charcoal);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.social-links a {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--champagne);
  color: var(--primary-black);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(232, 213, 181, 0.3);
}

/* Contact */
.contact-section {
  text-align: center;
  padding: 120px 5vw;
}
.contact-section h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.contact-info {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #ccc;
}
.contact-info p { margin-bottom: 10px; }
.contact-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
footer {
  background: #000;
  padding: 50px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #666;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--champagne);
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 6rem; }
  .about { grid-template-columns: 1fr; }
  .contact-section h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
  header { padding: 20px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--primary-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  
  .hero-title { font-size: 4rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-cta { flex-direction: column; }
  
  .gallery-container { columns: 2 150px; }
  
  footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2rem; }
  .contact-section h2 { font-size: 2.2rem; }
  .gallery-container { columns: 1; }
}

/* Animations (GSAP target classes) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}
