:root {
  --teal: #146977;
  --gold: #ffcb3c;
  --white: #f7f1e3;
  --restaurant-bg: url('../images/restaurant-bg.png'); /* Modern restaurant-style background */
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--white);
  background: var(--teal);
  min-height: 100vh;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
.background-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--restaurant-bg) center/cover no-repeat, linear-gradient(to bottom right, rgba(20, 105, 119, 0.85), rgba(255, 203, 60, 0.06) 66%);
  z-index: -2;
  filter: brightness(0.68) blur(1.5px);
  opacity: 0.99;
}
.hero-image img {
  width: 100vw;
  max-height: 340px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 8px 52px rgba(20,105,119,0.44);
}
.intro {
  background: rgba(20,105,119,0.73);
  max-width: 610px;
  margin: 2rem auto 1.2rem;
  padding: 2rem 1.1rem;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(20, 105, 119, 0.32);
  text-align: center;
}
h1 {
  color: var(--gold);
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  font-size: 2rem;
}
h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.18rem;
}
.intro p {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
a { text-decoration: none; }
a:hover { text-decoration: underline; }
/* Social links styles */
.contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.email {
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid transparent;
  transition: transform 0.28s cubic-bezier(.23,1.32,.62,.95), box-shadow 0.22s;
  margin: 0 0.09rem;
}
.social-icon.pinterest { background-color: #E60023; background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/pinterest.svg'); }
.social-icon.facebook  { background-color: #1877F3; background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/facebook.svg'); }
.social-icon.youtube   { background-color: #FF0000; background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/youtube.svg'); }
.social-icon.animated  { animation: bounce 0.60s; }
@keyframes bounce {
  0%{transform:scale(1);}
  32%{transform:scale(1.23);}
  70%{transform:scale(0.9);}
  100%{transform:scale(1);}
}
.social-icon:focus, .social-icon:hover {
  outline: none;
  border: 2px solid var(--gold);
  box-shadow: 0 0 14px var(--gold);
  transform: scale(1.14) rotate(-8deg);
}
/* Responsive Media Embeds */
.media-section {
  max-width: 800px;
  margin: 2rem auto 2rem;
  padding: 1.45rem 1.05rem 0.7rem 1.05rem;
  background: rgba(20,105,119,0.59);
  border-radius: 15px;
  text-align: center;
}
.media-embeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.7rem;
}
.embed-container {
  background: rgba(255,255,255,0.05);
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 3px 14px #0b393b23;
  width: 355px;
  max-width: 97vw;
  box-sizing: border-box;
  margin-bottom: .9rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.embed-container:hover {
  box-shadow: 0 6px 29px #16777964;
  transform: scale(1.04);
}
.embed-container iframe, 
.embed-container > a[data-pin-do] {
  width: 100%!important;
  height: 340px!important;
  border: none;
  display: block;
}
@media (max-width: 800px) {
  .media-embeds { flex-direction: column; gap: 1.4rem;}
  .embed-container { width: 99vw; max-width: 99vw; }
  .embed-container iframe, .embed-container > a[data-pin-do] { height: 390px!important;}
  h1{font-size:1.33rem}
}
@media (max-width:480px){
  .embed-container{ width:100vw; min-width:0; max-width:100vw;}
  .embed-container iframe, .embed-container > a[data-pin-do] { height:56vw!important; min-height:210px;}
}
footer {
  text-align: center;
  padding: 2em 1em 1em 1em;
  font-size: 1em;
  color: var(--gold);
}
