@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #333;
  padding: 0.75rem 2rem;
}

/* brand group (logo + title) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
} */
/* header h1 {
  color: white;
  text-align: center;
  margin: 0;
  font-size: 2rem;
} */
 header h1 {
  font-family: 'Playfair Display', serif; /* Fancy serif font */
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}
header h1 {
  font-family: 'Playfair Display', serif;
  color: #E5C185; /* champagne gold tone */
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem; /* spacing between links */
  margin-top: 0.5rem;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 6px; 
  transition: background-color 0.3s, color 0.3s;
}
nav a:hover {
  background-color: #1e90ff; /* blue background */
  color: white;              /* keeps text readable */
}
header nav a, header a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}
.hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  background: url("images/hero3.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Optional overlay for text readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero .btn {
  position: relative;
  z-index: 1;
  padding: 14px 30px;
  font-size: 1.1rem;
  background: #9c6644;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  transition: background 0.2s;
}

.hero .btn:hover {
  background: #7d4f34;
}

.hero {
  text-align: center;
  padding: 2rem;
}

.hero img {
  max-width: 900px;   
  width: 100%;
  height: auto;       
  display: block;
  margin: 0 auto;     
}

section {
  padding: 2rem;
}

.menu-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.menu-gallery img {
  width: 200px;
  border-radius: 8px;
}
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 999px;
  background: #9c6644;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  transition: background 0.2s;
}
.btn:hover {
  background: #7d4f34;
}

.intro {
  background-color: #f0f0f0; /* light grey */
  padding: 3rem 1.5rem;      /* space around content */
}

.intro h2 {
  max-width: 900px;          /* container width */
  margin: 0 auto 1rem auto;  /* centers h2 inside */
  text-align: left;        /* center the text */
  font-size: 2rem;
  font-weight: bold;
  color: #2b2b2b;            /* dark text */
}

.intro p {
  max-width: 900px;          
  margin: 0 auto;            /* centers paragraph */
  line-height: 1.6;
  color: #444;               /* softer text color */
  text-align: left;        /* center the paragraph */
}
.menu-hero {
      background-color: #2b2b2b; /* dark grey background */
      color: white;
      text-align: center;
      padding: 3rem 1rem;
    }

    .menu-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .menu-hero p {
      color: #ccc;
      font-size: 1.2rem;
    }

    .menu-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    .menu-item {
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.2s;
    }

    .menu-item:hover {
      transform: translateY(-5px);
    }

    .menu-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: bottom;
      display: block;
    }

    .menu-item h3 {
      margin: 1rem;
      font-size: 1.2rem;
      color: #2b2b2b;
    }

    .menu-item p {
      margin: 0 1rem 1rem;
      color: #555;
    }
.menu-hero {
  position: relative;
  background: url("images/atmospher.jpg") center/cover no-repeat; 
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

/* Overlay to improve text readability */
.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.menu-hero h1,
.menu-hero p {
  position: relative;  /* keeps text above the overlay */
  z-index: 1;
}

.menu-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.menu-hero p {
  color: #ddd;
  font-size: 1.2rem;
}

/* Drinks section banner */
.section-banner {
  position: relative;
  background: url("images/hero4.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  height: 40vh;            
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;       
  margin: 4rem 0 2rem;
  overflow: hidden;
}

/* Overlay for readability */
.section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.section-banner h2 {
  position: relative;
  font-size: 3rem;
  z-index: 1;
  margin: 0;
}
/* Container */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Book page hero */
.book-hero {
  background-color: #2b2b2b;  /* dark grey to match site */
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.book-hero h2 {
  font-size: 2.2rem;
  margin: 0 0 .5rem 0;
}
  .book-hero p {
  background-color: #333; /* same dark grey as header */
  display: inline-block;  /* so background fits text width */
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  color: #f3f3f3;          /* readable light text */
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 1rem auto 0;
}

/* Card */
.form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  padding: 2rem;
  margin: 2rem auto 3rem;
  max-width: 900px;
}
.form-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Grid layout for inputs */
.form-card .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.25rem;
}
.form-card label span {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  font: inherit;
}
.form-card textarea { resize: vertical; }
.form-card label.full { grid-column: 1 / -1; }

@media (min-width: 760px) {
  .form-card .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Checkbox + legal */
.legal {
  margin-top: .25rem;
  color: #555;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.checkbox input { transform: translateY(1px); }

/* Actions */
.actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Buttons (reuses your earlier .btn styles—add if you don’t have them) */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e90ff; /* primary blue or your brand color */
  color: #fff;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: opacity .2s;
}
.btn:hover { opacity: .9; }
.btn.ghost {
  background: transparent;
  color: #1e90ff;
  border: 2px solid #1e90ff;
  box-shadow: none;
}

/* Success message */
.form-msg {
  margin-top: .75rem;
  color: #2b6a32;
  font-weight: 600;
}

/* Map card (optional) */
.map-card {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: .5rem 0 .75rem;
}
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.book-hero {
  position: relative;
  background: url("images/atmospher2.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  overflow: hidden;
}


.book-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); 
}

.book-hero h2,
.book-hero p {
  position: relative;
  z-index: 1; 
}

.book-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.book-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #f3f3f3;
}
/* Container utility (reuse if not added yet) */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* Contact hero (with background option) */
.contact-hero {
  position: relative;
  background: url("images/contact-hero.jpg") center/cover no-repeat; /* replace or use solid */
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.contact-hero h2,
.contact-hero p { position: relative; z-index: 1; }
.contact-hero h2 { font-size: 2.4rem; margin: 0 0 .5rem; }
.contact-hero p { max-width: 720px; margin: 0 auto; color: #eee; }

/* Info + Form grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info h3 { margin-top: 0; }
.contact-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; }

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  padding: 1.5rem;
}
.contact-form-card h3 { margin-top: 0; }

.contact-form-card form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.25rem;
}
.contact-form-card label span {
  display: block; font-weight: 600; margin-bottom: .35rem;
}
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  font: inherit;
}
.contact-form-card label.full { grid-column: 1 / -1; }


.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e90ff;
  color: #fff;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: opacity .2s;
}
.btn:hover { opacity: .9; }
.btn.ghost {
  background: transparent; color: #1e90ff; border: 2px solid #1e90ff; box-shadow: none;
}


.form-msg { margin-top: .5rem; color: #2b6a32; font-weight: 600; }


.map-card { max-width: 1100px; margin: 0 auto 3rem; padding: 0 1rem; }
.map-head { display: flex; align-items: center; justify-content: space-between; margin: .5rem 0 .75rem; }
.map-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 12px; overflow: hidden; box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.contact-hero {
  position: relative;
  background: url("images/unsplash.jpg") top center/cover no-repeat;
  width: 100%;
  height: 40vh;   
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* overlay for text readability */
}
.contact-hero h2,
.contact-hero p {
  position: relative;
  z-index: 1;
}





.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); 
}

.contact-hero h2,
.contact-hero p {
  position: relative;
  z-index: 1; 
}

.contact-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #f1f1f1;
}
/* FOOTER */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

footer p {
  margin: 0;
  opacity: 0.9;
}
