/* ══════════════════════════════════════════
   EXCEL ESPRESSO — STYLESHEET
   Colors: Coffee Brown + Forest Green
   Fonts: Great Vibes (script) + Lato (body)
══════════════════════════════════════════ */

:root {
  --brown-dark:   #2C1503;
  --brown-mid:    #4A2108;
  --brown-light:  #7B4A2D;
  --brown-cream:  #F5EFE6;
  --green-dark:   #1B4D1B;
  --green-mid:    #2E7D32;
  --green-light:  #4CAF50;
  --green-pale:   #E8F5E9;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --shadow:       0 4px 24px rgba(44,21,3,0.12);
  --radius:       12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
.script-title { font-family: 'Great Vibes', cursive; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 1.2rem; color: var(--brown-mid); }
.light-title    { color: var(--brown-cream) !important; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}
.section-eyebrow.light { color: var(--green-light); }
.section-pad { padding: 90px 20px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green-mid);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.35); }
.btn-full { width: 100%; }

/* ══════════════════ NAVBAR ══════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(44, 21, 3, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--brown-cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-light); }
.nav-btn {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.hamburger { display: none; background: none; border: none; color: var(--brown-cream); font-size: 1.6rem; cursor: pointer; }
.mobile-nav {
  display: none;
  list-style: none;
  background: var(--brown-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.mobile-nav.open { max-height: 300px; padding: 12px 0 20px; }
.mobile-nav li a {
  display: block;
  padding: 12px 28px;
  color: var(--brown-cream);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-nav li a:hover { color: var(--green-light); }

/* ══════════════════ HERO ══════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,21,3,0.55) 0%,
    rgba(27,77,27,0.45) 60%,
    rgba(44,21,3,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px;
  max-width: 750px;
}
.hero-tagline-small {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: rgba(255,255,255,0.85);
  display: block;
  margin-bottom: -0.4rem;
}
.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--green-light);
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ══════════════════ ABOUT ══════════════════ */
.about { background: var(--brown-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(74,33,8,0.15);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-mid);
  font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brown-light); font-weight: 700; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green-mid);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.about-badge .script-title { font-size: 2rem; color: var(--white); display: block; margin-bottom: 2px; }

/* ══════════════════ MENU ══════════════════ */
.menu { background: var(--brown-dark); }
.menu-subtitle {
  color: rgba(245,239,230,0.7);
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
  font-size: 1rem;
}
.menu .section-title,
.menu .section-eyebrow { text-align: center; display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--brown-mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.menu-img-wrap { overflow: hidden; height: 200px; }
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.06); }
.menu-info { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.menu-name { font-size: 1.8rem; color: var(--green-light); display: block; }
.menu-info p { color: rgba(245,239,230,0.8); font-size: 0.95rem; flex: 1; }
.menu-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-cream);
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
}

/* ══════════════════ LOCATION ══════════════════ */
.location { background: var(--white); }
.location .section-title { color: var(--brown-mid); }
.location .section-eyebrow { color: var(--green-mid); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-top: 2.5rem;
}
.location-info { display: flex; flex-direction: column; gap: 28px; }
.location-item { display: flex; gap: 18px; align-items: flex-start; }
.loc-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.location-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown-mid);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.location-item p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--brown-cream);
}
.map-wrap iframe { display: block; }

/* ══════════════════ CONTACT ══════════════════ */
.contact { background: var(--brown-mid); }
.contact-inner { max-width: 700px; text-align: center; }
.contact-sub { color: rgba(245,239,230,0.75); margin-bottom: 2.5rem; font-size: 1.05rem; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.8);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(245,239,230,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--brown-cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,239,230,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--brown-mid); color: var(--brown-cream); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  margin-top: 16px;
  color: var(--green-light);
  font-weight: 600;
  font-size: 1rem;
}

/* ══════════════════ FOOTER ══════════════════ */
.footer { background: var(--brown-dark); padding: 48px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { height: 80px; margin: 0 auto 12px; }
.footer-tagline { font-size: 1.8rem; color: var(--green-light); margin-bottom: 20px; }
.footer-links { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-light); }
.footer-copy { font-size: 0.8rem; color: rgba(245,239,230,0.35); margin-top: 8px; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 350px; }
  .about-badge { bottom: -16px; left: 16px; }
  .location-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: block; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hero-brand { font-size: clamp(2.5rem, 12vw, 4rem); }
  .menu-grid { grid-template-columns: 1fr; }
}
