/* ============================================================
   css/main.css
   Compiled output of sass/main.scss and all partials.
   Source of truth is the .scss files in /sass/.
   To recompile: sass sass/main.scss css/main.css --style=expanded
   ============================================================ */

/* ── Reset (_reset.scss) ─────────────────────────────────── */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

img,
iframe {
	max-width: 100%;
	display: block;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit;
}

/* ── Base (_base.scss) ───────────────────────────────────── */

body {
	background-color: #1a1a1a;
	color: #f0ece4;
	font-family: "Open Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

h1,
h2,
h3,
h4 {
	font-family: "Oswald", sans-serif;
	line-height: 1.2;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: #cc1111;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
	.section-title {
		font-size: 3rem;
	}
}

.section-subtitle {
	text-align: center;
	color: #a09890;
	font-size: 1.05rem;
	margin-bottom: 0;
}

.section-divider {
	width: 60px;
	height: 4px;
	background-color: #e09b00;
	border: none;
	margin: 0.75rem auto 2.5rem;
}

/* ── Hero / Header (_header.scss) ───────────────────────── */

.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: linear-gradient(155deg, #0d0d0d 0%, #1a1a1a 55%, #200000 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse at center,
		rgba(204, 17, 17, 0.18) 0%,
		transparent 65%
	);
	pointer-events: none;
}

.hero__title {
	font-family: "Oswald", sans-serif;
	font-size: clamp(3rem, 12vw, 7.5rem);
	font-weight: 700;
	color: #cc1111;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	position: relative;
	text-shadow: 0 0 50px rgba(204, 17, 17, 0.55);
}

.hero__subtitle {
	font-family: "Oswald", sans-serif;
	font-size: clamp(0.9rem, 3vw, 1.5rem);
	color: #c9a84c;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-top: 0.6rem;
	position: relative;
}

.hero__tagline {
	color: #a09890;
	font-size: 1.1rem;
	margin-top: 1.5rem;
	max-width: 480px;
	position: relative;
}

.hero__cta {
	display: inline-block;
	margin-top: 2.5rem;
	padding: 0.9rem 2.75rem;
	background-color: #cc1111;
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border: 2px solid #cc1111;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
	position: relative;
}

.hero__cta:hover,
.hero__cta:focus-visible {
	background-color: transparent;
	color: #cc1111;
	outline: none;
}

/* ── Sticky Nav (_nav.scss) ─────────────────────────────── */

.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: rgba(13, 13, 13, 0.97);
	border-bottom: 2px solid #cc1111;
}

.nav__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.8rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.nav__brand {
	font-family: "Oswald", sans-serif;
	font-size: 1.3rem;
	color: #cc1111;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.nav__list {
	display: flex;
	gap: 1.75rem;
	flex-wrap: wrap;
}

.nav__link {
	color: #f0ece4;
	font-family: "Oswald", sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
	color: #e09b00;
	outline: none;
}

/* ── Highlights / Amenities (_highlights.scss) ──────────── */

.highlights {
	background-color: #242424;
	padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
	.highlights {
		padding: 5rem 2rem;
	}
}

.highlights__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.highlight-card {
	background-color: #2e2e2e;
	border: 1px solid #3a3a3a;
	border-top: 4px solid #e09b00;
	padding: 1.75rem 1rem 1.5rem;
	text-align: center;
	transition: border-top-color 0.2s ease;
}

.highlight-card:hover {
	border-top-color: #cc1111;
}

.highlight-card__icon {
	font-size: 2.75rem;
	display: block;
	margin-bottom: 0.75rem;
	line-height: 1;
}

.highlight-card__title {
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	color: #e09b00;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.4rem;
}

.highlight-card__desc {
	font-size: 0.85rem;
	color: #a09890;
	line-height: 1.5;
}

/* ── Specials (_specials.scss) ──────────────────────────── */

.specials {
	background-color: #1a1a1a;
	padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
	.specials {
		padding: 5rem 2rem;
	}
}

.specials__container {
	max-width: 1100px;
	margin: 0 auto;
}

.specials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 600px) {
	.specials__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

.specials-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.93rem;
}

.specials-table caption {
	font-family: "Oswald", sans-serif;
	font-size: 1.4rem;
	color: #e09b00;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-align: left;
	padding-bottom: 0.75rem;
}

.specials-table th {
	background-color: #2e2e2e;
	color: #a09890;
	font-family: "Oswald", sans-serif;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 0.6rem 0.75rem;
	text-align: left;
	border-bottom: 2px solid #cc1111;
}

.specials-table td {
	padding: 0.65rem 0.75rem;
	border-bottom: 1px solid #3a3a3a;
	vertical-align: top;
}

.specials-table tr:hover td {
	background-color: #2e2e2e;
}

.specials-table .day {
	color: #c9a84c;
	font-weight: 600;
	white-space: nowrap;
}

.specials-table .special-name {
	color: #f0ece4;
}

.specials-table .special-name small {
	color: #a09890;
	font-size: 0.8em;
}

.specials-table .special-price {
	color: #e09b00;
	font-weight: 600;
	white-space: nowrap;
	text-align: right;
}

/* ── Menu (_menu.scss) ──────────────────────────────────── */

.menu-section {
	background-color: #1a1a1a;
	padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
	.menu-section {
		padding: 5rem 2rem;
	}
}

.menu-section__container {
	max-width: 1100px;
	margin: 0 auto;
}

.menu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 600px) {
	.menu-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.menu-category {
	background-color: #2e2e2e;
	border: 1px solid #3a3a3a;
	border-top: 4px solid #cc1111;
	padding: 1.5rem;
}

.menu-category__title {
	font-family: "Oswald", sans-serif;
	font-size: 1.25rem;
	color: #e09b00;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.2rem;
}

.menu-category__sizes {
	font-size: 0.8rem;
	color: #a09890;
	font-style: italic;
	margin-bottom: 1.2rem;
}

.menu-list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.menu-item {
	border-bottom: 1px solid #3a3a3a;
	padding-bottom: 0.8rem;
}

.menu-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.menu-item__name {
	display: block;
	color: #f0ece4;
	font-weight: 600;
	font-size: 0.95rem;
}

.menu-item__desc {
	display: block;
	color: #a09890;
	font-size: 0.82rem;
	margin-top: 0.15rem;
	line-height: 1.45;
}

/* ── Location & Hours (_location.scss) ──────────────────── */

.location {
	background-color: #242424;
	padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
	.location {
		padding: 5rem 2rem;
	}
}

.location__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.location__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 600px) {
	.location__container {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.hours-heading {
	font-family: "Oswald", sans-serif;
	font-size: 1.15rem;
	color: #e09b00;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
	margin-top: 1.5rem;
}

.address-block {
	margin-bottom: 1.25rem;
}

.address-block strong {
	display: block;
	color: #e09b00;
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.25rem;
}

.address-block p {
	color: #a09890;
	line-height: 1.8;
}

.hours-list__item {
	display: flex;
	justify-content: space-between;
	padding: 0.6rem 0;
	border-bottom: 1px solid #3a3a3a;
	font-size: 0.95rem;
	gap: 1rem;
}

.hours-list__day {
	color: #c9a84c;
	font-weight: 600;
	white-space: nowrap;
}

.hours-list__time {
	color: #f0ece4;
	text-align: right;
}

.map-container {
	border: 2px solid #3a3a3a;
	overflow: hidden;
}

.map-container iframe {
	width: 100%;
	height: 380px;
	border: 0;
	display: block;
}

/* ── Footer (_footer.scss) ──────────────────────────────── */

.footer {
	background-color: #0d0d0d;
	border-top: 2px solid #cc1111;
	padding: 2.5rem 1.5rem;
	text-align: center;
}

.footer__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.footer__brand {
	font-family: "Oswald", sans-serif;
	font-size: 2rem;
	color: #cc1111;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.5rem;
}

.footer__address {
	color: #a09890;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}

.footer__hours {
	color: #a09890;
	font-size: 0.9rem;
}

.footer__copy {
	color: #3a3a3a;
	font-size: 0.78rem;
	margin-top: 1.25rem;
}
