/* ==========================================================================
   Beddau Charcoal Grill — Site Styles
   Theme: Red, Blue, White
   ========================================================================== */

:root {
  --red: #cf2e2e;
  --red-dark: #a81f1f;
  --red-darker: #7d1414;
  --blue: #1b2a4a;
  --blue-light: #2c4270;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --grey: #5b6470;
  --border: #e5e8ee;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 42, 74, 0.12);
  --shadow-sm: 0 4px 14px rgba(27, 42, 74, 0.08);
  --container: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--blue);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(207, 46, 46, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
}

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

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

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(27, 42, 74, 0.3);
}

.btn-blue:hover {
  background: var(--blue-light);
}

/* --------------------------------------------------------------------------
   Top bar + Header
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  padding: 7px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  font-weight: 600;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar .socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar .socials svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  vertical-align: middle;
  transition: opacity 0.2s;
}

.topbar .socials a:hover svg {
  opacity: 0.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

.brand img {
  width: 58px;
  height: 58px;
}

.brand .brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand .brand-name span {
  color: var(--red);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  color: var(--blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 2px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav .nav-order {
  background: var(--red);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(207, 46, 46, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.main-nav .nav-order::after {
  display: none;
}

.main-nav .nav-order:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(rgba(15, 22, 40, 0.72), rgba(15, 22, 40, 0.72)),
    url("../assets/image1.jpg") center 40% / cover no-repeat;
}

.hero-inner {
  max-width: 720px;
  padding: 90px 0;
}

.hero .tagline {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 em {
  color: #ff6b5e;
  font-style: normal;
}

.hero p {
  font-size: 1.15rem;
  color: #e6e9f0;
  margin-bottom: 32px;
  max-width: 560px;
}

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

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-head .kicker {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 8px 0 12px;
}

.section-head p {
  color: var(--grey);
}

/* Feature strip */

.features {
  background: var(--off-white);
  padding: 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transform: translateY(-50px);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--red);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(207, 46, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* About */

.about {
  background: var(--off-white);
  padding-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-img .badge {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-weight: 800;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.25;
}

.about-img .badge small {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  opacity: 0.9;
}

.about-copy .kicker {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 8px 0 16px;
}

.about-copy p {
  color: var(--grey);
  margin-bottom: 14px;
}

.about-list {
  list-style: none;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
}

.about-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
}

.about-list li::before {
  content: "✔";
  color: var(--red);
  font-weight: 800;
  flex: 0 0 auto;
}

/* Menu highlights */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.menu-card .card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.menu-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.menu-card .card-link {
  font-weight: 700;
  color: var(--red);
}

.menu-card .card-link:hover {
  color: var(--red-dark);
}

/* Order CTA band */

.cta-band {
  background: linear-gradient(120deg, var(--red-darker), var(--red));
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  color: #ffe3e0;
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta-band .btn-primary:hover {
  background: #ffe9e7;
}

.cta-band .phone-line {
  margin-top: 18px;
  font-weight: 600;
}

.cta-band .phone-line a {
  color: var(--white);
  text-decoration: underline;
}

/* Gallery */

.gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* Visit / info cards */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(27, 42, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--grey);
  font-size: 0.97rem;
}

.info-card a {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.page-hero {
  background: linear-gradient(rgba(15, 22, 40, 0.78), rgba(15, 22, 40, 0.78)),
    url("../assets/image1.jpg") center 45% / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  color: #dfe4ee;
  max-width: 560px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}

.contact-block h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-block p {
  color: var(--grey);
}

.contact-block a {
  font-weight: 700;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--blue);
  color: #c6cede;
}

.footer-main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 74px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer ul a {
  color: #c6cede;
  transition: color 0.2s;
}

.site-footer ul a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: var(--red);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 0.88rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating order button (mobile) */

.floating-order {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(207, 46, 46, 0.45);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  section {
    padding: 60px 0;
  }

  .features .container,
  .menu-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 340px;
  }

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

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 14px 24px rgba(27, 42, 74, 0.15);
    display: none;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav li:last-child {
    border-bottom: none;
    padding-top: 14px;
  }

  .main-nav a {
    display: block;
    padding: 14px 4px;
  }

  .main-nav .nav-order {
    text-align: center;
  }

  .features .container,
  .menu-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding: 70px 0 90px;
  }

  .gallery-grid img {
    height: 230px;
  }

  .map-wrap iframe {
    height: 380px;
  }

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

  .floating-order {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }

  .topbar .container {
    justify-content: center;
  }
}
