/* =========================================================
   GLOBAL RESET + BASE STYLES
   ========================================================= */

/* Reset default browser margin/padding and switch box model
   so padding/border are included inside an element's width/height */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling for in-page anchor links (e.g. #reservation) */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter;
  color: #222;
  line-height: 1.6;
}

h2 {
  font-size: 48px;
  line-height: 48px;
  color: #2C2C2C;
}

.section-subtitle {
  font-size: 20px;
  line-height: 28px;
  font-weight: regular;
  color: #6B6B6B;
}

/* Generic content wrapper used by most sections to control max width */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}


/* =========================================================
   HERO + NAVBAR
   ========================================================= */

.hero {
  height: 700px;
  background: url("images/hero-bg.png") center/cover no-repeat;
  position: relative;
}

.navbar {
  position: relative;
  z-index: 2; /* keeps navbar above the hero background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.brand img {
  width: 60px;
}

.nav-links li {
  display: inline-block;
  list-style: none;
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: medium;
}

.nav-links a:hover {
  color: #d2ad58;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 80px;
  width: 100%;
  color: #fff;
}

.hero-content h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 32px;
  width: 450px;
  font-size: 20px;
  color: #E5E7EB;
}


/* =========================================================
   BUTTONS (shared)
   ========================================================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
}

.primary-btn {
  background: #d2ad58;
  color: white;
  border: 1px solid #d2ad58;
  font-size: 18px;
  font-weight: medium;
}

.secondary-btn {
  border: 1px solid #fff;
  color: #fff;
  margin-left: 12px;
  font-size: 18px;
  font-weight: medium;
}

.primary-btn:hover {
  background-color: rgba(210, 173, 88, 0.6);
  border: 1px solid #fff;
}

.secondary-btn:hover {
  background-color: #fff;
  color: #000;
}


/* =========================================================
   FEATURED OFFER (Live Jazz Night card)
   ========================================================= */

.offer-section {
  padding: 50px;
}

.offer-card {
  max-width: 1152px;
  margin: auto;
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 327px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  border: 1.6px solid #E5E0D5;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;

  /* Gold gradient border on top/bottom edges only */
  border-image: linear-gradient(
    90deg,
    rgba(210,173,88,0.3),
    #d2ad58,
    rgba(210,173,88,0.3)
  ) 1;
}

/* Decorative soft glow in the bottom-left corner of the offer card */
.offer-box-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 192px;
  height: 192px;
  background: linear-gradient(
    -135deg,
    rgba(201, 169, 97, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Decorative soft glow in the top-right corner of the offer card */
.offer-box-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 192px;
  height: 192px;
  background: linear-gradient(
    45deg,
    rgba(201, 169, 97, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.offer-text h2 {
  font-size: 60px;
  line-height: 60px;
  font-weight: semi-bold;
  color: #2C2C2C;
}

.text-offer {
  font-size: 18px;
  font-weight: regular;
  line-height: 28px;
  color: #6B6B6B;
  width: 583px;
}

.offer-time {
  font-size: 24px;
  font-weight: medium;
  line-height: 32px;
  color: #C9A961;
  margin: 16px 0px 16px 0px;
}

/* Small caption text under the "Reserve Your Table" button (e.g. "Limited Seating") */
.offer-section span {
  font-size: 14px;
  line-height: 20px;
  font-weight: medium;
  display: block;
  text-align: center;
}

/* Gold gradient CTA button inside the offer card */
.offer-section .primary-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 16px 32px;
  background: linear-gradient(
    90deg,
    #C9A961 0%,
    #C7A65E 14%,
    #C4A35C 29%,
    #C2A059 43%,
    #BF9E57 57%,
    #BD9B54 71%,
    #BA9852 86%,
    #B8954F 100%
  );
  border-radius: 12px;
  flex-shrink: 0;
  margin-top: 110px; /* pushes button toward top of card per design */
  position: relative;
  z-index: 10; /* sits above the corner glow decorations */
}

/* "FEATURED EVENT" badge */
.badge {
  background: #d2ad58;
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 16px;
  position: relative;
  top: 0;
  left: 0;
}

.badge-box-flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}

.badge-box {
  padding: 8.5px 3.6px;
  border: 1px solid #C9A9614D;
  border-radius: 16px;
}

.badge img {
  width: 28px;
}


/* =========================================================
   MENU SECTION
   ========================================================= */

.menu-section {
  background-color: #FAF8F3;
  width: 100% !important;
}

/* Centered heading style used across multiple sections */
.section-title {
  text-align: center;
}

/* Small gold underline beneath section titles */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d2ad58;
  margin: 10px auto;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-card {
  background: #fff;
  padding: 25px;
  border: 1px solid #E5E0D5;
  border-radius: 16px;
  background-image: url("images/menu-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Centers the heading text + decorative icon as one column (text, <br>, icon) */
.menu-card h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 36px;
  color: #2C2C2C;
}

.menu-card h3 img {
  max-width: 170px;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 8px 0;
}

/* Dotted line that fills the space between item name and price */
.menu-line {
  flex: 1;
  border-bottom: 1.5px dotted rgba(201, 169, 97, 0.3);
}

.menu-item {
  font-size: 18px;
  line-height: 28px;
  font-weight: medium;
  color: #2C2C2C;
}

.menu-price {
  font-size: 20px;
  line-height: 28px;
  font-weight: semi-bold;
  color: #C9A961;
}


/* =========================================================
   POPULAR MEALS
   ========================================================= */

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.meal-card {
  background: #fff;
  border: 1px solid #ddd;
  width: 361px;
  border-radius: 16px;
  position: relative;
  border: 1px solid #E5E0D5;

  /* Small decorative graphic sitting just under the meal photo */
  background-image: url("images/meal-background.png");
  background-repeat: no-repeat;
  background-position: right 256px;
  background-size: 80px 80px;
}

.meal-card img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.meal-content {
  padding: 32px;
}

.meal-content img {
  width: auto;
  max-width: 267px;
  height: auto;
}

.meal-content p {
  font-size: 16px;
  line-height: 20px;
  color: #6B6B6B;
  font-style: italic;
  margin-top: 20px;
}

.meal-heading {
  display: flex;
  align-items: center;
}


/* =========================================================
   OPENING HOURS TABLE
   ========================================================= */

.hours-section {
  background-color: #FAF8F3;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

td {
  padding: 33px;
  text-align: center;
}

/* border-collapse:separate + overflow:hidden lets border-radius render correctly on a <table> */
.opening-hours-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #E5E0D5;
  border-radius: 16px;
  overflow: hidden;
}

/* Gold-to-charcoal gradient header row */
.opening-hours-table th {
  background: linear-gradient(
    90deg,
    #2C2C2C 0%,
    #403C34 7%,
    #554D3C 14%,
    #6B5E44 21%,
    #81704C 29%,
    #988353 36%,
    #B0965A 43%,
    #C9A961 50%,
    #B0965A 57%,
    #988353 64%,
    #81704C 71%,
    #6B5E44 79%,
    #554D3C 86%,
    #403C34 93%,
    #2C2C2C 100%
  );
  border: none;
  padding: 72px 0px 32px 0px;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  color: #fff;
}

.table-day {
  font-size: 18px;
  line-height: 28px;
  color: #2C2C2C;
  font-weight: medium;
}

.table-time {
  font-size: 18px;
  line-height: 28px;
  color: #6B6B6B;
  font-weight: regular;
}

/* Small fading gold line under each time entry */
.table-line {
  height: 1px;
  width: 158px;
  margin: 8px auto 0; /* centers the line under the text */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(201, 169, 97, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}


/* =========================================================
   GUEST TESTIMONIALS
   ========================================================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 32px;
  border: 1px solid #E5E0D5;
  border-radius: 16px;
  position: relative; /* needed so .quote-icon can position itself relative to this card */
  box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
}

/* Quote icon overhangs the top-left edge of the card */
.quote-icon {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 48px;
  height: 48px;
}

.stars-icon {
  width: 297px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 26px;
  color: #2C2C2C;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 16px;
}

.testimonail-line {
  border-top: 1px solid #E5E0D5;
  padding-top: 20px;
}

.testimonail-line h4 {
  font-size: 18px;
  line-height: 28px;
  color: #2C2C2C;
  font-weight: semi-bold;
}

.person {
  font-size: 14px;
  line-height: 20px;
  color: #6B6B6B;
  font-weight: regular;
}

.testimonial-date {
  font-size: 12px;
  line-height: 16px;
  color: #C9A961;
  font-weight: regular;
}


/* =========================================================
   RESERVATION FORM
   ========================================================= */

.reservation-section {
  background-color: #FAF8F3;
}

form {
  background-image: url("images/form-background.png");
  background-repeat: no-repeat;
  background-position: bottom-center;
  background-size: cover;
  margin: 0 auto;       /* centers the form horizontally */
  max-width: 700px;
  height: auto;
  border: 1.6px solid #E5E0D5;
  border-radius: 16px;
  padding: 50px;
}

.form-grid {
  display: block;
  grid-template-columns: 1fr 1fr; /* unused while display:block, kept for reference if switched to grid */
  gap: 15px;
}

/* Row that holds two side-by-side fields (e.g. Full Name + Phone Number) */
.form-name {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 32px;
}

.form-name div {
  width: 100%;
}

/* Small decorative line+dot graphic above the first row of fields */
.top-form {
  display: block;
  width: 160px;
  margin: 0 auto;
}

/* Wide decorative divider graphic between form sections */
.form-decor {
  display: block;
  width: 668px;
  margin: 0 auto;
}

/* Gold gradient "Confirm Reservation" button */
form .primary-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  background: linear-gradient(
    90deg,
    #C9A961 0%,
    #C7A65E 14%,
    #C4A35C 29%,
    #C2A059 43%,
    #BF9E57 57%,
    #BD9B54 71%,
    #BA9852 86%,
    #B8954F 100%
  );
}

label {
  font-size: 16px;
  line-height: 28px;
  color: #2C2C2C;
  font-weight: medium;
}

input, textarea {
  width: 100%;
  padding: 16px 20px;
  margin-top: 8px;
  border: 1.6px solid #E5E0D5;
  background-color: #FAF8F3;
  border-radius: 16px;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(44, 44, 44, 0.5);
  font-size: 14px;
  font-weight: regular;
}

/* Styles the native date text inside <input type="date"> (Chrome/Edge/Safari only) */
input[type="date"]::-webkit-datetime-edit {
  color: rgba(44, 44, 44, 0.5);
}

input:focus,
textarea:focus {
  outline: 2px solid #d2ad58;
}

textarea {
  height: 120px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  background-image: url("images/contact-us-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1.6px solid #E5E0D5;
  border-radius: 16px;
}

.contact-icon {
  max-width: 100px;
  margin: 0 auto; /* centers icon horizontally */
}

.contact-decor {
  max-width: 150px;
  margin: 0 auto;
  margin-bottom: 12px;
  margin-top: 12px;
}

.contact-card h3 {
  font-size: 24px;
  line-height: 32px;
  color: #2C2C2C;
  font-weight: 600;
  margin-top: 16px;
}

.contact-p1 {
  font-size: 18px;
  line-height: 26px;
  color: #2C2C2C;
  font-weight: medium;
}

.contact-p2 {
  font-size: 14px;
  line-height: 26px;
  color: #6B6B6B;
  font-weight: regular;
  margin-bottom: 12px;
}

/* Small rounded "pill" label (e.g. "Open Daily") */
.contact-pill {
  font-size: 14px;
  line-height: 20px;
  color: #C9A961;
  font-weight: 400;
  padding: 5px 14px;
  background: rgba(201, 169, 97, 0.1);
  margin-top: 16px;
  border-radius: 999px;
  display: inline-block;
  margin: 0 auto;
}

.social-links {
  text-align: center;
  margin-top: 25px;
}

.social-image {
  width: 56px;
  height: 56px;
}


/* =========================================================
   OUR STORY
   ========================================================= */

/* Scrollable text box with hidden scrollbar (content still scrolls via mouse/trackpad) */
.story-box {
  height: 300px;
  overflow-y: auto;
  background: #fff;
  padding: 25px;
  border: 1px solid #E5E0D5;
  border-radius: 16px;
  font-size: 16px;
  line-height: 26px;
  color: #2C2C2C;
  font-weight: 400;
  -ms-overflow-style: none; /* hides scrollbar in IE/Edge */
  scrollbar-width: none;    /* hides scrollbar in Firefox */
}

/* Hides scrollbar in Chrome/Safari/Edge (WebKit) */
.story-box::-webkit-scrollbar {
  display: none;
}

.story-section {
  background: #FAF8F3;
}

.scroll {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #6B6B6B;
  font-weight: 400;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #222;
  color: #fff;
}

.footer-social-links {
  text-align: center;
  margin-top: 12px;
}

.footer-image {
  width: 32px;
  height: 32px;
}

.footer-icon {
  height: 40px;
  width: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 16px;
  line-height: 24px;
  color: #99A1AF;
  font-weight: 500;
  display: block;          /* stacks links vertically instead of inline */
  text-decoration: none;   /* removes default link underline */
}

.footer-content {
  display: flex;
  justify-content: space-between;
}