@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* ============================================
   CAPTURED BY ALICIA - LOGO & BRANDING
   ============================================ */

/* Logo Container */
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

/* Main Logo Text: "CAPTURED" */
.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 8px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

/* Sub Logo Text: "BY ALICIA" */
.logo-sub {
  font-family: "Playfair Display", serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #666;
  margin-top: 0.25rem;
  transition: color 0.3s ease;
}

/* Logo Hover Effect */
.logo:hover .logo-main {
  color: #666;
}

.logo:hover .logo-sub {
  color: #999;
}

/* Hero Logo (Larger Version) */
.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo-main {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 12px;
  color: #1a1a1a;
  line-height: 1;
  margin: 0;
}

.hero-logo-sub {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: #666;
  margin-top: 0.75rem;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: #ffffff;
  margin: 0;
}

.footer-logo-sub {
  font-family: "Playfair Display", serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: #999;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

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

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin: -12px;
  box-sizing: content-box;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.active {
  display: block;
  opacity: 1;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%; /* Full width on mobile */
  max-width: 320px;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(10px);
  z-index: 2000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.active {
  right: 0;
}

.mobile-nav-content {
  text-align: left;
  position: relative;
  padding: 5rem 2rem 2rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 48px; /* Touch-friendly size */
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2001;
}

.mobile-nav-close:hover,
.mobile-nav-close:active {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-content li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-content li:last-child {
  border-bottom: none;
}

.mobile-nav-content a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: block;
  padding: 1.25rem 0.5rem; /* Touch-friendly padding */
  min-height: 48px; /* Minimum touch target */
}

.mobile-nav-content a:hover,
.mobile-nav-content a:active {
  color: #ccc;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
}

.mobile-nav-content a.active {
  color: #fff;
  font-weight: 400;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-logo {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-line1 {
  font-size: 4rem;
  letter-spacing: 6px;
}

.hero-logo-line2 {
  font-size: 3.2rem;
  letter-spacing: 4px;
  margin-top: -10px;
}

.hero .subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1a;
  min-height: 48px; /* Touch-friendly */
}

.cta-button:hover {
  background: transparent;
  color: #1a1a1a;
}

.cta-button:active {
  transform: scale(0.98);
}

.promo-text {
  margin-top: 6rem; /* Doubled from 3rem */
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 1rem 2rem;
  border: 2px solid #1a1a1a;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
}

.promo-text strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .promo-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    margin-top: 5rem; /* Doubled from 2.5rem */
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 0.65rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.5px;
    margin-top: 4rem; /* Doubled from 2rem */
  }
}

/* About Section */
.about {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-image {
    width: 100%;
  }
}

/* Services Section */
.services {
  background: #fafafa;
  padding: 6rem 2rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 4rem;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

/* Portfolio Preview */
.portfolio-preview {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-preview h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 4rem;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Gallery grid container */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns on desktop */
  gap: 20px; /* Space between images */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  aspect-ratio: 4/3; /* Adjust this ratio based on your photos */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops to fill the space nicely */
  display: block;
}

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

/* Mobile: 1 column */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
}

.view-gallery {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.view-gallery:hover {
  background: #1a1a1a;
  color: white;
}

/* Testimonials Section */
.testimonials {
  background: #fafafa;
  padding: 6rem 2rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
  quotes: "\201C""\201D";
}

.testimonial-card blockquote:before {
  content: open-quote;
  font-size: 2rem;
  color: #ccc;
  line-height: 0;
  position: relative;
  top: 0.3rem;
}

.testimonial-card blockquote:after {
  content: close-quote;
  font-size: 2rem;
  color: #ccc;
  line-height: 0;
  position: relative;
  top: 0.3rem;
}

.testimonial-card cite {
  font-style: normal;
  display: block;
}

.testimonial-card cite strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.testimonial-card cite span {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section with Calendly Integration */
.contact-section {
  background: #fafafa;
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #1a1a1a;
}

.contact-intro p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Calendly Section */
.calendly-section {
  margin-bottom: 3rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section - Full Width */
.contact-form-section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.option-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-align: center;
}

.option-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

/* Contact Form Styles */
.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

/* Custom Checkbox (shared across portal & testimonials) */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #999;
  border-radius: 4px;
  background: white;
  transition: all 0.2s ease;
}

.custom-checkbox:hover .custom-checkmark {
  border-color: #1a1a1a;
}

.custom-checkbox input:checked ~ .custom-checkmark {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.custom-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .custom-checkmark::after {
  display: block;
}

/* Form status styling */
.form-status {
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #333;
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.submit-btn.loading {
  background: #666;
  cursor: not-allowed;
}

/* Contact Footer */
.contact-footer {
  text-align: center;
  border-top: 1px solid #e5e5e5;
  padding-top: 3rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  font-size: 0.95rem;
  color: #666;
}

.contact-item strong {
  color: #1a1a1a;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-main {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin: 0;
  color: #ffffff;
}

.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: #999;
  margin: 0.25rem 0 0 0;
}

.footer-location {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 1px;
  margin: 0;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icons a {
  color: #999;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #ffffff;
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.copyright p {
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Logo adjustments for mobile */
  .logo-main {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 3px;
    margin-top: 0.15rem;
  }

  /* Hero section mobile adjustments */
  .hero {
    padding-top: 60px; /* Account for fixed navbar */
  }

  .hero-content {
    padding: 0 1.5rem;
    margin-top: 2rem; /* Push content down from top */
  }

  .hero-logo {
    margin-bottom: 1.5rem;
  }

  .hero-logo-main {
    font-size: 2.5rem;
    letter-spacing: 6px;
  }

  .hero-logo-sub {
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-top: 0.5rem;
  }

  .hero-logo-line1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }

  .hero-logo-line2 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .hero .subtitle {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .services,
  .portfolio-preview,
  .contact-section,
  .testimonials {
    padding: 3rem 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-divider {
    display: none;
  }

  .contact-option {
    padding: 2rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .logo-line1 {
    font-size: 1rem;
  }

  .logo-line2 {
    font-size: 0.8rem;
  }

  .hero-logo-line1 {
    font-size: 2.2rem;
  }

  .hero-logo-line2 {
    font-size: 1.8rem;
  }

  .option-title {
    font-size: 1.5rem;
  }

  .contact-option {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HOME GALLERY LIGHTBOX
   ============================================ */

#home-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#home-lightbox.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  touch-action: none;
}

#home-lightbox .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
}

#home-lightbox img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  will-change: transform;
  transform-origin: center center;
}

#home-lightbox .lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

#home-lightbox .lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

#home-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2001;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-lightbox .lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

#home-lightbox .lightbox-prev {
  left: 20px;
}

#home-lightbox .lightbox-next {
  right: 20px;
}

#home-lightbox .lightbox-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2002;
}

.gallery-link-btn {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.gallery-link-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #home-lightbox .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  #home-lightbox .lightbox-prev {
    left: 10px;
  }

  #home-lightbox .lightbox-next {
    right: 10px;
  }

  #home-lightbox .lightbox-controls {
    bottom: -50px;
  }

  .gallery-link-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
