@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&family=Antic&display=swap');

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

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #2ea3f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

/* =============================
   SECTION 1: HERO
   ============================= */
.hero {
  position: relative;
  padding: 72px 0 48px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  max-width: 336px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.hero-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

/* Opening Hours */
.hours-table {
  border-collapse: collapse;
}

.hours-table td {
  padding: 2px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  vertical-align: top;
}

.hours-table td:first-child {
  padding-right: 30px;
  white-space: nowrap;
}

/* Address */
.address {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.6;
  color: #fff;
}

/* =============================
   SECTION 2: MENUS
   ============================= */
.menus {
  background: #000;
  padding: 48px 120px;
  text-align: center;
}

.menus-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.menu-link {
  display: inline-block;
  padding: 9px 30px;
  background: #3a3a3a;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Antic', Helvetica, Arial, sans-serif;
  font-size: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-link:hover {
  background: #555;
  color: #fff;
}

.menu-link::after {
  content: ' \276F';
  font-size: 18px;
  margin-left: 6px;
  opacity: 0.8;
}

/* =============================
   SECTION 3: BOOK A TABLE
   ============================= */
.booking {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/booking-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.booking-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.booking-content {
  position: relative;
  z-index: 2;
}

.booking h2 {
  font-family: 'Shippori Mincho', Georgia, 'Times New Roman', serif;
  font-size: 62px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.call-link {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 20px 30px;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  transition: color 0.3s ease;
}

.call-link:hover {
  color: #ccc;
}

/* =============================
   SECTION 4: FOOTER
   ============================= */
.footer {
  background: #000;
  padding: 48px 0;
  text-align: center;
}

.footer-email {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-email a {
  color: #2ea3f2;
  text-decoration: none;
}

.footer-email a:hover {
  color: #fff;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.85;
}

.social-links .tripadvisor {
  background: #00af87;
}

.social-links .facebook {
  background: #3b5998;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 980px) {
  .menus {
    padding: 48px 40px;
  }

  .menu-link {
    font-size: 24px;
  }

  .booking h2 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 50px 0 40px;
  }

  .hero-content {
    padding: 24px 20px;
  }

  .hero-logo {
    max-width: 250px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .address {
    text-align: center;
  }

  .menus {
    padding: 40px 20px;
  }

  .menus-row {
    flex-direction: column;
    align-items: center;
  }

  .menu-link {
    font-size: 22px;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .booking h2 {
    font-size: 36px;
  }
}
