body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
}
nav.top-nav {
  background-color: rgba(30, 30, 30, 0.95);
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
nav.top-nav a {
  margin: 0 20px;
  color: #bbb;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s ease;
}
nav.top-nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px silver;
}
main {
  padding: 3rem 2rem;
}
section.content {
  max-width: 800px;
  margin: auto;
}
h2 {
  color: silver;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form label {
  font-weight: bold;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222;
  color: #eee;
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  padding: 0.75rem;
  background-color: silver;
  color: #111;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #fff;
  color: #000;
}

.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid #333;
}
.site-footer .footer-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
}
.site-footer .social-links a {
  margin: 0 10px;
  display: inline-block;
}
.site-footer .social-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%);
  transition: 0.3s ease;
}
.site-footer .social-links img:hover {
  filter: grayscale(0%);
}
.logo-contact {
  text-align: center;
  margin: 2rem 0 1rem;
}
.logo-contact img {
  max-width: 500px;
  height: auto;
}
.media-section {
  margin-top: 3rem;
}
.media-section h2 {
  text-align: center;
  color: silver;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.video-grid iframe,
.video-grid video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.insta-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 640px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.insta-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#unmuteButton {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 10px 15px;
  background-color: silver;
  color: black;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
}
.announcement {
  background-color: #111;
  color: #fff;
  padding: 0.5rem 1rem;
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #444;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  font-family: 'Georgia', serif;
}

.announcement a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 1rem;
}

.restaurant-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.announcement-text {
  text-align: left;
}

.announcement-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}
/* Shared layout for Vimeo and local videos */
.media-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.media-video-wrapper iframe,
.media-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Instagram layout — slightly taller and thinner */
.instagram-video-wrapper {
  max-width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.instagram-video-wrapper iframe {
  width: 325px;
  height: 700px;
  border: none;
  border-radius: 10px;
}
.audio-player-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 1rem;
  background-color: #111;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  color: #fff;
  text-align: center;
}

#audioPlayer {
  width: 100%;
  margin-bottom: 1rem;
}

#playlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

#playlist li {
  padding: 0.75rem;
  cursor: pointer;
  border-bottom: 1px solid #333;
  transition: background-color 0.2s;
}

#playlist li:hover {
  background-color: #222;
}

#playlist li.active {
  background-color: #444;
  font-weight: bold;
}
.slideshow-container {
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
}

.slide {
  width: 100%;
  display: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}
.download-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.download-btn:hover {
  background-color: #444444;
}
.video-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between them */
}

.video-links a img {
  width: 300px; /* same width for all */
  height: auto;
  border-radius: 8px; /* optional rounded corners */
  transition: transform 0.3s;
}

.video-links a img:hover {
  transform: scale(1.05); /* optional hover zoom */
}