/* =========================================
   AURA BOTANICAL - COMPILED CSS
   ========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .serif-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4a657;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Brand Color Classes */
.bg-aura-green {
  background-color: #2D5A3D;
}

.bg-aura-gold {
  background-color: #d4a657;
}

.bg-aura-gold:hover {
  background-color: rgba(212, 166, 87, 0.9);
}

.bg-sage-light,
.bg-sage-medium,
.bg-sage-dark {
  background-color: #6B9174;
}

.bg-cream {
  background-color: #FAF7F2;
}

.text-aura-green {
  color: #2D5A3D;
}

.text-aura-gold {
  color: #d4a657;
}

.border-aura-green {
  border-color: #2D5A3D;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

nav .group {
  position: relative;
  cursor: pointer;
}

nav .group .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 0.5rem 0;
  width: 12rem;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

nav .group .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
}

nav .group .dropdown-menu a:hover {
  background-color: #F3F4F6;
}

nav .group:hover .dropdown-menu {
  display: block;
}

/* Buttons */
button,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background-color: #d4a657;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: rgba(212, 166, 87, 0.9);
}

.btn-secondary {
  background-color: #ffffff;
  color: #2D5A3D;
  border: 2px solid #2D5A3D;
}

.btn-secondary:hover {
  background-color: #F9FAFB;
}

/* Cards */
.card-hover,
.service-card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover,
.service-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Forms */
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #6B9174;
  outline: none;
  box-shadow: 0 0 0 2px rgba(107, 145, 116, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: #6B7280;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
footer {
  background-color: #2D5A3D;
  color: #ffffff;
  padding: 4rem 2rem;
}

footer a {
  color: #ffffff;
  opacity: 0.8;
}

footer a:hover {
  color: #d4a657;
  opacity: 1;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

/* Utilities */
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.transition { transition: all 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }
.outline-none { outline: none; }

.divider-gold {
  background-color: #d4a657;
  height: 0.25rem;
  width: 100%;
}

.star-rating {
  color: #D4AF37;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
