:root {
  --deep-blue: #0b3d5c;
  --sea-blue: #1b6ca8;
  --light-blue: #eaf4fa;
  --sand: #fdf8f0;
  --coral: #d9603b;
  --text: #263238;
  --white: #ffffff;
  --gold: #D4A338;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.6;
}

/* Site header (matches homepage) */
header#siteHeader{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background: transparent;
  transition: all 0.4s ease;
}
header#siteHeader.scrolled{
  background: rgba(15,61,86,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
header#siteHeader nav{
  max-width:1160px; margin:0 auto; padding:14px 32px;
  display:flex; align-items:center; justify-content:space-between;
  font-family:'Jost', sans-serif;
}
.brand-mark img{ height:52px; width:auto; display:block; }
.nav-links{display:flex; gap:36px; list-style:none;}
.nav-links a{
  color:#fff; font-size:15px; font-weight:400; opacity:0.85;
  position:relative; padding:4px 0; text-decoration:none; transition: all 0.3s ease;
}
.nav-links a::after{
  content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover{opacity:1;}
.nav-links a:hover::after, .nav-links a.active::after{width:100%;}
.nav-links a.active{opacity:1;}
.nav-cta{
  background:var(--gold); color:#fff; padding:10px 24px; border-radius:50px;
  font-size:14px; font-weight:500; letter-spacing:0.5px; text-decoration:none;
  box-shadow: 0 4px 14px rgba(212, 163, 56, 0.35); transition: all 0.3s ease;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 163, 56, 0.45); }
@media(max-width:820px){ .nav-links{display:none;} }

.hero {
  position: relative;
  height: 62vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,61,92,0.85) 5%, rgba(11,61,92,0.05) 60%);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 6%;
  max-width: 800px;
}

.hero-text h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.15rem;
  opacity: 0.95;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 6%;
}

section { margin-bottom: 55px; }

h2.section-title {
  color: var(--deep-blue);
  font-size: 1.8rem;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
  padding-bottom: 4px;
}

.subtitle {
  color: var(--sea-blue);
  font-style: italic;
  margin-bottom: 20px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.intro-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

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

.gallery a {
  display: block;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.gallery a:hover img {
  transform: scale(1.04);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.values .card {
  background: var(--white);
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.values .card h3 {
  color: var(--deep-blue);
  margin-bottom: 8px;
}

/* Catalog page */
.menu-category {
  margin-bottom: 38px;
}

.menu-category h3 {
  color: var(--white);
  background: var(--sea-blue);
  padding: 10px 18px;
  border-radius: 6px 6px 0 0;
  font-size: 1.25rem;
}

.menu-list {
  list-style: none;
  background: var(--white);
  border: 1px solid #e0dcd3;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px dashed #e0dcd3;
}

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

.menu-list .name {
  font-weight: bold;
  color: var(--text);
}

.menu-list .name .en {
  display: block;
  font-weight: normal;
  font-style: italic;
  color: #6b6b6b;
  font-size: 0.85rem;
}

.menu-list .price {
  color: var(--coral);
  font-weight: bold;
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--sea-blue);
}

.menu-hero {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.menu-hero img {
  flex: 1;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-card p {
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-card .icon {
  color: var(--coral);
  font-size: 1.2rem;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Home page */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nav-cards a.nav-card {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.nav-cards a.nav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.nav-cards a.nav-card:hover img {
  transform: scale(1.06);
}

.nav-cards a.nav-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,61,92,0.9) 10%, rgba(11,61,92,0.05) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--white);
}

.nav-cards a.nav-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.nav-cards a.nav-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-cards a.nav-card .link-label {
  margin-top: 8px;
  color: var(--coral);
  font-weight: bold;
  font-size: 0.85rem;
}

footer {
  background: var(--deep-blue);
  color: var(--white);
  text-align: center;
  padding: 22px 5%;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .menu-hero { flex-direction: column; }
}
