/* RESET + BASE ---------------------------------------------------------- */

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.65;
}

/* WRAPPER --------------------------------------------------------------- */

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* NAVBAR --------------------------------------------------------------- */

header {
  margin-bottom: 2rem;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #000;
}

/* Links container (desktop default) */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #000;
}

/* Mobile menu toggle button */
.nav-toggle {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* HERO ------------------------------------------------------------------ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons --------------------------------------------------------------- */

.btn {
  padding: 0.75rem 1.4rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #ff7a1a;
  color: white;
}

.btn-primary:hover {
  background: #ff8f3d;
}

.btn-ghost {
  background: transparent;
  border-color: #ddd;
  color: #333;
}

.btn-ghost:hover {
  background: #f4f4f4;
}

/* Hero image ------------------------------------------------------------ */

.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* SECTION HEADINGS ------------------------------------------------------ */

.section {
  margin-bottom: 4rem;
}

.section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.section p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* IMAGE GRID ------------------------------------------------------------ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.grid img:hover {
  transform: scale(1.03);
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.15);
}

/* CARD (Sessions & Prints) --------------------------------------------- */

.card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 1px solid #ececec;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  box-shadow: 0px 10px 22px rgba(0,0,0,0.08);
}

/* FOOTER ---------------------------------------------------------------- */

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

/* RESPONSIVE ------------------------------------------------------------ */

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

/* MOBILE NAV ------------------------------------------------------------ */

@media (max-width: 768px) {
  /* Show hamburger on mobile */
  .nav-toggle {
    display: block;
  }

  /* Hide links by default on mobile, show as dropdown */
  .nav-links {
    position: absolute;
    top: 64px; /* adjust if header height changes */
    right: 1.5rem;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 1rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 50;
  }

  .nav-links a {
    color: #222;
  }

  /* When toggled open */
  .nav-links.nav-open {
    display: flex;
  }
}

/* CONTACT FORM ---------------------------------------------------------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #fff;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff7a1a;
  box-shadow: 0 0 0 2px rgba(255, 122, 26, 0.25);
}
