:root {
  --red: #c90000;
  --dark-red: #990000;
  --black: #0c0c0c;
  --cream: #f5f0e7;
  --gold: #c49a5a;
  --white: #ffffff;
  --gray: #5e5e5e;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: #8a1f22; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

h1, h2, h3, .site-nav, .brand span, .button {
  font-family: "Oswald", Arial, sans-serif;
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; text-transform: uppercase; }
h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); margin-bottom: 24px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
p { margin-top: 0; }
.eyebrow {
  color: var(--gold);
  font: 700 1.32rem/1 "Oswald", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.events > h2 {
  text-align: center;
}

.eyebrow.dark { color: var(--dark-red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.96);
  border-bottom: 3px solid var(--red);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--white); }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand span { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .03em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--white); text-decoration: none; text-transform: uppercase; font-size: .95rem; letter-spacing: .06em; }
.site-nav a:hover { color: var(--gold); }
.nav-button { padding: 10px 18px; border: 2px solid var(--red); }
.menu-toggle { display: none; color: white; background: transparent; border: 0; font-size: 1.9rem; cursor: pointer; }

.events {
  background: #17213a;
  color: white;
  max-width: none;
  padding: 65px 20px;
}

.events h2 {
  color: white;
  margin-bottom: 10px;
}

.events-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #d9dde5;
  font-size: 18px;
  line-height: 1.6;
}

.event-calendar {
  max-width: 950px;
  margin: auto;
}

.calendar-event {
  display: flex;
  align-items: stretch;
  background: white;
  color: #222;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}

.event-date {
  width: 110px;
  min-width: 110px;
  background: #8b1e1e;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 5px;
}

.event-date .month {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 2px;
}

.event-date .day {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
  margin-top: 4px;
}

.event-info {
  padding: 20px 25px;
}

.event-info h3 {
  color: #17213a;
  font-size: 23px;
  margin: 0 0 5px;
}

.event-info p {
  margin: 5px 0;
  line-height: 1.5;
}

.event-time {
  color: #8b1e1e;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .event-date {
    width: 80px;
    min-width: 80px;
  }

  .event-date .day {
    font-size: 34px;
  }

  .event-info {
    padding: 16px;
  }

  .event-info h3 {
    font-size: 20px;
  }
}




.hero {

    position: relative;
	min-height: 20vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background:
		linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
		url("images/hero-bg.jpg") center center / cover no-repeat;

}
.menu-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.menu-card{

    position:relative;

    height:260px;

    border-radius:14px;

    overflow:hidden;

    background-size:cover;

    background-position:center;

    transition:.3s;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.menu-card:hover{

    transform:translateY(-8px);

}

.menu-card .overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(

        rgba(0,0,0,.15),

        rgba(0,0,0,.80)

    );

    color:#fff;

}

.menu-card h3{

    margin:0 0 10px;

    font-size:1.9rem;

}

.menu-card p{

    margin:0;

    opacity:.95;

}

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.25fr; align-items: center; gap: 70px; padding: 70px 0; }
.hero-logo { width: min(440px, 100%); filter: drop-shadow(0 20px 30px rgba(0,0,0,.45)); }
.hero-copy p:not(.eyebrow) { max-width: 680px; font-size: 1.12rem; color: #ddd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.button { display: inline-block; text-decoration: none; text-transform: uppercase; letter-spacing: .06em; padding: 15px 24px; transition: .2s ease; }
.button-primary { color: white; background: var(--red); border: 2px solid var(--red); }
.button-primary:hover { background: var(--dark-red); border-color: var(--dark-red); transform: translateY(-2px); }
.button-outline { color: white; border: 2px solid white; }
.button-outline:hover { background: white; color: black; }
.full { display: block; text-align: center; }

.intro { background: var(--cream); }
.two-column { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.two-column > div:last-child { font-size: 1.08rem; color: #3f3f3f; }

.menu-section { background: #111; color: white; }
.centered { max-width: 720px; margin: 0 auto 45px; text-align: center; }
.centered > p:last-child { color: #bdbdbd; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.menu-card { background: #1c1c1c; border-top: 5px solid var(--red); padding: 36px 30px; box-shadow: var(--shadow); }
.menu-card p { color: #bdbdbd; }
.menu-icon { font-size: 2.5rem; margin-bottom: 18px; }
.menu-note { text-align: center; color: #a9a9a9; margin: 35px 0 0; font-size: .92rem; }

.events { background: var(--red); color: white; }
.events-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.events-copy .button-primary { background: black; border-color: black; }
.event-list { display: grid; gap: 12px; }
.event-item { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; background: white; color: black; padding: 24px; }
.event-item > span { font: 700 2rem/1 "Oswald", sans-serif; color: var(--red); }
.event-item h3 { margin-bottom: 5px; }
.event-item p { margin: 0; color: var(--gray); }

.hours { background: #efefef; }
.hours-card { background: white; box-shadow: var(--shadow); padding: 50px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; border-left: 8px solid var(--red); }
.hours-details { border-left: 1px solid #ddd; padding-left: 40px; }

.contact { background: #0d0d0d; color: white; }
.contact-wrap { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: start; }
.contact-wrap > div:first-child p:last-child { color: #c6c6c6; max-width: 600px; }
.contact-panel { background: white; color: black; padding: 38px; border-top: 7px solid var(--red); }
.contact-panel a:not(.button) { color: var(--red); }

footer { background: #050505; color: #aaa; padding: 28px 0; border-top: 1px solid #222; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-wrap img { width: 70px; }
.footer-wrap p { margin: 0; font-size: .9rem; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 82px; left: 0; right: 0; background: #0b0b0b; padding: 20px; display: none; flex-direction: column; align-items: stretch; border-bottom: 3px solid var(--red); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 9px 0; }
  .hero-content, .two-column, .events-wrap, .hours-card, .contact-wrap { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-logo { max-width: 330px; margin: 0 auto; }
  .hero-copy { text-align: center; }
  .hero-copy p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  .two-column, .events-wrap, .contact-wrap { gap: 38px; }
  .hours-details { border-left: 0; border-top: 1px solid #ddd; padding: 30px 0 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 68px 0; }
  .brand span { display: none; }
  .hero-content { gap: 32px; padding: 50px 0 70px; }
  .hero-logo { max-width: 250px; }
  h1 { font-size: 3rem; }
  .hours-card, .contact-panel { padding: 30px 24px; }
  .footer-wrap { flex-direction: column; text-align: center; }
}
