@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&display=swap');

:root {
  --primary-red: #d62828;
  --secondary-gold: #fcbf49;
  --bg-light: #fffaf2;
  --text-dark: #333;
  --accent-gray: #f5f5f5;
}

/* ===== Base Styles ===== */
body {
  font-family: Arial, sans-serif;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-dark);
  margin: 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}

h4.menu-section-title {
  color: var(--primary-red);
  background-color: var(--accent-gray);
  padding: 10px 15px;
  border-left: 8px solid var(--secondary-gold);
  border-radius: 6px;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 15px;
  margin-bottom: 10px;
}



/* ===== Menu Container ===== */
#menu-content {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

/* ===== Logo Circle ===== */
.menu-logo {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid var(--primary-red);
  margin-bottom: 20px;
}

.menu-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

/* ===== Pricing Table Header ===== */
.row.fw-semibold {
  background-color: rgba(252, 191, 73, 0.2); /* subtle gold tint */
  color: #000;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 4px;
  margin: 0;
}

/* ===== Pricing Rows (Subtle Alternating Backgrounds) ===== */
.row.mb-1 {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.row.mb-1:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.015); /* very subtle light gray */
}

.row.mb-1:nth-child(odd) {
  background-color: transparent;
}

/* ===== Column Text Sizing ===== */
.col-6,
.col-3 {
  font-size: 15px;
}

/* ===== Footer ===== */
footer {
  background-color: var(--primary-red);
  color: #fff;
}

footer a:hover,
header a:hover {
  color: #fff !important;
}

