/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  background: #111;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* Logo + Artist Name */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f0f0f0;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 5px;
}

.artist-name {
  font-size: 0.9rem;
  color: #f0f0f0;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 1.5rem; }
.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: #00bfa5; }

.menu-toggle { display: none; font-size: 2rem; cursor: pointer; }

/* Hero Section with Background Image */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("images/home-bg.jpeg.png") no-repeat center center;
  background-size: cover;
  opacity: 0.3; /* controls transparency */
  z-index: 1;
}

/* Text content stays above */
.hero-content {
  position: relative;
  z-index: 2;
  color: #f0f0f0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Sections */
.section { padding: 5rem 2rem; text-align: center; }

/* Portfolio Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gallery img:hover { opacity: 0.8; }

/* Lightbox */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Lightbox navigation buttons */
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 0 10px;
  transform: translateY(-50%);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #00bfa5;
}

/* About Section */
.about {
  background: #1a1a1a;
  text-align: left;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

/* Contact Form */
form {
  display: flex; flex-direction: column;
  max-width: 400px; margin: auto;
}
form input, form textarea {
  margin: 0.5rem 0; padding: 0.8rem;
  border: none; border-radius: 5px;
}
form button {
  background: #00bfa5; color: #0d0d0d;
  padding: 0.8rem; border: none; border-radius: 5px;
  cursor: pointer;
}
form button:hover { background: #009e85; }

/* Footer */
footer {
  text-align: center; padding: 1rem;
  background: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px; right: 0;
    width: 200px;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
}

/* Contact Section styled like Hero */
.contact {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("images/contact-bg.png") no-repeat center center;
  background-size: cover;
  opacity: 0.3; /* adjust transparency */
  z-index: 1;
}

/* Text content stays above */
.contact-content {
  position: relative;
  z-index: 2;
  color: #f0f0f0;
}

.contact-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.2rem;
  color: #ddd;
  margin: 0.5rem 0;
}
