/* The Harp - Wilmington NC - Irish Restaurant & Pub */
/* Dark Irish pub aesthetic: deep green, copper/amber accents, chalk-like texture */

:root {
  --green-deep: #1a3a1a;
  --green-mid: #2d5a27;
  --green-light: #3d7a35;
  --copper: #b87333;
  --amber: #d4a017;
  --cream: #f5f0e8;
  --cream-light: #fdf9f3;
  --dark: #111a10;
  --text-main: #2c2416;
  --text-light: #5a4f3a;
  --text-muted: #8a7d6a;
  --border: #c8b89a;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-strong: 0 8px 32px rgba(0,0,0,0.2);
  --radius: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  background-color: var(--cream-light);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 17px;
}

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

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--copper);
  text-decoration: underline;
}

/* === HEADER / NAV === */

.site-header {
  background: var(--green-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--copper);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-harp {
  font-size: 28px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.68rem;
  color: #a8c9a0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  color: #d0e8d0;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--copper);
  color: var(--cream-light);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--copper);
  color: var(--amber);
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
}

/* === HERO === */

.hero {
  position: relative;
  height: 72vh;
  min-height: 440px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,30,10,0.3) 0%, rgba(10,20,10,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
}

.hero-text {
  max-width: 700px;
}

.hero-eyebrow {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}

.hero-text h1 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream-light);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-text p {
  font-size: 1.1rem;
  color: #e0d8c8;
  max-width: 560px;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background: var(--copper);
  color: var(--cream-light);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--amber);
  color: var(--dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream-light);
  border: 2px solid var(--cream-light);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 12px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}

/* === TAGLINE BANNER === */

.tagline-banner {
  background: var(--green-deep);
  text-align: center;
  padding: 20px 24px;
  border-bottom: 2px solid var(--copper);
}

.tagline-banner p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--amber);
  letter-spacing: 0.04em;
}

/* === MAIN CONTENT === */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-section {
  padding: 72px 0;
}

.page-section:nth-child(even) {
  background: #f0e8da;
}

.section-label {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--copper);
  border: none;
  margin-bottom: 28px;
}

/* === INNER PAGE LAYOUT === */

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,30,10,0.25) 0%, rgba(10,20,10,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-text h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream-light);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.page-content h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-deep);
  margin-bottom: 24px;
  line-height: 1.2;
}

.page-content h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.4rem;
  color: var(--green-mid);
  margin: 40px 0 16px;
  padding-top: 8px;
  border-top: 2px solid var(--border);
}

.page-content h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--copper);
  margin: 24px 0 12px;
}

.page-content p {
  margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content dl dt {
  font-weight: 700;
  color: var(--green-deep);
  margin-top: 16px;
}

.page-content dl dd {
  font-style: italic;
  color: var(--text-light);
  margin-left: 0;
  padding-left: 16px;
  border-left: 3px solid var(--copper);
  margin-bottom: 12px;
}

/* === MENU PAGE SPECIFICS === */

.menu-nav {
  background: var(--green-deep);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-nav a {
  color: #a8c9a0;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s;
}

.menu-nav a:hover {
  color: var(--amber);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* === SPECIALS TABLE === */

.specials-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.specials-table th {
  background: var(--green-deep);
  color: var(--amber);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.specials-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.specials-table tr:last-child td {
  border-bottom: none;
}

.specials-table tr:nth-child(even) td {
  background: var(--cream);
}

/* === EVENTS GRID === */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.event-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.event-card-body {
  padding: 24px;
}

.event-card-day {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
  display: block;
}

.event-card-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.event-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.contact-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  margin: 32px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--cream-light);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
}

.btn-submit {
  background: var(--green-deep);
  color: var(--cream-light);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--copper);
  transform: translateY(-1px);
}

/* === HOMEPAGE FEATURES === */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--copper);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === INLINE IMAGE === */

.inline-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin: 28px 0;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

/* === GALLERY GRID === */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.photo-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 300px;
  width: 100%;
  object-fit: cover;
}

/* === HOURS BOX === */

.hours-box {
  background: var(--green-deep);
  color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 32px 0;
}

.hours-box h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hours-box p {
  font-size: 1rem;
  color: #d0e8d0;
  margin-bottom: 6px;
}

/* === FOOTER === */

.site-footer {
  background: var(--dark);
  border-top: 3px solid var(--copper);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo-name {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.4rem;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  color: #7a9c7a;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #8ab88a;
  font-size: 0.92rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-col p {
  color: #7a9c7a;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #2a3a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: #4a6a4a;
  font-size: 0.85rem;
}

.footer-tagline {
  color: #3a5a3a;
  font-style: italic;
  font-size: 0.85rem;
}

/* === 404 PAGE === */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.error-content h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 5rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 12px;
}

.error-content h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.6rem;
  color: var(--copper);
  margin-bottom: 20px;
}

.error-content p {
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-deep);
    padding: 16px;
    border-bottom: 3px solid var(--copper);
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    position: relative;
  }

  .hero {
    height: 55vh;
  }

  .hero-overlay {
    padding: 32px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 40vh;
  }
}
