/* === NSTMixing - Enhanced Minimalist Theme === */

/* GENERAL PAGE STYLES */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* === NAVBAR (Fixed + Mobile-Clickable Hamburger) === */
nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav .logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #000000;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #007BFF;
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 36px; /* larger tap area */
  height: 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background 0.2s, border 0.2s;
}

.menu-toggle:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Checkbox trick for toggling menu */
#menu-checkbox {
  display: none;
}

#menu-checkbox:checked ~ ul {
  display: flex;
  animation: slideDown 0.3s ease;
}

/* MOBILE STYLES */
@media (max-width: 700px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  nav ul li {
    margin: 0.8rem 0;
    text-align: center;
  }
}

/* HERO SECTION WITH STATIC BACKGROUND IMAGE */
.hero {
  background: url('images/studio.jpeg') no-repeat center center fixed;
  background-size: cover; /* image fills entire hero */
  color: #ffffff;
  text-align: center;
  padding: 8rem 2rem 6rem;
  margin-top: 60px;
  position: relative;
}

/* Dark overlay to keep text readable */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  z-index: 0;
}

/* Keep text and buttons above overlay */
.hero h1,
.hero p,
.hero .button {
  position: relative;
  z-index: 1;
}

/* Button style remains the same */
.hero .button {
  background-color: #ffffff;
  color: #007BFF;
  font-weight: bold;
}

.hero .button:hover {
  background-color: #e5e5e5;
}

/* MOBILE FALLBACK for devices that don't support fixed backgrounds */
@media (max-width: 700px) {
  .hero {
    background-attachment: scroll; /* static on mobile for better support */
  }
}

/* CONTENT SECTIONS */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-block {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 3rem;
}

h2 {
  color: #000000;
  border-left: 4px solid #007BFF;
  padding-left: 0.5rem;
  margin-top: 0;
}

/* BUTTONS */
.button {
  display: inline-block;
  background-color: #007BFF;
  color: #ffffff;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.button:hover {
  background-color: #0056b3;
}

/* IMAGE / PLACEHOLDER BOXES */
.image-box {
  width: 100%;
  height: 250px;
  background: #e5e5e5;
  margin: 1.5rem 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.95rem;
}

/* ANIMATIONS */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555555;
  border-top: 1px solid #e5e5e5;
  margin-top: 3rem;
}

