/* Tropical Murals - Shared Styles */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Better focus styles */
a:focus-visible, button:focus-visible {
  outline: 2px solid #2D6A4F;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Portfolio filter buttons */
.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  border: 1px solid #e7e5e4;
  background: white;
  color: #44403c;
}

.filter-btn:hover {
  border-color: #2D6A4F;
  color: #2D6A4F;
}

.filter-btn.active {
  background-color: #2D6A4F;
  border-color: #2D6A4F;
  color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Lightbox / Modal */
.modal {
  animation: fadeInModal 0.2s ease forwards;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  animation: scaleIn 0.2s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes scaleIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Masonry-ish grid for portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing cards */
.pricing-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card.popular {
  border-color: #2D6A4F;
  box-shadow: 0 10px 15px -3px rgb(45 106 79 / 0.1);
}

.payment-plan {
  border-left: 4px solid #2D6A4F;
}

/* Form styles */
input, textarea, select {
  transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
  outline: none;
}

/* Image loading states */
img {
  background-color: #f5f5f4;
}

/* Subtle tropical pattern option for hero accents if wanted */
.tropical-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-10V8h-2v16h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 6v-4H4v4H0v2h4v4h2V8h4V6H6z' fill='%232D6A4F' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 52px 52px;
}