/* Adobe-themed Variables */
:root {
  --primary-gradient: linear-gradient(
    135deg,
    var(--adobe-terra) 0%,
    var(--adobe-clay) 100%
  );
  --secondary-gradient: linear-gradient(
    135deg,
    var(--adobe-stone) 0%,
    #4a4a4a 100%
  );
  --accent-color: var(--adobe-terra);
  --text-primary: var(--adobe-stone);
  --text-secondary: #64748b;
  --bg-light: #faf9f6;
  --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  --adobe-sand: #c2b280;
  --adobe-terra: #a0522d;
  --adobe-clay: #8b4513;
  --adobe-stone: #696969;
  --adobe-sage: #79866b;
}

/* Global Styles */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

/* Navbar Styling */
.navbar {
  background: var(--adobe-terra) !important;
  padding: 1rem 2rem;
  box-shadow: var(--card-shadow);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #faf9f6 !important;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  color: #faf9f6 !important;
}

.nav-link:hover {
  color: var(--adobe-sand) !important;
}

/* Hero/Banner Section */
.banner-container {
  position: relative;
  height: 30vh;
  overflow: hidden;
  background: var(--primary-gradient);
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.8;
}

/* Content Styling */
h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--adobe-terra);
  border-bottom: 2px solid var(--adobe-sand);
  padding-bottom: 0.5rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--adobe-stone);
  margin-bottom: 2rem;
}

/* Cards and Sections */
.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--adobe-sand);
}

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

/* Buttons */
.btn-primary {
  background: var(--adobe-terra);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--adobe-clay);
  box-shadow: 0 4px 12px rgba(160, 82, 45, 0.4);
}

/* Form Styling */
.form-control {
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--adobe-sand);
}

.form-control:focus {
  border-color: var(--adobe-terra);
  box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.2);
}

/* Footer */
footer {
  background: var(--adobe-stone) !important;
  padding: 2rem 0;
  color: #faf9f6;
}

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

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

/* Custom utility classes */
.bg-adobe-sand {
  background-color: var(--adobe-sand);
}
.bg-adobe-terra {
  background-color: var(--adobe-terra);
}
.bg-adobe-clay {
  background-color: var(--adobe-clay);
}
.text-adobe-stone {
  color: var(--adobe-stone);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .banner-container {
    height: 40vh;
  }

  .container {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 2rem;
  }
}
