/* =========================================================
   Cafe@HongKong homepage styles

   Quick editing guide:
   - Change the main colours in :root.
   - Change food photos in the "Dish photos" section.
   - Change mobile layout in the media queries at the bottom.
   ========================================================= */

/* ---------- Colour and layout settings ---------- */
:root {
  --ink: #22211f;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --red: #b7352d;
  --red-dark: #81231f;
  --jade: #195b4d;
  --gold: #e7b75b;
  --muted: #746f67;
  --line: rgba(34, 33, 31, 0.12);
  --shadow: 0 18px 45px rgba(74, 44, 25, 0.12);
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.shell {
  width: min(var(--page-width), calc(100% - 40px));
  margin-inline: auto;
}

/* ---------- Announcement bar ---------- */
.topbar {
  padding: 8px 20px;
  background: var(--jade);
  color: white;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.topbar b {
  color: #ffe3a3;
}

/* ---------- Header and navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: cover;
  background: black;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(32, 17, 49, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-button {
  padding: 10px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.order-button {
  padding: 11px 18px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(183, 53, 45, 0.23);
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
}

/* ---------- Shared buttons and headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe4aa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.section-eyebrow {
  color: var(--red);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: white;
}

.button-light {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}


.button-link {
  background: rgba(50, 153, 168, 0.8);
  padding: 10px 16px;
  border-radius: 99px;
   font-weight: 700;
   color: white;
  border-color: rgba(255, 255, 255, 0.4);
}


/* ---------- Hero section ---------- */
.hero {
  padding-block: 42px 52px;
}

.hero-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    linear-gradient(
      110deg,
      rgba(24, 18, 14, 0.94) 0%,
      rgba(24, 18, 14, 0.75) 42%,
      rgba(24, 18, 14, 0.1) 72%
    ),
    url("../images/cafehk-shop.jpg") center / cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 72%);
  padding: 96px 0 70px 72px;
  color: white;
}

.hero h1 {
  margin: 20px 0 26px;
  font-family: "Noto Sans HK", sans-serif;
  font-size: clamp(54px, 7vw, 90px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy p {
  max-width: 510px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-stamp {
  position: absolute;
  right: 36px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  background: var(--gold);
  color: var(--red-dark);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-family: "Noto Sans HK", sans-serif;
  font-weight: 900;
  text-align: center;
  transform: rotate(-7deg);
}

/* ---------- Featured menu ---------- */
.menu-section,
.story-section,
.visit-section {
  padding-block: 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 8px 0;
  font-family: "Noto Sans HK", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dish-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(74, 44, 25, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dish-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.dish-photo {
  height: 260px;
  background-position: center;
  background-size: cover;
}

/* Dish photos: replace these URLs with your own product photos. */
.dish-set .dish-photo {
  background-image: url("../images/set7.jpg");
}

.dish-duck .dish-photo {
  background-image: url("../images/duck.jpg");
}

.dish-milk-tea .dish-photo {
  background-image: url("../images/milktea.jpg");
}

.dish-content {
  padding: 22px;
}

.dish-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 9px;
  background: #f3dfb7;
  color: #664816;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dish-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.dish-card h3 {
  margin: 0;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 20px;
}

.price {
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
}

.dish-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Story and opening hours ---------- */
.story-section {
  padding-top: 55px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 54px;
  background: var(--jade);
  color: white;
  border-radius: 26px;
}

.hours-card {
  background:
    linear-gradient(rgba(183, 53, 45, 0.88), rgba(183, 53, 45, 0.88)),
     url("../images/cafehk-shop.jpg") center / cover;
}

.story-card h2 {
  margin: 12px 0 20px;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 42px;
  line-height: 1.1;
}

.story-card p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.78);
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-block: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.closed-row strong {
  color: #ffe3a3;
}

/* ---------- Visit / order call to action ---------- */
.visit-section {
  padding-bottom: 90px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px 48px;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.visit-card h2 {
  margin: 0 0 8px;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 36px;
}

.visit-card p {
  margin: 0;
  color: var(--muted);
}


.address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding-block: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.reservation-row strong {
  color: #ffe3a3;
}



/* ---------- Footer ---------- */
.site-footer {
  padding-block: 44px;
  background: #1f1d1a;
  color: white;
}

.site-footer .brand-logo {
  width: 54px;
  height: 54px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

/* ---------- Tablet layout ---------- */
@media (max-width: 850px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-card {
    min-height: 540px;
    background-position: 64% center;
  }

  .hero-copy {
    width: 86%;
    padding: 78px 0 62px 36px;
  }

  .hero-stamp {
    right: 20px;
    bottom: 20px;
    width: 100px;
    height: 100px;
    font-size: 13px;
  }

  .dish-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dish-card:last-child {
    grid-column: 1 / -1;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- Phone layout ---------- */
@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, var(--page-width));
  }

  .main-nav {
    height: 68px;
  }

  .brand {
    font-size: 19px;
  }

  .order-button {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-card {
    min-height: 580px;
    background:
      linear-gradient(0deg, rgba(24, 18, 14, 0.95), rgba(24, 18, 14, 0.35)),
      url("upload/cafehk-shop.jpg") center / cover;
    border-radius: 20px;
  }

  .hero-copy {
    position: absolute;
    right: 24px;
    bottom: 34px;
    left: 24px;
    width: auto;
    padding: 0;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-stamp {
    top: 22px;
    right: 20px;
    bottom: auto;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dish-grid {
    grid-template-columns: 1fr;
  }

  .dish-card:last-child {
    grid-column: auto;
  }

  .dish-photo {
    height: 235px;
  }

  .story-card {
    min-height: 400px;
    padding: 34px 28px;
  }

  .story-card h2 {
    font-size: 35px;
  }

  .visit-card {
    padding: 32px 26px;
  }

  .topbar {
    font-size: 12px;
  }
}


.store-info{

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.store-title{

    color:#B22222;

    font-weight:700;

}

.store-slogan{

    color:#888;

    letter-spacing:1px;

}

.info-card{
    display:flex;
    gap:18px;
    padding:20px;
    border:1px solid #e8e8e8;
    border-radius:12px;
    background:#fafafa;
    transition:.2s;
}

.info-card:hover{
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.info-icon{
    color:#B22222;
    font-size:28px;
    min-width:40px;
}

.info-content h5{

    margin-bottom:8px;

    font-weight:700;

}

.info-content p{
    margin-bottom:0;
    color:#666;
    line-height:1.7;
}

.info-table{
    font-size:13px;
}

.info-table th{
    width:75px;
    padding:3px 6px;
    white-space:nowrap;
    color:#666;
    font-weight:600;
}

.info-table td{
    padding:3px 6px;
    color:#333;
}

.info-table tr{
    line-height:1.2;
}


.google-map-btn{
    background:linear-gradient(135deg,#EA4335,#4285F4);
    color:#fff;
    font-weight:700;
    font-size:12px;
    padding:12px 20px;
    border-radius:50px;
    border:none;
    box-shadow:0 6px 15px rgba(66,133,244,.35);
    transition:.25s;
}

.google-map-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 14px rgba(66,133,244,.45);
}

.google-map-btn i{
    font-size:12px;
}