body {
  font-family: 'Georgia', serif;
  background-color: #fff8f0;
  color: #4a2c2a;
  margin: 0;
  padding: 0;
}

header {
  background-color: #7a3f3f;
  padding: 1em;
  text-align: center;
}

.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.logo {
  height: 60px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: 2em auto;
  padding: 1em;
  background-color: #fffdf8;
  border: 2px solid #d7b48c;
  border-radius: 10px;
  text-align: center;
}

.home-content p {
  font-size: 1.1em;
  margin-bottom: 1em;
}

.order-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #7a3f3f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1em;
}

footer {
  margin-top: 2em;
  font-size: 0.9em;
  color: #999;
}

/* Order Form Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header img {
  height: 80px;
}

h1 {
  font-family: 'Brush Script MT', cursive;
  font-size: 2.6em;
  text-align: center;
  font-weight: normal;
  flex: 1;
}

.section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.col {
  width: 48%;
}

label, p {
  margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
}

input[type="number"] {
  max-width: 120px;
}

.form-block {
  margin-top: 10px;
}

.form-block p {
  margin: 8px 0;
}

.total {
  font-size: 1.2em;
  margin-top: 15px;
  font-weight: bold;
}

.total-block {
  margin-top: 10px;
}

.note {
  margin-top: 20px;
  font-size: 0.95em;
}

.note li + li {
  margin-top: 15px;
}

.warning {
  color: #b22222;
  font-weight: bold;
  margin-top: 15px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 10px;
}

.wide-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.wide-section .col {
  flex: 1;
  min-width: 300px;
}

/* Ensure proper alignment for large loaf input and checkbox */
label {
  display: flex;
  align-items: center;
  gap: 10px;
}