/*
Theme Name: LRI-1
Theme URI: https://lakeripleyinn.geekpowered.net
Author: Geek Powered
Author URI: https://geekpowered.net
Description: Custom theme for Hering's Lake Ripley Inn - Cambridge, WI
Version: 20260615212253
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lri-1
Tags: restaurant, custom-menu, custom-logo
*/

/* ============================================================
   CSS Variables / Root
   ============================================================ */
:root {
  --navy: #1e2e42;
  --lime: #c7d400;
  --white: #ffffff;
  --gray: #333333;
  --light-gray: #f5f5f5;
  --border-gray: #dddddd;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
}

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

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

a:hover {
  color: var(--lime);
}

ul {
  list-style: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.display-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-lime {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

.btn-lime:hover {
  background: var(--navy);
  color: var(--lime);
  border-color: var(--navy);
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 64px 0;
}

.section-pad-sm {
  padding: 40px 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.site-logo img {
  height: 64px;
  width: auto;
}

/* Primary Navigation */
#primary-navigation .nav-menu {
  display: flex;
  gap: 0;
  align-items: center;
}

#primary-navigation .nav-menu li {
  border: none !important;
  outline: none !important;
  list-style: none;
}

#primary-navigation .nav-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  border: none;
  outline: none;
  transition: color 0.2s ease, background 0.2s ease;
}

#primary-navigation .nav-menu li a:hover {
  color: var(--lime);
  background: transparent;
}

#primary-navigation .nav-menu li.current-menu-item,
#primary-navigation .nav-menu li.current-page-ancestor,
#primary-navigation .nav-menu li.current_page_item {
  background: #1e2e42 !important;
}

#primary-navigation .nav-menu li.current-menu-item > a,
#primary-navigation .nav-menu li.current-page-ancestor > a,
#primary-navigation .nav-menu li.current_page_item > a {
  color: var(--lime) !important;
  background: transparent !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  #primary-navigation {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #primary-navigation.is-open {
    max-height: 400px;
  }

  #primary-navigation .nav-menu {
    flex-direction: column;
    padding: 12px 0;
  }

  #primary-navigation .nav-menu li {
    width: 100%;
  }

  #primary-navigation .nav-menu li a {
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  border-top: 4px solid var(--lime);
  color: var(--white);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--lime);
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--lime);
  margin: 8px auto;
}

.footer-contact {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.8;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 8px;
}

/* ============================================================
   HERO SECTION (Front Page)
   ============================================================ */
.hero-section {
  background: var(--navy);
  padding: 80px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.hero-logo img {
  width: 220px;
  height: auto;
}

.hero-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-logo img {
    width: 160px;
    margin: 0 auto;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ============================================================
   ZIGZAG DIVIDER
   ============================================================ */
.zigzag-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: 0.6em !important;
  margin-bottom: 0.6em !important;
}

.zigzag-divider img,
.zigzag-divider svg {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lime-divider {
  height: 8px;
  background: var(--lime);
  width: 100%;
}

/* ============================================================
   FOOD SECTION (Front Page Section 1)
   ============================================================ */
.food-section {
  padding: 72px 0;
}

.food-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
}

.food-content .section-heading {
  margin-bottom: 4px;
}

.food-content .section-subheading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.food-content p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   DRINKS SECTION (Front Page Section 2)
   ============================================================ */
.drinks-section {
  background: #ffffff;
  padding: 72px 0;
}

.drinks-content .section-heading {
  margin-bottom: 20px;
}

.drinks-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.drinks-image {
  position: relative;
}

.drinks-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 5px solid var(--lime);
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  letter-spacing: 0.06em;
}

/* ============================================================
   SPECIALS PAGE
   ============================================================ */
.specials-section {
  padding: 64px 0;
}

.specials-day {
  margin-bottom: 56px;
}

.specials-day:last-child {
  margin-bottom: 0;
}

.day-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  border-bottom: 3px solid var(--lime);
  padding-bottom: 10px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.specials-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.special-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.special-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.03em;
  flex: 1;
}

.special-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--lime);
  font-size: 1.15rem;
  white-space: nowrap;
}

.special-note {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
  font-style: italic;
}

.special-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.special-price-featured {
  display: inline-block;
  background: var(--navy);
  color: var(--lime);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 6px 20px;
  border-radius: 2px;
  margin-top: 8px;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page-section {
  padding: 64px 0;
}

.menu-disclaimer {
  background: #fff8e1;
  border-left: 4px solid var(--lime);
  padding: 16px 20px;
  margin-bottom: 48px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.menu-category {
  margin-bottom: 52px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  letter-spacing: 0.06em;
  border-bottom: 3px solid var(--lime);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 3px;
  background: var(--white);
  gap: 12px;
  transition: border-color 0.2s ease;
}

.menu-item:hover {
  border-color: var(--lime);
}

.menu-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  flex: 1;
}

.menu-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--gray);
  font-size: 1rem;
  white-space: nowrap;
}

.menu-section-note {
  font-size: 0.88rem;
  color: #888;
  font-style: italic;
  margin-bottom: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 72px 0;
  text-align: center;
}

.contact-logo {
  margin: 0 auto 32px;
}

.contact-logo img {
  height: 100px;
  width: auto;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 32px;
}

.contact-info address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--gray);
}

.contact-info .contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 16px;
}

.contact-info .contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
}

.contact-hours {
  background: var(--light-gray);
  border-radius: 4px;
  padding: 24px 32px;
  display: inline-block;
  margin: 24px auto 32px;
  min-width: 320px;
}

.contact-hours .hours-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

.contact-email-btn {
  margin-bottom: 16px;
}

/* Secondary location section */
.other-location-section {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}

.other-location-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.other-location-section address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 2;
  opacity: 0.9;
}

.other-location-section .other-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

/* ============================================================
   EMPLOYMENT PAGE
   ============================================================ */
.employment-section {
  padding: 72px 0;
}

.employment-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 3px var(--navy);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .employment-heading {
    font-size: 2.2rem;
    -webkit-text-stroke: 2px var(--navy);
  }
}

/* Application Form */
.application-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--light-gray);
  border-radius: 6px;
  padding: 40px;
  border-top: 4px solid var(--lime);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-gray);
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--gray);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

/* CF7 overrides */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="submit"] {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  transition: all 0.25s ease;
  width: 100%;
}

.wpcf7 input[type="submit"]:hover {
  background: transparent;
  color: var(--navy);
}

/* ============================================================
   DEFAULT PAGE
   ============================================================ */
.default-page-content {
  padding: 64px 0;
}

.default-page-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 32px;
}

.default-page-content .entry-content {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 600px) {
  .section-pad { padding: 48px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .page-banner h1 { font-size: 2.2rem; }
}

/* ============================================================
   STICKY FOOTER
   ============================================================ */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body > #page,
body > #wrapper,
body > main,
body > #main-content,
body > .site-wrapper {
  flex: 1 0 auto;
}

/* ============================================================
   GP CREDIT BAR
   ============================================================ */
.gp-credit-bar {
  font-family: inherit;
  text-align: center;
  padding: 8px 0 4px;
  font-size: 0.75rem;
  color: var(--white);
}
.gp-credit-bar a {
  color: var(--lime);
  text-decoration: underline;
}
.gp-credit-bar a:hover {
  opacity: 0.8;
}
