/* Color Palette */
:root {
  --bg: #05060a;
  --bg-hero-gradient: radial-gradient(circle at 25% 25%, rgba(25,28,42,0.8), var(--bg));
  --overlay: rgba(5,6,10,0.7);
  --accent: #c9a24b;
  --text: #f2f2f7;
  --muted: #9a9cab;
}

/* Global Reset */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  font-weight: 600;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(5,6,10,0.65);
  backdrop-filter: blur(6px);
  z-index: 999;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 20px;
}
.nav-logo {
  height: 36px;
  width: auto;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  transition: color .25s ease;
}
.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: var(--bg-hero-gradient), url('../dj1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  background: var(--overlay);
  padding: 60px 30px;
  border-radius: 12px;
}
.hero-logo {
  width: 260px;
  max-width: 80%;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text);
}
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}
.btn-cta:hover {
  background: #d9b870;
  transform: translateY(-3px);
}

/* Generic Section Styles */
.section {
  padding: 80px 20px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: var(--accent);
}
.section p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform .3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.04);
}

/* Contact */
.contact-section a {
  color: var(--accent);
  text-decoration: none;
}
.contact-section a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: rgba(5,6,10,0.8);
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive Layout */
@media (max-width: 900px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-tagline {
    font-size: 1.2rem;
  }
  .nav-links a {
    margin-left: 16px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    margin-top: 10px;
  }
  .hero-logo {
    width: 200px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .section h2 {
    font-size: 2rem;
  }
}
