:root{
  --astro-bg: #0b0b0f;       /* negro espacial */
  --astro-50:#fff7d1; 
  --astro-200:#ffe37a;
  --astro-400:#ffd54d;       /* amarillo menú */
  --astro-500:#ffc933;
  --astro-600:#f5b800;       /* acento líneas */
  --astro-700:#c99a00;
}

body.astro-bg{ background: var(--astro-bg); color: #f8f9fa; }

/* Navbar / footer */
.astro-header{ background: linear-gradient(180deg, rgba(255,213,77,.06), rgba(0,0,0,0)); }
.astro-footer{ background: linear-gradient(0deg, rgba(255,213,77,.04), rgba(0,0,0,0)); }

/* Botón de acción */
.btn-astro{
  --bs-btn-bg: var(--astro-600);
  --bs-btn-border-color: var(--astro-600);
  --bs-btn-hover-bg: var(--astro-700);
  --bs-btn-hover-border-color: var(--astro-700);
  --bs-btn-color: #141414;
  font-weight: 700;
}

/* Borde amarillo */
.border-astro-600{ border-color: var(--astro-600)!important; }
.border-astro-700{ border-color: var(--astro-700)!important; }
.text-astro-400{ color: var(--astro-400)!important; }
.text-astro-500{ color: var(--astro-500)!important; }

/* Tarjetas del home */
.card-astro{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,213,77,.18);
  backdrop-filter: blur(4px);
}
.card-astro .card-title{ color: var(--astro-400); font-weight: 800; letter-spacing:.3px; }

/* Separadores dorados */
.hr-astro{
  height: 2px; border: 0; background: linear-gradient(90deg, transparent, var(--astro-600), transparent);
  opacity:.9; margin: 1rem 0 1.5rem;
}

/* Fondo estelar suave */
body.astro-bg::before{
  content:""; position:fixed; inset:0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.7), transparent 40%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,.6), transparent 40%),
    radial-gradient(1.2px 1.2px at 40% 80%, rgba(255,213,77,.7), transparent 45%),
    radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,.5), transparent 40%);
  pointer-events:none; z-index:-1; opacity:.35;
}

/* ===== Carrusel (tamaño controlado) ===== */
.hero-carousel .carousel-item img {
    width: 100%;
    height: 420px; /* altura fija en desktop */
    object-fit: cover; /* recorta sin deformar */
}

/* En móviles, más bajo */
@media (max-width: 576px) {
    .hero-carousel .carousel-item img {
        height: 260px;
    }
}

/* ===== Cards "Destacadas" con imágenes iguales ===== */
.menu-card .menu-img {
    width: 100%;
    height: 220px; /* mismo alto para todas */
    object-fit: cover; /* recorta sin deformar */
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

/* Ajustes visuales pro */
.section-title {
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--astro-400);
    margin-bottom: .75rem;
}

.lead-muted {
    color: #c9c9d1;
}

.card-astro:hover {
    border-color: rgba(255,213,77,.35);
    box-shadow: 0 8px 26px rgba(245,184,0,.12);
    transform: translateY(-1px);
    transition: all .2s ease;
}

/* Separadores más sutiles en desktop */
@media (min-width: 992px) {
    .section-divider {
        margin: 2rem 0 2.25rem;
    }
}

/* Botón outline más visible en fondo oscuro */
.btn-outline-light {
    border-color: rgba(255,255,255,.25);
}

    .btn-outline-light:hover {
        border-color: rgba(255,255,255,.45);
        background: rgba(255,255,255,.08);
    }

/* Fix icono email (por si lo usas) */
.bi-email::before {
    content: "\f32f";
}
/* opcional; mejor usa bi-envelope */
