* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #eee;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Top ribbon */
.top-ribbon {
  position: fixed;
  top: -34px;
  width: 100%;
  background: transparent;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
}
.nav-logo {
  height: 185px; /* Dimensiune logo header */
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 100%;
  width: auto;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border-radius: 999px;
}
.nav-links li {
  margin: 0 8px;
}
.nav-links a {
  color: #eee;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background-color 0.3s, color 0.3s;
}
.nav-links a:hover,
.nav-links a:focus {
  background-color: #ff3333;
  color: #fff;
}

/* HERO full-screen */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("images/1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-title {
  display: block;
  margin-bottom: 20px;
}
.hero-title img {
  height: clamp(600px, 12vw, 120px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 6px rgba(255,51,51,0.8));
  image-rendering: -webkit-optimize-contrast;
}
.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  max-width: 520px;
  margin: 0 auto 30px;
}

/* Generic sections */
section {
  position: relative;
}
.section-band,
.section-band-alt {
  padding: 80px 20px 60px;
}
.content-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.section-band {
  background: #1a1a1a;
}
.section-band-alt {
  background: #2a2a2a;
}
.story-section h2,
.menu-section h2,
.gallery-section h2,
.booking-section h2,
.contact-section h2 {
  font-size: 32px;
  font-weight: 900;
  color: #ff3333;
  margin-bottom: 20px;
}
.story-section p {
  max-width: 650px;
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
}

.menu-section p {
  max-width: 650px;
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
}

/* Imagine Meniu - crop mai sus (obiectul principal în partea superioară) */
.menu-section .menu-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
  object-fit: cover;
  max-height: 320px;
  object-position: center 20%; /* 20% de sus - ajustează la 15% sau 25% dacă vrei mai sus/jos */
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  user-select: none;
}
.btn-primary {
  background-color: #000;
  color: #ff3333;
  border: 2px solid #ff3333;
  transition: background-color 0.3s, color 0.3s;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #ff3333;
  color: #fff;
}
.btn-secondary {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000;
  color: #fff;
}

.menu-section .menu-button-wrap {
  margin-top: 20px;
}

/* Meniu cu imagine */
.menu-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.menu-text {
  flex: 1 1 300px;
}
.menu-image {
  flex: 1 1 320px;
}
.menu-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
  object-fit: cover;
  max-height: 320px;
}

/* Booking image centrată */
.booking-section .content-wrap.menu-layout {
  align-items: stretch;
}
.booking-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.booking-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
  object-fit: cover;
  height: 220px;
}

/* Booking form */
form {
  max-width: 420px;
}
form label {
  display: block;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 6px;
  color: #eee;
}
form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #222;
  color: #eee;
  font-size: 16px;
}
form input:focus {
  border-color: #ff3333;
  outline: none;
}
.btn-booking {
  margin-top: 26px;
}

/* Contact */
.contact-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.map-placeholder {
  flex: 1 1 380px;
  background: #222;
  border-radius: 16px;
  padding: 12px;
  color: #999;
  text-align: center;
}
.details {
  flex: 1 1 320px;
  color: #ddd;
  font-size: 18px;
  line-height: 1.6;
}
.details ul li {
  margin-left: 16px;
}
.small-note {
  margin-top: 12px;
  font-size: 12px;
  color: #aaa;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid #333;
  padding: 20px 16px;
}
.footer-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-social span {
  margin-right: 8px;
  font-weight: 600;
}
.footer-social a {
  margin-right: 12px;
  color: #eee;
  font-weight: 500;
}
.footer-social a:hover {
  color: #ff3333;
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
}
.dw-logo img {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .contact-info {
    flex-direction: column;
  }
  .menu-layout {
    flex-direction: column;
  }
}
