:root {
  --verde-oscuro: #0F3822;
  --verde-bandera: #006341;
  --dorado: #C5A059;
  --dorado-claro: #E3C986;
  
  --text-dark: #0B1B15; /* No pure black */
  --text-gray: #4A5C54;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;

  --grad-verde: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-bandera) 100%);
  --grad-dorado: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-claro) 100%);
  
  --fuente-ui: 'Inter', sans-serif;
  --fuente-display: 'Montserrat', sans-serif;
}

body {
  font-family: var(--fuente-ui);
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fuente-display);
  color: var(--verde-oscuro);
  font-weight: 700;
}

p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Utils */
.bg-verde-grad {
  background: var(--grad-verde) !important;
  color: var(--bg-white);
}

.bg-dorado-grad {
  background: var(--grad-dorado) !important;
  color: var(--text-dark);
}

.text-verde { color: var(--verde-bandera) !important; }
.text-dorado { color: var(--dorado) !important; }

.btn-dorado {
  background: var(--grad-dorado);
  color: var(--verde-oscuro);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.btn-dorado:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
  color: var(--verde-oscuro);
}

/* Topbar */
.topbar {
  background-color: var(--verde-oscuro);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}
.topbar a:hover {
  color: var(--dorado);
}

/* Navbar */
.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}
.navbar-brand {
  font-family: var(--fuente-display);
  color: var(--verde-oscuro) !important;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 1rem 1.5rem !important;
  transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--verde-bandera) !important;
}

/* Hero Carousel (Color Block Placeholders) */
.hero-placeholder {
  height: 80vh;
  min-height: 500px;
  background: var(--grad-verde);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* To simulate where images would go, we put a subtle pattern or keep it solid */
.hero-placeholder::before {
  content: "ESPACIO PARA IMAGEN / SLIDER";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  font-family: var(--fuente-display);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 900;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 4rem;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

/* About / Admin 2025 */
.about-image-placeholder {
  background: var(--grad-dorado);
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-oscuro);
  font-weight: bold;
  opacity: 0.8;
}

.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--dorado);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--fuente-ui);
}

/* Services / Directory */
.service-item {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(0,0,0,0.04);
  transition: 0.5s;
  height: 100%;
  border-bottom: 3px solid transparent;
}
.service-item:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--dorado);
  box-shadow: 0 10px 45px rgba(0,0,0,0.08);
}
.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-verde);
  color: var(--bg-white);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.service-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Image blocks */
.img-block {
  background: #E2E8E4;
  height: 250px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer h5 {
  color: var(--dorado);
  margin-bottom: 1.5rem;
  font-family: var(--fuente-ui);
}
.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}
.footer a:hover {
  color: var(--dorado);
}
