@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-beige: #FBF9F4;
  --off-white: #FFFFFF;
  --warm-gray: #7D7C7A;
  --accent-sage: #8F9779;
  --text-dark: #3a3a3a;
  --text-light: #FFFFFF;
  --border-color: #EAEAEA;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-beige);
}

.font-sans {
  font-family: 'Poppins', sans-serif;
}

.bg-beige { background-color: var(--bg-beige); }
.bg-off-white { background-color: var(--off-white); }
.text-warm-gray { color: var(--warm-gray); }
.text-accent-sage { color: var(--accent-sage); }
.bg-accent-sage { background-color: var(--accent-sage); }
.border-accent-sage { border-color: var(--accent-sage); }
.text-text-dark { color: var(--text-dark); }
.text-text-light { color: var(--text-light); }


.cta-primary {
  @apply inline-block bg-accent-sage text-white font-medium py-3 px-8 rounded-full text-sm tracking-wide transition-all duration-300 hover:bg-opacity-90 hover:shadow-lg transform hover:-translate-y-0.5;
}

.cta-secondary {
  @apply inline-block bg-white text-text-dark font-medium py-3 px-8 rounded-full text-sm tracking-wide transition-all duration-300 border border-gray-200 hover:shadow-lg transform hover:-translate-y-0.5 hover:border-accent-sage;
}

.nav-link {
    @apply relative text-text-dark transition-colors duration-300 hover:text-accent-sage pb-1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-sage);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

.nav-link.active-link {
    color: var(--accent-sage);
    font-weight: 500;
}


.filter-btn {
    @apply px-5 py-2 text-sm font-medium rounded-full transition-colors duration-300 border;
}

.filter-btn.active {
    @apply bg-accent-sage text-white border-accent-sage;
}

.filter-btn:not(.active) {
    @apply bg-white text-warm-gray border-gray-200 hover:border-accent-sage hover:text-accent-sage;
}

.portfolio-card {
    @apply bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition-all duration-300 transform hover:-translate-y-1 cursor-pointer;
}

#lightbox-close {
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
}

.service-card {
    @apply bg-white p-8 rounded-lg shadow-md text-center transition-all duration-300 hover:shadow-xl hover:-translate-y-1;
}

.process-step {
    @apply w-12 h-12 flex items-center justify-center bg-accent-sage text-white font-bold text-xl rounded-full;
}

.form-label {
    @apply block text-sm font-medium text-warm-gray mb-2;
}

.form-input {
    @apply block w-full px-4 py-3 bg-beige/50 border border-gray-200 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-accent-sage/50 focus:border-accent-sage transition-colors;
}

@tailwind base;
@tailwind components;
@tailwind utilities;
