/* Modern Cinematic Photography Portfolio */

/* Font Import - Inter with multiple weights */
@font-face {
  font-family: Inter;
  src: url(assets/fonts/Inter.woff2) format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables - Dark Cinematic Theme */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --text-primary: #f5f5f5;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8942a;
  --accent-gold-light: #f4e4b0;

  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

section {
  scroll-margin-top: 80px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: all var(--transition-normal);
  cursor: default;
}

.logo:hover {
  color: var(--accent-gold-light);
  text-shadow: var(--glow-gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.mobile-only {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-gold);
}

/* Logo link */
.logo-link {
  text-decoration: none;
}

/* Dropdown Menu */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  display: inline;
  position: relative;
}

.nav-links .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.nav-links .dropdown-toggle:hover::before,
.nav-links .dropdown-toggle.active::before {
  width: 100%;
}


.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  list-style: none;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu li {
  list-style: none;
}

.nav-links .dropdown-menu li.divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.1);
  margin: 0.5rem 0;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  position: relative;
}

.nav-links .dropdown-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.nav-links .dropdown-menu a:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.nav-links .dropdown-menu a:hover::after {
  width: calc(100% - 3rem);
}

.nav-links .dropdown-menu a.active {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* Hero Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  height: 85dvh;
  min-height: 520px;
  max-height: 770px;
  overflow: hidden;
  padding-top: 70px;
  background: var(--bg-primary);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.4) 50%,
      rgba(10, 10, 10, 0.6) 100%);
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active img {
  transform: scale(1.05);
}

/* Hero Content Overlay */
.hero-content {
  position: absolute;
  top: calc(50% + 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: var(--text-primary);
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
  font-size: clamp(0.75rem, 2.5vw, 1.25rem);
  color: var(--accent-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease 0.5s both;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-gold);
  color: var(--bg-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
  animation: fadeInUp 1s ease 0.7s both;
}

.cta-btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Section */
.gallery {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 2rem;
  letter-spacing: 0.5px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 0.75rem;
  margin-bottom: 6rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
  transition: all var(--transition-normal);
  position: relative;
  display: block;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  cursor: pointer;
  grid-row: span 2;
}

/* Portrait (tall) images - upright 2:3 ratio */
.gallery-item.portrait {
  grid-row: span 3;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-item:hover img {
  transform: translateZ(0) scale(1.08);
}

/* Staggered animation delays */
.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-item:nth-child(9) { animation-delay: 0.45s; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fullscreen Modal */
.fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.fullscreen-modal .modal-zoom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.fullscreen-modal .modal-content {
  display: block;
  max-width: calc(100vw - 4rem);
  max-height: calc(100vh - 4rem);
  max-height: calc(100dvh - 4rem);
  object-fit: contain;
  box-shadow: var(--glow-gold);
}

.fullscreen-modal .close-modal {
  position: fixed;
  top: 20px;
  right: 30px;
  color: var(--accent-gold);
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.fullscreen-modal .close-modal:hover {
  color: var(--accent-gold-light);
  transform: scale(1.1);
}

/* About Section */
.about {
  background: var(--bg-secondary);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-image::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(212, 175, 55, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-primary);
}

.contact-form {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  font-family: inherit;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all var(--transition-normal);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: var(--bg-secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--glow-gold);
}

.submit-btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--text-muted);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.info-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.info-item h4 {
  margin-bottom: 0.75rem;
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-item a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.info-item a:hover {
  color: var(--accent-gold);
}

/* Social Section */
.social-section {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.social-container {
  max-width: 600px;
  margin: 0 auto;
}

.social-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--bg-tertiary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.social-link:hover svg {
  transform: scale(1.15);
}

/* Services Section (Home page) */
.services {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.service-icon {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-icon img {
  transform: scale(1.05);
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 2rem;
}

/* CTA Button Outline Variant */
.cta-btn-outline {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: none;
}

.cta-btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

/* Home About Section */
.home-about {
  background: var(--bg-secondary);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.home-about .about-content .cta-btn {
  margin-top: 2rem;
}

/* Page CTA Section */
.page-cta {
  padding: 5rem 2rem;
  background: var(--bg-primary);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.page-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.page-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.page-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page top padding for pages without hero */
.page-gallery,
.page-about,
.page-contact {
  margin-top: 70px;
}

/* Footer */
footer {
  background: var(--bg-primary);
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 90px;
  right: -400px;
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  min-width: 300px;
  max-width: 400px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(100%);
  transition: all var(--transition-normal);
}

.toast.show {
  right: 20px;
  opacity: 1;
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--bg-primary);
}

.toast-success .toast-icon {
  background: var(--accent-gold);
}

.toast-error .toast-icon {
  background: #e74c3c;
}

.toast-message {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.toast-success {
  border-left: 4px solid var(--accent-gold);
}

.toast-error {
  border-left: 4px solid #e74c3c;
}

/* Parallax Effect */
.about-image {
  will-change: transform;
}

/* Focus Indicators (Accessibility) */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Gallery image styling */
.gallery-item img {
  background: var(--bg-tertiary);
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .carousel-slide img {
    transition: none;
  }

  .about-image::after {
    animation: none;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel {
    height: 70vh;
    height: 70dvh;
    min-height: 470px;
    max-height: 670px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .stats {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .dropdown {
    display: none !important;
  }

  .mobile-only {
    display: list-item;
  }

  .menu-toggle {
    display: block;
  }

  .carousel {
    height: 60vh;
    height: 60dvh;
    min-height: 370px;
    max-height: 570px;
  }

  .gallery {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .toast {
    right: -100%;
    left: 10px;
    right: 10px;
    min-width: auto;
    max-width: none;
  }

  .toast.show {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    grid-row: span 1;
  }

  .gallery-item.portrait {
    grid-row: span 1;
  }

  .social-section {
    padding: 3rem 1.5rem;
  }

  .social-link {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 50vh;
    height: 50dvh;
    min-height: 320px;
    max-height: 470px;
  }
}

@media (max-width: 400px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .carousel {
    height: 40vh;
    height: 40dvh;
    min-height: 270px;
    max-height: 370px;
  }
}