/* ==============================================
   Asadero La Chispa Ardiente del Sabor RS
   Estilo evolucionado - Diseño CúcutaTechBrosoft
   ============================================== */

/* ----- RESET ----- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-family: "Poppins", "Inter", sans-serif;
  color: #f2f2f2;
  background-color: #121212;
  scroll-behavior: smooth;
}

/* ----- VARIABLES ----- */
:root {
  --primary: #ff3d00;
  --secondary: #ffb300;
  --dark: #1a1a1a;
  --light: #fff7f3;
  --text: #f2f2f2;
  --gray: #999;
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ----- CONTENEDOR ----- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- HEADER ----- */
.site-header {
  background: linear-gradient(90deg, #1a1a1a, #2c2c2c);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}
.company-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
}
.tagline {
  font-size: 0.85rem;
  color: #ccc;
}

/* ----- NAVEGACIÓN ----- */
.main-nav {
  display: flex;
  gap: 1rem;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 600;
}
.main-nav a:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 61, 0, 0.4);
}

/* ----- HERO ----- */
.hero {
  background: linear-gradient(180deg, #1a1a1a, #2b2b2b);
  padding: 2.5rem 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-text h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.hero-text p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.img-placeholder {
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

/* ----- BOTONES ----- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn.outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn.whats {
  background: #25d366;
}
.btn.whats:hover {
  background: #20bd5a;
}

/* ----- SECCIONES ----- */
.section {
  padding: 2rem 0;
}
.section-title {
  text-align: center;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  letter-spacing: 1px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.lead {
  text-align: center;
  color: #ccc;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* ----- MENÚ ----- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: #1f1f1f;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 61, 0, 0.3);
}
.menu-card h4,
.menu-card h5 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.6rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.3rem;
}
.menu-card p,
.menu-card li {
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.price {
  font-weight: bold;
  color: var(--secondary);
  margin-top: 0.6rem;
}
.muted {
  font-size: 0.9rem;
  color: #aaa;
}

/* ----- PROMOCIONES ----- */
.promo-section {
  background: linear-gradient(180deg, #1a1a1a, #232323);
}
.promos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.promo {
  background: #1f1f1f;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  text-align: center;
}
.promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.3);
}
.promo h4 {
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
  padding-bottom: 0.2rem;
}
.promo p {
  color: #ccc;
}

/* ----- QUIÉNES SOMOS / VISIÓN / MISIÓN ----- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.about-card {
  background: #1f1f1f;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.about-card h4 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.about-card p {
  color: #ccc;
  line-height: 1.5;
}
.info-list {
  margin-top: 1rem;
}
.info-list h4 {
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.info-list ul {
  list-style: disc;
  padding-left: 1.3rem;
  color: #ccc;
}

/* ----- SOSTENIBILIDAD Y COSTOS ----- */
.costs-card {
  background: #1f1f1f;
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.costs-card h4 {
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.costs-card ul {
  color: #ccc;
}

/* ----- CONTACTO ----- */
.contact-section {
  background: linear-gradient(180deg, #1a1a1a, #222);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-info p,
.contact-info li {
  color: #ddd;
  margin-bottom: 0.6rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #ccc;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #111;
  color: #eee;
  margin-top: 0.3rem;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  outline: none;
}
.contact-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

/* ----- FOOTER ----- */
.site-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.site-footer strong {
  color: var(--secondary);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: #1f1f1f;
    width: 220px;
    padding: 1rem;
    gap: 0.6rem;
    border-left: 3px solid var(--primary);
    transform: translateX(100%);
    transition: var(--transition);
  }
  .nav-toggle-label {
    display: block;
    cursor: pointer;
  }

  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    transform: translateX(0);
  }
}



.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

.logo {
  height: 60px;      /* o el valor que prefieras */
  width: auto;
  display: block;
}



