/* ===========================================================
   The Bar That Serves — shared stylesheet
   One file controls the look of every page. Edit colors/fonts
   here and they update everywhere.
   =========================================================== */

:root {
  --blush: #f8d3d5;       /* light blush pink (brand) */
  --blush-deep: #f1b9bd;  /* slightly deeper pink for borders/hover */

  /* Golds — split by use so text stays READABLE while accents stay light */
  --gold: #bfa06f;        /* DECORATIVE only: borders, chips, outlines, accents */
  --gold-deep: #8c6a2f;   /* HEADINGS / larger gold text (good contrast) */
  --gold-text: #6f5526;   /* SMALL gold text: nav, footer, labels (high contrast) */
  --gold-dark: #574018;   /* hover / active */

  --ink: #2c2c2c;         /* body text */
  --muted: #5d5d5d;       /* secondary text */
  --paper: #ffffff;
  --soft: #fff9f9;        /* very light pink for cards/sections */
}

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

html, body { height: 100%; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Marcellus', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

a { color: var(--gold-text); }

/* ----------------------------- Header / Nav ----------------------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--blush);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

header.site-header h1 {
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  color: var(--gold-deep);
  margin: 0;
}

header.site-header h1 a {
  color: inherit;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--gold-text);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  line-height: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--gold-deep);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-block;
  background-color: transparent;
  color: var(--gold-text);
  padding: 11px 26px;
  border: 2px solid var(--gold);
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn.solid {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
}

.btn.solid:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('mobile_bar.jpg') no-repeat center center / cover;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.hero h2 {
  font-size: 3.1rem;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero .btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero .btn:hover {
  background: #fff;
  color: var(--gold-dark);
}

/* ----------------------------- Sections / headings ----------------------------- */
.content {
  padding: 64px 22px;
  max-width: 1000px;
  margin: auto;
}

main { display: block; }

h2.section-title {
  font-size: 2.6rem;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h3 {
  color: var(--gold-deep);
  font-size: 1.5rem;
  margin-top: 28px;
  margin-bottom: 8px;
}

p { margin-bottom: 12px; }

ul { margin-left: 22px; margin-top: 8px; margin-bottom: 12px; }

blockquote {
  font-family: 'Marcellus', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
  margin-top: 24px;
  border-left: 3px solid var(--blush-deep);
  padding-left: 18px;
}

/* ----------------------------- Cards (services/add-ons) ----------------------------- */
.service, .addon {
  background: var(--soft);
  border: 1px solid var(--blush-deep);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service h4, .addon h4 {
  color: var(--gold-deep);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* ----------------------------- Contact form ----------------------------- */
form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  padding: 13px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

form.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

form.contact-form .field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: -8px;
}

form.contact-form button {
  background-color: var(--gold-deep);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: background 0.3s ease;
}

form.contact-form button:hover {
  background-color: var(--gold-dark);
}

.contact-info {
  margin-top: 40px;
  text-align: center;
}

.contact-info p { margin-bottom: 8px; }

.contact-info a {
  color: var(--gold-text);
  text-decoration: none;
  font-weight: 600;
}

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

/* ----------------------------- Photos & Videos / social ----------------------------- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-deep);
  background: var(--soft);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.social-links a:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 18px rgba(140, 106, 47, 0.3);
}

.social-links a svg { width: 34px; height: 34px; fill: currentColor; }

/* Subtle animated cocktail graphic for the photos page */
.cocktail-anim {
  width: 120px;
  height: 120px;
  margin: 10px auto 26px;
  animation: floaty 3.5s ease-in-out infinite;
}

.cocktail-anim svg { width: 100%; height: 100%; }

.bubble { animation: rise 2.8s ease-in infinite; transform-origin: center; opacity: 0; }
.bubble.b2 { animation-delay: 0.9s; }
.bubble.b3 { animation-delay: 1.7s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rise {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-34px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cocktail-anim, .bubble { animation: none; }
}

/* ----------------------------- Footer ----------------------------- */
footer.site-footer {
  background: var(--blush);
  color: var(--gold-dark);
  text-align: center;
  padding: 22px;
  font-weight: 600;
  margin-top: 60px;
}

footer.site-footer a { color: var(--gold-dark); }

/* ===========================================================
   MOBILE / RESPONSIVE — the fix for the phone view
   =========================================================== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  header.site-header { position: relative; }

  nav.site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blush);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
    display: none;
  }

  nav.site-nav.open { display: block; }

  nav.site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }

  nav.site-nav li { width: 100%; }

  nav.site-nav a {
    display: block;
    padding: 15px 22px;
    border-top: 1px solid rgba(140, 106, 47, 0.18);
  }

  nav.site-nav a:hover,
  nav.site-nav a[aria-current="page"] { text-decoration: none; background: var(--soft); }

  .hero { min-height: 70vh; }
  .hero h2 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }

  h2.section-title { font-size: 2.05rem; }
  h3 { font-size: 1.3rem; }

  .content { padding: 44px 18px; }
}

@media (max-width: 420px) {
  header.site-header h1 { font-size: 1.35rem; }
  .hero h2 { font-size: 1.9rem; }
}
