/* ============================================
   Modern, Clean & Bright Design
   Inspired by kyronmalachi.com
   ============================================ */

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --gray: #e8e8e8;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --accent: #000000;
  --accent-hover: #333333;
  --gold: #d4af37;
  --gold-light: #f5e6c8;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.is-loaded {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================
   Navigation
   ============================================ */

.nav-wrap {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--gray);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.brand:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.brand img {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: 0;
  cursor: pointer;
  padding: var(--spacing-xs);
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  display: inline-block;
}

.main-nav a:hover {
  color: var(--accent-hover);
  animation: bounce 0.6s ease;
  transform: translateY(-3px);
}

/* Special styling for Portfolio button */
.main-nav a[href="#portfolio"] {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  background-size: 200% 200%;
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4),
              0 0 20px rgba(212, 175, 55, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: goldShine 3s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-nav a[href="#portfolio"]:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6),
              0 0 30px rgba(212, 175, 55, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
  animation: bounce 0.6s ease, goldShine 3s ease-in-out infinite;
}

.main-nav a[href="#portfolio"]::after {
  display: none;
}

.brand .brand-logo {
  display: block;
  height: 56px;
  width: auto;
}

@media (max-width: 768px) {
  .brand .brand-logo {
    height: 44px;
  }
}

@keyframes goldShine {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4),
                0 0 20px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6),
                0 0 30px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px) scale(1.05);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
  75% {
    transform: translateY(-6px) scale(1.03);
  }
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--spacing-sm);
  right: var(--spacing-sm);
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-weight: 500;
}

.cta:hover {
  background: var(--accent-hover) !important;
}

.cta::after {
  display: none;
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.drop-btn {
  background: none;
  border: 0;
  padding: var(--spacing-xs) var(--spacing-sm);
  cursor: pointer;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.drop-btn:hover {
  color: var(--accent-hover);
  animation: bounce 0.6s ease;
  transform: translateY(-3px);
}

.drop-btn .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.open .drop-btn .arrow {
  transform: rotate(180deg);
}

.drop-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-xs) 0;
  display: none;
  min-width: 220px;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray);
}

.dropdown.open .drop-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.drop-menu li {
  padding: 0;
  list-style: none;
}

.drop-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
}

.drop-menu a:hover {
  background: var(--light-gray);
  color: var(--accent);
}

.drop-menu a::after {
  display: none;
}

/* ============================================
   Hero Section - Full Width Slideshow
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Reduced height */
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: scale(1.1);
  animation: zoomIn 8s ease-in-out infinite;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  animation: none;
}

@keyframes zoomIn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  width: 100%;
  padding: var(--spacing-md);
  text-align: center;
}

.hero-copy {
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-copy h1 {
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9),
               0 0 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--white);
  margin: 0 0 var(--spacing-md);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8),
               0 0 15px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.2s both;
  background: none;
  padding: 0;
  border: none;
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
  max-width: 640px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8),
               0 0 15px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.4s both;
  background: none;
  padding: 0;
  border: none;
}

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

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-indicators {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-xs);
  z-index: 4;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicators button.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.2);
}

.primary-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid var(--accent);
}

.primary-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.secondary-btn {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid var(--text-dark);
}

.secondary-btn:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Gold shiny style for Portfolio buttons */
.secondary-btn[href="#portfolio"],
a[href="#portfolio"].secondary-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  background-size: 200% 200%;
  color: var(--text-dark) !important;
  border: 2px solid rgba(212, 175, 55, 0.5);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4),
              0 0 20px rgba(212, 175, 55, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: goldShine 3s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.secondary-btn[href="#portfolio"]:hover,
a[href="#portfolio"].secondary-btn:hover {
  background-position: 100% 0;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6),
              0 0 30px rgba(212, 175, 55, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px) scale(1.05);
}

/* Removed old carousel styles - now using hero slideshow */

/* ============================================
   Portfolio Section
   ============================================ */

.portfolio {
  max-width: 1400px;
  margin: var(--spacing-xl) auto;
  padding: 0 var(--spacing-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm);
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-media {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.card:hover .card-media {
  transform: scale(1.05);
}

.card-body {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.card-body strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.card-body span {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   About Section
   ============================================ */

.about {
  background: var(--off-white);
  padding: var(--spacing-xl) var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 var(--spacing-lg);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  text-align: center;
}

.about p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.9;
  margin: 0 0 var(--spacing-md);
  text-align: justify;
}

.about p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
  position: relative;
  max-width: 1000px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-xl) var(--spacing-md);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Images/Los%20Angeles/WhatsApp%20Image%202026-01-03%20at%208.31.53%20PM.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.25;
}

.contact-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact .section-header h2,
.contact .section-subtitle {
  color: var(--text-dark);
  text-shadow: none;
}

.contact-intro {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  font-size: 16px;
  font-weight: 500;
}

.contact-intro a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  transition: var(--transition);
}

.contact-intro a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

/* Booking form */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: var(--spacing-md);
  background: var(--off-white);
  padding: var(--spacing-lg);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.booking-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  gap: var(--spacing-xs);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid var(--gray);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.booking-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: var(--spacing-sm);
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: var(--spacing-md);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox .lb-caption {
  color: var(--white);
  margin-top: var(--spacing-md);
  font-size: 16px;
  text-align: center;
}

.lightbox .lb-counter {
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--spacing-xs);
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}

.lightbox .lb-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--white);
  border-radius: 50%;
  padding: 12px;
  border: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
  color: var(--text-dark);
}

.lightbox .lb-close:hover {
  background: var(--light-gray);
  transform: scale(1.1);
}

.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lightbox .lb-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox .lb-prev {
  left: var(--spacing-md);
}

.lightbox .lb-next {
  right: var(--spacing-md);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.f-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.social {
  color: var(--white);
}

.social a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social a:hover {
  opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--spacing-sm);
  }

  .main-nav a,
  .drop-btn {
    padding: var(--spacing-xs) 10px;
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
  }

  .dropdown {
    width: 100%;
  }

  .drop-menu {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--gray);
    margin-left: var(--spacing-md);
    margin-top: var(--spacing-xs);
  }

  .main-nav a[href="#portfolio"] {
    display: block;
    width: fit-content;
    margin: var(--spacing-xs) 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
    padding: 0 var(--spacing-sm);
  }

  .contact {
    min-height: auto;
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .section-header h2,
  .about h2 {
    font-size: 36px;
  }

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

  .f-inner {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .car-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .car-btn.prev {
    left: var(--spacing-sm);
  }

  .car-btn.next {
    right: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }

  .booking-form {
    padding: var(--spacing-md);
  }

  .hero-indicators {
    bottom: var(--spacing-md);
  }
}

/* ============================================
   New Home Page Styles
   ============================================ */

/* Simple Hero Section */
.hero-simple {
  position: relative;
  width: 100%;
  height: 65vh; /* Reduced height from 80vh */
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 18%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  will-change: transform;
  animation: heroKenBurns 20s ease-in-out infinite;
}

@keyframes heroKenBurns {
  0%, 100% { transform: scale(1.06); }
  50% { transform: scale(1.12); }
}

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

.hero-text {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 1024px) {
  .hero-text {
    max-width: 1200px;
  }
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 var(--spacing-sm);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9),
               0 0 30px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  font-weight: 300;
  text-transform: uppercase;
}

/* Image Carousel Section */
.image-carousel-section {
  width: 100%;
  padding: var(--spacing-xl) 0;
  background: var(--white);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 400px;
}

.carousel-track {
  display: flex;
  gap: var(--spacing-md);
  height: 100%;
  will-change: transform;
}

.carousel-item {
  min-width: 300px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Booking Section */
.booking-section {
  width: 100%;
  padding: var(--spacing-xl) 0;
  background: var(--off-white);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.booking-section.logo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/Logo/Logo-BA_.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  pointer-events: none;
}

.booking-section.logo-bg .container {
  position: relative;
  z-index: 1;
}

/* Contact page: logo background option */
.contact-page.logo-bg .contact-background {
  background-image: url('Images/Logo/Logo-BA_.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
}

.contact-page.logo-bg .contact-background::after {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(255, 255, 255, 0.85) 100%
  );
}

/* ============================================
   Portfolio Page Styles
   ============================================ */

.portfolio-page {
  padding: var(--spacing-xl) var(--spacing-md);
  min-height: 80vh;
}

/* Category Cards */
.portfolio-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-lg) 0;
}

.category-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-120%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.category-card:hover::after {
  transform: translateX(120%);
}

.category-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.category-thumbnail.video-thumbnail {
  background: var(--text-dark);
}

.category-thumbnail.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card:hover .category-thumbnail {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.category-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  margin: 0;
}

/* Portfolio Grid View */
.portfolio-grid-view {
  max-width: 1400px;
  margin: 0 auto;
}

.back-button {
  background: var(--accent);
  color: var(--white);
  border: 0;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: var(--spacing-lg);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.back-button:hover {
  background: var(--accent-hover);
  transform: translateX(-5px);
}

.view-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 var(--spacing-lg);
  color: var(--text-dark);
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

/* Larger grid items for videos */
.portfolio-grid.video-view {
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

.portfolio-grid.video-cards {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.portfolio-grid.city-list {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.video-card {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.video-card:hover img {
  transform: scale(1.08);
}

.video-card .play-icon {
  width: 64px;
  height: 64px;
  font-size: 26px;
}

.video-card-meta {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 3;
  backdrop-filter: blur(8px);
}

.video-card.is-clicked {
  animation: tileClick 260ms ease;
}

.city-tile {
  appearance: none;
  border: 0;
  text-align: left;
  width: 100%;
  padding: 18px 18px;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.02) 100%);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.city-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

.city-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.city-tile:hover::before {
  opacity: 1;
}

.city-tile.is-clicked {
  animation: tileClick 260ms ease;
}

@keyframes tileClick {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(0.98); }
  100% { transform: translateY(-2px) scale(1); }
}

.portfolio-grid.grid-enter {
  animation: gridEnter 520ms ease;
}

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

.portfolio-stack {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-stack.placeholder {
  background-image: linear-gradient(180deg, #222 0%, #555 100%);
}

.portfolio-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 1;
}

.portfolio-stack:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-stack.placeholder {
  cursor: default;
}
.portfolio-stack.placeholder:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.portfolio-stack.placeholder .city-label {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-stack:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.city-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.portfolio-stack:hover .city-label {
  opacity: 1;
  transform: translateY(0);
}

/* Video stack styles */
.video-stack {
  position: relative;
}

/* Adjust aspect ratio for video items when in video view */
.portfolio-grid.video-view .video-stack {
  aspect-ratio: 16/9;
}

.video-stack video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text-dark);
  z-index: 2;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-stack:hover .play-icon {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Spotlight effect */
.portfolio-stack::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.portfolio-stack:hover::after {
  width: 300px;
  height: 300px;
}

/* Gallery Overlay */
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Keep navigation visible in gallery */
body.gallery-open .nav-wrap {
  z-index: 2001 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.gallery-container {
  width: 90%;
  max-width: 1400px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
}

.gallery-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: #000; /* Black for contrast */
  border: 2px solid #fff; /* White border for high contrast */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
  color: #fff; /* White text */
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-close:hover {
  background: #333;
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-md);
  pointer-events: none;
  z-index: 2001;
}

/* Hide gallery arrows */
.gallery-prev,
.gallery-next {
  display: none;
}

/* Single Image Overlay */
.single-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.single-image-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.single-image-container {
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-img,
.single-video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Single video open/close animations */
@keyframes videoIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes videoOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.98); }
}
.single-video.animate-in {
  animation: videoIn 250ms ease both;
}
.single-video.animate-out {
  animation: videoOut 200ms ease both;
}

.single-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: #000; /* Black for contrast */
  border: 2px solid #fff; /* White border for high contrast */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 3001;
  transition: all 0.3s ease;
  color: #fff; /* White text */
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-close:hover {
  background: #333;
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* ============================================
   About Page Styles
   ============================================ */

.about-page {
  position: relative;
  min-height: 100vh;
  padding: var(--spacing-xl) var(--spacing-md);
  background: radial-gradient(1200px circle at 20% 10%, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0) 45%),
              radial-gradient(900px circle at 90% 20%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0) 50%),
              var(--white);
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.about-slideshow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: 0 auto var(--spacing-lg);
  max-width: 1100px;
}

.about-slide-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #111;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}

.about-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform, opacity, filter;
}

.about-slide-img.is-current {
  opacity: 1;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04);
}

.about-slide-img.is-next {
  opacity: 0;
  transform: translateY(10%) scale(1.06);
  filter: blur(6px) saturate(1.05);
}

.about-slide-col.is-transitioning .about-slide-img.is-current {
  animation: aboutSlideOut 900ms ease forwards;
}

.about-slide-col.is-transitioning .about-slide-img.is-next {
  animation: aboutSlideIn 900ms ease forwards;
}

@keyframes aboutSlideIn {
  0% { opacity: 0; transform: translateY(10%) scale(1.06); filter: blur(6px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1.04); filter: blur(0); }
}

@keyframes aboutSlideOut {
  0% { opacity: 1; transform: translateY(0) scale(1.04); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-8%) scale(1.02); filter: blur(6px); }
}

.about-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 var(--spacing-lg);
  text-align: center;
  color: var(--text-dark);
}

.about-text {
  margin-bottom: var(--spacing-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-text p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.9;
  margin: 0 0 var(--spacing-md);
  text-align: justify;
}

.intro-video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.video-reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-player {
  position: relative;
  background: #000;
}

.video-controls-float {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-player:hover .video-controls-float,
.video-player.is-active .video-controls-float {
  opacity: 1;
}

.video-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.video-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.intro-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Page Styles */
.contact-page {
  position: relative;
  min-height: 80vh;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Images/Los%20Angeles/WhatsApp%20Image%202026-01-03%20at%208.31.53%20PM.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.25;
}

.contact-page .contact-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 1;
}

.contact-page .contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
}

.contact-page .section-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--text-dark);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 48px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .portfolio-categories {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .category-title {
    font-size: 32px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
  }
  
  /* Maintain larger video items on mobile too */
  .portfolio-grid.video-view {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid.video-view .video-stack {
    aspect-ratio: 16/9;
  }

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

  .about-content h1 {
    font-size: 42px;
  }

  .about-slideshow {
    grid-template-columns: 1fr;
  }

  .about-slide-col {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
  }

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