/* Greek O'Clock – black theme site */
/* BASIC RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050505;
  color: #f8f8f8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f4c542;
  transition: width 0.18s ease;
}

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

/* DELIVERY STRIP */
.strip-delivery {
  position: sticky;
  top: 56px;
  z-index: 19;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.4rem 0.5rem;
  background: #f4c542;
  color: #111;
}

.strip-delivery strong {
  font-weight: 700;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 82px; /* header + strip */
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transform: scale(1.05);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  z-index: -1;
}

.hero-content {
  padding: 3.5rem 1.5rem 3rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 auto 1.8rem;
  font-size: 0.96rem;
  color: #f1f1f1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-offer {
  font-size: 0.85rem;
  color: #ffefb4;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-primary {
  background: #f4c542;
  color: #111;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #f8f8f8;
}

.btn-ghost:hover {
  border-color: #f4c542;
}

.btn-map {
  margin-top: 0.5rem;
}

/* SHARED SECTIONS */
section {
  scroll-margin-top: 90px;
}

h2 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  margin-bottom: 1.8rem;
  color: #d0d0d0;
  font-size: 0.92rem;
}

/* HIGHLIGHTS */
.highlights {
  background: #050505;
  padding: 2.6rem 0 1.6rem;
}

.highlights-grid {
  display: grid;
  gap: 1.4rem;
}

.highlight-card {
  padding: 1.3rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #151515, #050505);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  color: #f4c542;
}

.highlight-card p {
  font-size: 0.9rem;
  color: #e3e3e3;
}

/* MENU */
.menu {
  padding: 2.6rem 0 2.6rem;
  background: #050505;
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
}

.menu-card {
  background: #101010;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.1rem 1.3rem 1.2rem;
}

.menu-card-body h3 {
  font-size: 1.03rem;
  margin-bottom: 0.35rem;
}

.menu-card-body p {
  font-size: 0.92rem;
  color: #d8d8d8;
  margin-bottom: 0.7rem;
}

.menu-tag {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 66, 0.7);
  color: #f4c542;
}

.menu-card-text {
  padding: 1.4rem 1.5rem 1.5rem;
}

.menu-card-text ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin-bottom: 0.7rem;
}

.small-note {
  font-size: 0.78rem;
  color: #a9a9a9;
}

/* GALLERY */
.gallery {
  padding: 2.6rem 0 2.6rem;
  background: #080808;
}

.gallery-grid {
  display: grid;
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* VISIT */
.visit {
  padding: 2.8rem 0 3.4rem;
  background: #050505;
}

.visit-grid {
  display: grid;
  gap: 2rem;
}

.visit-info h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f4c542;
}

.visit-block {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.map-box {
  background: radial-gradient(circle at top, #202020, #050505);
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.86rem;
  color: #c6c6c6;
  padding: 1.5rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  padding: 1.3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: #b9b9b9;
}

.footer-tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f4c542;
}

/* RESPONSIVE LAYOUTS */

@media (min-width: 720px) {
  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
  }
}
