/* RIKILAL - Restaurante y Cafe | estilos compartidos */

:root {
  --cream: #fff8ef;
  --cream-soft: #fbeedd;
  --ink: #2e1508;
  --ink-soft: #5c3a21;
  --orange: #ff8c2b;
  --red: #e8341c;
  --gold: #d98c1f;
  --maroon: #8c1c1c;
  --whatsapp: #25d366;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(46, 21, 8, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(46, 21, 8, 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand span {
  color: var(--orange);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: #fce9d2;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

@media (min-width: 760px) {
  .nav-links { display: flex; }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 52, 28, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover { border-color: #fff; }

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Hero */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 90px 20px 60px;
  background-image:
    linear-gradient(180deg, rgba(46, 21, 8, 0.55), rgba(46, 21, 8, 0.82)),
    url("../img/fondo-color.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-isotipo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}

.hero h1 span {
  display: block;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--orange);
  text-shadow: 0 2px 14px rgba(255, 140, 43, 0.4);
  margin: 6px 0;
}

.hero-tagline {
  font-size: 17px;
  color: #fce9d2;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Section basics */

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--cream-soft);
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 560px;
}

.section-copy {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 26px;
}

.section-head {
  text-align: center;
  margin: 0 auto 40px;
}

.section-head .section-title,
.section-head .section-copy {
  margin-left: auto;
  margin-right: auto;
}

/* About split */

.about-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

@media (min-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid img { height: 190px; }
}

.gallery-cta {
  text-align: center;
  margin-top: 34px;
}

/* Social + WhatsApp */

.social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.social-pill .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon.instagram {
  background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd8c33 25%, #e8341c 45%, #cd1a72 60%, #7a2ac1 80%, #4a3cd8 100%);
}

.icon.facebook {
  background: #1877f2;
  color: #fff;
  font-weight: 800;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
}

.icon.tiktok {
  background: #111111;
}

.center { text-align: center; }

/* Location */

.location-grid {
  display: grid;
  gap: 24px;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

@media (min-width: 760px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: rgba(255, 233, 210, 0.85);
  padding: 40px 0 24px;
  text-align: center;
  font-size: 13px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.footer-social .icon { width: 40px; height: 40px; }

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 233, 210, 0.85);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-credit:hover { color: #fff; text-decoration: underline; }

.footer-credit img { height: 22px; width: auto; }

.footer-credit strong { color: var(--gold); }

.footer-copy {
  color: rgba(255, 233, 210, 0.5);
}

/* Menu page */

.menu-hero {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}

.menu-hero img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.menu-hero h1 {
  font-size: 30px;
  font-weight: 800;
}

.menu-hero h1 span { color: var(--orange); }

.menu-hero p {
  color: #fce9d2;
  margin-top: 8px;
}

.menu-category {
  margin-bottom: 46px;
}

.menu-category h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--maroon);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(46, 21, 8, 0.15);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.menu-item-info p {
  font-size: 14px;
  color: var(--ink-soft);
}

.menu-item-price {
  font-weight: 800;
  color: var(--red);
  font-size: 16px;
  white-space: nowrap;
}

.menu-note {
  background: var(--cream-soft);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fce9d2;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.back-link:hover { color: var(--orange); }
