:root {
  --bg-warm: #e8dccb;
  --card-bg: #f5efe5;
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
  background-color: var(--bg-warm);
}

.navbar {
  background-color: var(--bg-warm);
}

.nav-links a {
  transition: color 1.5s var(--ease-smooth);
}

.nav-cta {
  color: var(--bg-warm) !important;
  transition: background-color 1.5s var(--ease-smooth), transform 1.8s var(--ease-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
}

.mobile-menu-btn span {
  transition: all 1.5s var(--ease-smooth);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid #e0d8c9;
  transition: transform 1.8s var(--ease-smooth), box-shadow 1.8s var(--ease-smooth);
}

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

.section-subtitle {
  color: #8a8070;
}

.service-card p {
  color: #8a8070;
}

.cta-button {
  transition: transform 1.8s var(--ease-smooth), background-color 1.5s var(--ease-smooth), box-shadow 1.8s var(--ease-smooth);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.footer-section a {
  color: var(--bg-warm);
  transition: color 1.5s var(--ease-smooth);
}

footer {
  color: var(--bg-warm);
}

@media (max-width: 768px) {
  .nav-links {
    background-color: var(--bg-warm);
  }
}

/* Photo Gallery */
.gallery-section {
  padding: 5rem 2rem;
  background-color: var(--bg-warm);
}

.gallery-content {
  max-width: 1200px;
  margin: 0 auto;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.category-title:first-child {
  margin-top: 0;
}

.photo-grid {
  column-count: 3;
  column-gap: 1.5rem;
  margin-top: 2rem;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth), box-shadow 1.8s var(--ease-smooth);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.8s var(--ease-smooth);
}

.photo-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.photo-item:hover img {
  transform: scale(1.03);
}

.photo-item.visible {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--bg-warm);
  font-size: 3rem;
  cursor: pointer;
  transition: color 1.5s var(--ease-smooth);
}

.lightbox-close:hover {
  color: #1e8f8b;
}

@media (max-width: 992px) {
  .photo-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .photo-grid {
    column-count: 1;
  }
}
