/* =============================================
   Auggie Smith Photography — Custom Styles
   ============================================= */

/* ── Typography ─────────────────────────────── */

body {
  font-family: 'Georgia', 'Times New Roman', serif;
}

h1, h2, h3, h4 {
  font-weight: 200;
  letter-spacing: 0.05em;
}

/* ── Navbar ─────────────────────────────────── */

.navbar-brand {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  transition: color 0.2s ease;
}

/* ── Hero Section ───────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #080808;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.8s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 100;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.hero-content .tagline {
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 2.5rem;
}

/* ── Buttons ─────────────────────────────────── */

.btn-photo {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none !important;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-photo:hover {
  background: #ffffff;
  color: #111111;
}

.btn-photo-muted {
  border-color: #555;
  color: #aaa;
}

.btn-photo-muted:hover {
  background: #555;
  color: #fff;
}

/* ── Section Labels ──────────────────────────── */

.section-title {
  text-align: center;
  padding: 4rem 0 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e0e0e0;
  border: none;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.section-divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 0.5rem auto 0;
  width: 40px;
}

/* ── Featured Grid (Homepage) ────────────────── */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
}

.photo-item {
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.photo-item img:hover {
  transform: scale(1.04);
  opacity: 0.8;
}

.photo-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.photo-item.tall {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

/* ── Portfolio Gallery Grid ──────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 6px;
  padding: 0 6px 6px;
}

.gallery-item {
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
  cursor: zoom-in;
}

.gallery-item img:hover {
  transform: scale(1.04);
  opacity: 0.8;
}

/* ── Category Nav ────────────────────────────── */

.category-nav {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem 0.5rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.45rem 1.4rem;
  border: 1px solid #3a3a3a;
  background: transparent;
  color: #888;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
  text-decoration: none !important;
}

.category-btn:hover {
  border-color: #e0e0e0;
  color: #e0e0e0;
}

/* ── About Page ──────────────────────────────── */

.about-container {
  max-width: 860px;
  margin: 3rem auto 5rem;
  padding: 0 2rem;
}

.about-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 3rem;
}

.about-container h2 {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 0.5rem;
}

.about-container p {
  color: #bbb;
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-container ul {
  color: #bbb;
  line-height: 2;
  padding-left: 1.2rem;
}

/* ── Contact Page ────────────────────────────── */

.contact-container {
  max-width: 680px;
  margin: 4rem auto 6rem;
  padding: 0 2rem;
  text-align: center;
}

.contact-container p {
  color: #aaa;
  line-height: 1.9;
  font-size: 1.05rem;
}

.contact-details {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-line {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
}

.contact-line a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-line a:hover {
  color: #fff;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-social a {
  color: #555;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.contact-social a:hover {
  color: #e0e0e0;
}

/* ── Footer ──────────────────────────────────── */

.nav-footer {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #444;
  padding: 1.5rem;
}

/* ── Utility ─────────────────────────────────── */

.text-center { text-align: center; }

.cta-block {
  text-align: center;
  padding: 3rem 0 4rem;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-item.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
