/* =============================================
   TAJIRI CAFFE — style.css
   ============================================= */

:root {
  --bg-color: #F9F7F2;
  --text-color: #1A1A1A;
  --uber-green: #06C167;
  --accent: #D4AF37;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  overflow-x: hidden;
}

/* ── Navigation ───────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 60px;
  height: 60px;
  border-radius: 70%;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-link:hover .nav-logo {
  transform: scale(1.07);
  box-shadow: 0 0 0 2px rgba(252,193,2,0.55);
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

/* ── Hero ─────────────────────────────────── */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
    url('images/cafe-interior.webp') no-repeat center center / cover;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 4px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  opacity: 0.75;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

/* ── Tagline — bold, prominent, gold ─────── */
.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  /* Thin gold separator line above and below */
  border-top: 1px solid rgba(212,175,55,0.35);
  border-bottom: 1px solid rgba(212,175,55,0.35);
  padding: 14px 0;
  width: 100%;
}

.hero-tagline span {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.tagline-dot {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0 !important;
}

/* ── Hero buttons ────────────────────────── */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-uber {
  display: inline-block;
  background-color: var(--uber-green);
  color: white;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-uber:hover {
  background-color: #05a857;
  transform: translateY(-2px);
}

.btn-mrd {
  display: inline-block;
  background-color: #3cb4e4;
  color: white;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-mrd:hover {
  background-color: #2da3d2;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* Inquiries button — outlined variant */
.btn-whatsapp--outline {
  background-color: transparent;
  border: 2.5px solid rgb(37, 211, 101);
  color: #25D366;
}
.btn-whatsapp--outline:hover {
  background-color: rgba(37,211,102,0.12);
  border-color: #0ce05a;
}

/* ── Fan Favorites ────────────────────────── */
.top-picks {
  padding: 100px 10% 90px;
}

.picks-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.picks-label {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.picks-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  flex: 1;
}

.picks-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.btn-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--text-color);
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.btn-menu:hover {
  background: var(--text-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}
.btn-menu svg { flex-shrink: 0; }

/* ── Dish Collage ─────────────────────────── */
.dish-collage {
  display: flex;
  gap: 14px;
  height: 560px;
}

.dish {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #d9d4c9;
  cursor: default;
}

.dish::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.dish:hover::after { opacity: 1; }

.dish--hero { flex: 0 0 58%; }

.dish-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dish--sm { flex: 1; }

.dish-row {
  display: flex;
  gap: 14px;
  flex: 1;
}

.dish--xs { flex: 1; }

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
}

.dish-info h3 {
  font-family: var(--font-heading);
  color: white;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  margin-bottom: 4px;
  line-height: 1.2;
}

.dish-info p {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.dish-tag {
  display: inline-block;
  align-self: flex-start;
  background: white;
  color: var(--text-color);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.dish-tag--gold {
  background: var(--accent);
  color: white;
}

/* ── Float bob animation ──────────────────── */
@keyframes float-bob {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.dish--hero                 { animation: float-bob 5.5s ease-in-out infinite; }
.dish--sm                   { animation: float-bob 6s   ease-in-out infinite 0.5s; }
.dish-row .dish:first-child { animation: float-bob 5.2s ease-in-out infinite 1s; }
.dish-row .dish:last-child  { animation: float-bob 5.8s ease-in-out infinite 1.5s; }

.float-bob:nth-child(1) { animation: float-bob 5.5s ease-in-out infinite; }
.float-bob:nth-child(2) { animation: float-bob 6s   ease-in-out infinite 0.6s; }
.float-bob:nth-child(3) { animation: float-bob 5.3s ease-in-out infinite 1.1s; }
.float-bob:nth-child(4) { animation: float-bob 5.9s ease-in-out infinite 1.7s; }

/* ── About / Our Story ────────────────────── */
.about-section {
  padding: 100px 10%;
  background-color: #f2ede4;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 24px;
}

.about-text p {
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 16px;
  color: #333;
}

.story-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 150px 150px;
  gap: 12px;
}

.collage-item {
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #d9d4c9;
  overflow: hidden;
}

.item-1 { grid-row: span 2; }

.about-right {
  position: sticky;
  top: 100px;
}

.story-video-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.story-video-wrap .instagram-media {
  border-radius: 12px !important;
  min-width: 0 !important;
  width: 100% !important;
}

/* ── Contact / Footer ─────────────────────── */
.contact-section {
  background-color: var(--text-color);
  color: white;
  padding: 70px 10% 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.contact-info h3,
.contact-links h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.contact-info p {
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.85;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background-color: var(--accent);
  color: #1A1A1A;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-maps:hover {
  background-color: #c49e2f;
  transform: translateY(-2px);
}
.btn-maps svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: color 0.2s, transform 0.2s;
  width: fit-content;
  word-break: break-all;
}
.social-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.credit {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.4;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ── Scroll Reveal ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .dish-collage {
    height: auto;
    flex-direction: column;
  }
  .dish--hero { height: 320px; flex: none; }
  .dish-stack { flex-direction: column; }
  .dish--sm   { height: 200px; flex: none; }
  .dish-row   { flex: none; height: 160px; }
}

@media (max-width: 768px) {
  nav { padding: 15px 6%; }

  .top-picks,
  .about-section { padding: 80px 6%; }

  .picks-header { flex-direction: column; align-items: flex-start; }
  .btn-menu { align-self: flex-start; }

  .about-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-right { position: static; }

  .story-collage {
    grid-template-rows: 130px 130px;
  }

  .contact-section { padding: 60px 6% 36px; }
}
 