/* === AJ MYERS PHOTOGRAPHY - MODERN MINIMALIST DARK === */
:root {
  --bg-body: #0a0a0a;
  --bg-card: #141414;
  --bg-navbar: rgba(10, 10, 10, 0.8);
  --text-main: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-nav: #ffffff;
  --primary-color: #ffffff;
  --primary-hover: #cccccc;
  --accent-color: #333333;
  --border-color: #262626;
  --shadow-color: rgba(0, 0, 0, 0.8);
  --shadow-hover: rgba(0, 0, 0, 0.9);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  color: #fff;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: var(--bg-navbar);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar .logo {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-nav);
  text-decoration: none;
}

.navbar nav {
  display: flex;
  align-items: center;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.navbar a:hover, .navbar a.active {
  color: var(--primary-color);
}

.client-login {
  border: 1px solid var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 2px;
}

.client-login:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #000 !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-nav);
  transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/photos/hero_wedding_1778305321865.png') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(10,10,10,1) 100%);
  z-index: -1;
}

.hero-text {
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeUp 1.5s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 200;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* === GENERAL SECTIONS === */
section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--primary-color);
  margin: 1.5rem auto 0;
}

/* === GALLERIES (MASONRY/GRID) === */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.filter-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--primary-color);
}

.filter-btn.active::after {
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 400px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.center-btn {
  text-align: center;
  margin-top: 4rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-color);
  color: #000;
}

/* === INVESTMENT === */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.package-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.2);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 200;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.package-features li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
  border-bottom: none;
}

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

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

.step-number {
  font-size: 4rem;
  font-weight: 100;
  color: var(--border-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* === ABOUT === */
.about-section {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(20%);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* === CONTACT === */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* === FOOTER === */
footer {
  background: var(--bg-card);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-socials {
  margin-bottom: 1.5rem;
}

.footer-socials a {
  color: var(--text-secondary);
  margin: 0 1rem;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--primary-color);
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .navbar nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-navbar);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  
  .navbar nav.active {
    right: 0;
  }
  
  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 5rem 1.5rem;
  }
}

/* Utility for animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
  font-weight: 200;
  line-height: 1;
  user-select: none;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  font-weight: 200;
  padding: 20px;
  transition: opacity 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
  opacity: 0.7;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}