:root {
  --bg-main: #050607;
  --bg-section: #0f1012;
  --text-main: #f7ead6;
  --text-muted: #c8b8a0;
  --accent: #f0a15b;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* NAVBAR */
.navbar {
  padding: 1.5rem 0;
  background: linear-gradient(to bottom, rgba(5,6,7,0.95), rgba(5,6,7,0));
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.25em;
}

.nav-link {
  margin-left: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main) !important;
}

.nav-link:hover {
  color: var(--accent) !important;
}

/* HERO */
.hero-section {
  margin-top: 30px;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 12px;
}

/* TYPOGRAPHY */
.welcome-script {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--accent);
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--text-muted);
}

.lead-text {
  color: var(--text-muted);
}

/* ABOUT */
.about-section {
  background-color: var(--bg-section);
  padding: 2rem;
  border-radius: 12px;
  scroll-margin-top: 120px;
}

/* VIDEOS */
.videos-section {
  background-color: var(--bg-section);
  padding: 2rem;
  border-radius: 12px;
  scroll-margin-top: 120px;
}

.video-box {
  position: relative;
  cursor: pointer;
}

.video-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  background: rgba(0,0,0,0.45);
  padding: 0.3em 0.5em;
  border-radius: 50%;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-img {
    height: 300px;
  }

  .main-title {
    font-size: 2.4rem;
  }
}

.contact-link {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-link:visited {
  color: var(--text-muted);
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: none;
}

