/* ══════════════════════════════════════════════════════════════
   Waterfront Tavern Seafood & Bar — Global Styles
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --navy:    #0d1b2e;
  --deep:    #081424;
  --amber:   #c9852a;
  --gold:    #e8a83a;
  --cream:   #f5ede0;
  --rust:    #8c3a1e;
  --fog:     #8fa4b8;
  --white:   #fff;
  --text:    #d4c8b8;
  --muted:   #7a8fa3;
  --border:  rgba(201,133,42,0.25);
  --teal:    #0e7c7b;
  --teal-light: #4ecdc4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 9999;
}

a { color: var(--amber); }

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

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 100px;
  background: rgba(8,20,36,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 90px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .active { color: var(--amber); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--deep) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--deep);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(245,237,224,0.4);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--teal-light);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(78,205,196,0.5);
  transition: all 0.25s;
}
.btn-teal:hover {
  background: rgba(78,205,196,0.1);
  border-color: var(--teal-light);
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
h2 em, h1 em { font-style: italic; color: var(--gold); }
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-ornament { color: var(--amber); font-size: 1.2rem; }

/* ── LAYOUT ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

/* ── POSITION STRIP ── */
.position-strip {
  background: var(--amber);
  padding: 1.2rem 2rem;
  text-align: center;
}
.position-strip p {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-logo {
  height: 75px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  padding: 0.35rem 0;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icon {
  width: 54px;
  height: 54px;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.2s;
  background: rgba(201,133,42,0.1);
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,133,42,0.2);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--amber); }
.footer-darts-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-darts-link a { color: var(--teal-light) !important; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: rgba(8,20,36,0.98);
    padding: 2rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.9rem;
  }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .position-strip p { font-size: 0.82rem; }
}
@media (max-width: 600px) {
  section { padding: 3rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .btn-primary, .btn-outline, .btn-teal { width: 100%; justify-content: center; }
}
