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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050b07; /* deep forest / near-black */
  color: #f7f7f7;
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(248, 202, 221, 0.06), transparent 55%),
              #07140e; /* darker forest green */
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 2rem;
  color: #ced9cf;
}

.section-intro.smaller {
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

/* Header / Nav */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(to bottom,
    rgba(5, 11, 7, 0.98),
    rgba(5, 11, 7, 0.7),
    transparent
  );
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.logo span {
  color: #d9b15e; /* gold */
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: #f3f5f3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f8cadd, #d9b15e);
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #f7f7f7;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    flex-direction: column;
    background: #051008;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    display: none;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7f7f7;
  text-align: center;
  padding: 0 1.5rem;
  background-image:
    linear-gradient(to bottom, rgba(5, 11, 7, 0.7), rgba(5, 11, 7, 0.98)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(248, 202, 221, 0.35), transparent 55%),
    radial-gradient(circle at bottom, rgba(15, 80, 54, 0.5), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-top: 3rem;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: #d8e1da;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.18s ease-out,
    color 0.18s ease-out,
    border-color 0.18s ease-out,
    transform 0.08s ease-out,
    box-shadow 0.18s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #0f5036, #d9b15e);
  color: #050806;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #146445, #f1c979);
  transform: translateY(-1px);
}

.btn.outline {
  border-color: #f8cadd;
  color: #f8cadd;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(248, 202, 221, 0.08);
}

.btn.full-width {
  width: 100%;
}

/* About */

.about-highlight {
  background:
    radial-gradient(circle at top, rgba(248, 202, 221, 0.18), transparent 60%),
    linear-gradient(135deg, #06150f, #0c2518);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(217, 177, 94, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.about-highlight h3 {
  margin-bottom: 0.75rem;
}

.about-highlight ul {
  list-style: none;
}

.about-highlight li {
  margin-bottom: 0.45rem;
  color: #dde6de;
}

/* Menu */

.menu-section {
  margin-top: 2.5rem;
}

.menu-section h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f8cadd; /* light pink accent for section titles */
}

.menu-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.menu-column h4.menu-subheading {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: #d9b15e;
  margin-bottom: 0.6rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(237, 196, 145, 0.12);
}

.menu-item h5 {
  font-size: 0.95rem;
}

.menu-item p {
  font-size: 0.82rem;
  color: #c1cdc3;
}

.price {
  white-space: nowrap;
  font-weight: 500;
  color: #d9b15e;
  font-size: 0.9rem;
}

.menu-note {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: #c4cec5;
}

.shisha-list {
  font-size: 0.82rem;
  color: #e7d4e0;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Reservation */

.bullets {
  margin-top: 1rem;
  list-style: disc;
  padding-left: 1.25rem;
  color: #d2dfd6;
  font-size: 0.9rem;
}

.reservation-form {
  background:
    radial-gradient(circle at top right, rgba(248, 202, 221, 0.12), transparent 60%),
    #06130d;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(248, 202, 221, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  color: #c9d5cd;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(233, 192, 145, 0.4);
  background: rgba(4, 13, 8, 0.95);
  color: #f7f7f7;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #f8cadd;
  box-shadow: 0 0 0 1px rgba(248, 202, 221, 0.4);
}

textarea {
  resize: vertical;
}

.form-footnote {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #b8c3ba;
}

.hidden {
  display: none;
}

/* Gallery */

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 11, 7, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */

.contact-details p,
.opening-hours p {
  margin-bottom: 0.3rem;
}

.contact-details a {
  color: #f8cadd;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-placeholder {
  border-radius: 1.2rem;
  border: 1px dashed rgba(217, 177, 94, 0.7);
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(248, 202, 221, 0.08), transparent 55%),
    #050e08;
}

.map-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-text {
  font-size: 0.9rem;
  color: #c1ccc3;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(233, 192, 145, 0.25);
  padding: 1.5rem 0;
  background: #050b07;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #b9c4bc;
}

.footer-note {
  color: #f8cadd;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}
