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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

.bg-brand-red {
  background-color: #8B7355;
}

.text-brand-red {
  color: #8B7355;
}

.border-brand-red {
  border-color: #8B7355;
}

.ring-brand-red:focus {
  --tw-ring-color: #8B7355;
}

.bg-brand-beige {
  background-color: #efe5df;
}

.text-brand-beige {
  color: #efe5df;
}

.border-brand-beige {
  border-color: #efe5df;
}

.bg-brand-accent {
  background-color: #8B7355;
}

.text-brand-accent {
  color: #8B7355;
}

.border-brand-accent {
  border-color: #8B7355;
}

.ring-brand-accent:focus {
  --tw-ring-color: #8B7355;
}

.focus\:ring-brand-accent:focus {
  --tw-ring-color: #8B7355;
}

.focus\:border-brand-accent:focus {
  border-color: #8B7355;
}

.hover\:bg-brand-accent:hover {
  background-color: #8B7355;
}

.hover\:text-brand-accent:hover {
  color: #8B7355;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  color: white;
  background-color: #8B7355;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.nav-link-active {
  color: #8B7355;
  position: relative;
}

.nav-link-active::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 2px;
  bottom: -5px;
  left: 15%;
  background-color: #8B7355;
  transition: all 0.3s ease-in-out;
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Elements with scroll animation start hidden */
[data-animate-on-scroll] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-in-out forwards;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.animate-pulse {
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Hero Section Height - Tailwind v2 compatibility */
.hero-section {
  height: 70vh;
  min-height: 500px;
}

@media (min-width: 768px) {
  .hero-section {
    height: 90vh;
    min-height: 600px;
  }
}
