:root {
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-hover: #252525;
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --accent: #e8b4b8;
  --accent-hover: #f0c6c9;
  --gold: #d4af37;
  --border: #333;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-hover);
}

/* Header / Nav */
header {
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 2px;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/399d8610-f5ea-4275-b03e-1bb88b1ee4af.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.section-title span {
  color: var(--accent);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

/* Featured / About preview */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 500px;
}

.featured-text h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.featured-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Video section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}

.video-card .info {
  padding: 1rem;
}

.video-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.video-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.about-content img {
  width: 100%;
  border-radius: 4px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

footer .social {
  margin-bottom: 1rem;
}

footer .social a {
  margin: 0 0.8rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .featured,
  .about-content {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 1.2rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Password Gate */
.password-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.password-gate.hidden {
  display: none;
}

.password-box {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  border: 1px solid var(--border);
}

.password-box h2 {
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.password-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.password-box input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
}

.password-box input:focus {
  border-color: var(--accent);
}

.password-box button {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.password-box button:hover {
  background: var(--accent-hover);
}

.password-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.8rem;
  display: none;
}

.password-error.show {
  display: block;
}
