body {
	margin: 0;
}

h1,h2,h3,h4 {
  font-family: "Paytone One", serif;
  font-weight: 400;
  font-style: normal;
}

nav {
	background: #000;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 530px) {
	nav {
		flex-direction: column;	
		ul {justify-content: center;}
		img {margin: auto;}
	}
}

nav ul {
	display: flex;
}

nav li {
	color: #fff;
	margin: 18px;
	list-style-type: none;
	height: 25px;
}

nav a {
	text-decoration: none;
	color: #fff;
	font-family: "Paytone One", serif;
}
.nav-logo {
	height: auto;
	width: 150px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* animate to X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: #111;
    padding: 1rem 0;
    z-index: 999;
    border-top: 3px solid rgb(213, 99, 57);
    margin: 0;                /* removes any default ul margin pushing it wide */
    padding-left: 0;          /* removes default ul padding */
    list-style: none;
  }

 nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
    box-sizing: border-box;
  }

  nav ul li a {
    display: block;
    padding: 0.85rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  nav ul li a:hover {
    background: rgba(213, 99, 57, 0.15);
  }

  nav ul li.order {
  	background: none;
          /* remove the padding causing the gap */
  }

  nav ul li.order a {
    color: rgb(213,99,57) !important;
    padding: 0.85rem 1.5rem;
  }

}


.order {
	background: #fff;
	border-radius: 10px;
}

.order 	a {
		color: #000 !important;
		padding: 10px;
}

main {
	background-image: linear-gradient(0deg, rgba(213, 99, 57, 0.75), rgba(213, 99, 57,  0.9)), url("images/Orange-Donuts.png");
	background-size: cover;
	padding: 10px;
}

#jobs {
	width: 100%;
}
.section1 {
	display: flex;
	flex-direction: row;
	background-size: contain;
}

@media screen and (max-width: 930px) {
	.section1 h1 {
		font-size: 50px;
	}
}
@media screen and (max-width: 600px) {
	.section1 {
		flex-direction: column-reverse;
		align-items: center;
	}
	.section1 h1 {
			width: 100%;
			text-align: center;
			font-size: 35px;
		}
	.section1 img {
			width: 100%;
		}
}
.section1 img {
	width: 50%;
}

.section1 > * {
	width: 50%;
}
.section1-text {
	font-weight: bolder;
	font-size: 80px;
/*	text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;*/

}

.questions a {
	color: #fff;
}
.section2 {
	background-size: contain;
}

.locations {
	display: flex;
	flex-direction: row;
	background: #000;
	border-radius: 25px;
	padding: 20px;
	justify-content: center;
}

label {
	font-family: "Paytone One", serif;
	font-size: 35px;
	color: #fff;
}

.locations-left {
	display: flex;
	flex-direction: column;
	width: 38%;
}

.locations-right {
	display: flex;
	flex-direction: column;
	width: 50%;
}
.locations-left .label {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}

.locations-left .label:hover {
  background: rgb(213, 99, 57);
  color: #fff;
}

.locations-left .label.active {
  background: #fff;
  color: #000;
}
@media screen and (max-width: 930px) {
	.locations{
	flex-direction: column;
	}
	.locations-left {
		width: 100%;
	}

	.locations-left .label {
		font-size: 18px;
	}
	.locations-right {
		width: 100%;
	}
}

.locations span {
	color: #000;
	text-decoration: underline;
}
.location-tab {
	color: rgb(213,99,57);
	font-family: "Paytone One", serif;
	font-size: 25px;
	background: white;
	border-radius: 20px;
	padding: 14px;
	border: 4px solid rgb(213,99,57);
	text-align: center;
	margin: 0 17px;
}
@media screen and (max-width: 600px) {
	.location-tab {
		font-size: 18px;
	}
}
.section2 input
{
    position: absolute;
    right: 100%;
}

input:checked + .location-tab {
    display: block;
}

.location-tab {
    display: none;
}

/* === Mr. Maple Donuts Form Style === */

form {
  background-color: rgb(213,99,57);
  border: 1px solid #000;
  border-radius: 12px;
  padding: 2rem;
  max-width: 520px;
  margin: 2rem auto;
  box-shadow: 0 4px 16px rgba(90, 50, 10, 0.08);
}

form label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 0.3rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #d4a96a;
  border-radius: 8px;
  background-color: #fffdf9;
  color: #3b2a1a;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  margin-bottom: 1.2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #b5722a;
  box-shadow: 0 0 0 3px rgba(181, 114, 42, 0.15);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button[type="submit"] {
  background-color: rgb(213,99,57);
  color: #fff;
  border: #000 solid 1px;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s, transform 0.1s;
}

form button[type="submit"]:hover {
  background-color: #fff;
  color: #000;
}

form button[type="submit"]:active {
  transform: scale(0.98);
}

/*donations*/
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --brand: rgb(213, 99, 57);
      --brand-dark: rgb(175, 74, 34);
      --brand-light: rgb(245, 178, 148);
      --black: #111;
      --white: #fff;
      --off-white: #fafafa;
      --border: #ddd;
      --muted: #555;
    }

/* ── INFO STRIP ── */
    .info-strip {
      background: var(--brand);
      padding: 2.5rem 1.5rem;
    }

    .info-strip-inner {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .info-card {
      background: var(--white);
      border-radius: 10px;
      padding: 1.5rem 1.75rem;
      border-top: 4px solid var(--black);
    }

    .info-card h3 {
      font-family: 'Paytone One', sans-serif;
      font-size: 1rem;
      color: var(--brand);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .info-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .info-card ul li {
      font-size: 0.92rem;
      color: var(--black);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .info-card ul li::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--brand);
      flex-shrink: 0;
    }

    /* ── FORM SECTION ── */
    .form-section {
      max-width: 760px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
    }

    .section-divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .section-divider::before,
    .section-divider::after {
      content: '';
      flex: 1;
      height: 2px;
      background: var(--brand);
    }

    .section-divider span {
      font-family: 'Paytone One', sans-serif;
      font-size: 1.4rem;
      color: var(--black);
      white-space: nowrap;
    }

    /* note box */
    .note-box {
      background: #fff8f0;
      border: 2px dashed var(--brand);
      border-radius: 10px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
    }

    .note-box strong {
      display: block;
      font-family: 'Paytone One', sans-serif;
      font-size: 0.9rem;
      color: var(--brand);
      margin-bottom: 0.4rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .note-box p {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* fieldset */
    .form-group-heading {
      font-family: 'Paytone One', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--brand);
      border-bottom: 2px solid var(--brand);
      padding-bottom: 0.4rem;
      margin-bottom: 1.5rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem 1.5rem;
      margin-bottom: 1.25rem;
    }

    .form-grid .full { grid-column: 1 / -1; }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .donations-page label {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--black);
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
      width: 100%;
      padding: 0.65rem 0.9rem;
      border: 2px solid var(--border);
      border-radius: 7px;
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      color: var(--black);
      background: var(--white);
      transition: border-color 0.18s, box-shadow 0.18s;
      appearance: none;
      -webkit-appearance: none;
    }

    input:focus, textarea:focus, select:focus {
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(213,99,57,0.15);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* radio group */
    .radio-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.1rem;
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .radio-option input[type="radio"] {
      width: 17px; height: 17px;
      accent-color: var(--brand);
      cursor: pointer;
      flex-shrink: 0;
    }

    .radio-option label {
      font-size: 0.88rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      cursor: pointer;
      color: var(--black);
    }

    /* divider between fieldsets */
    .fields-divider {
      border: none;
      border-top: 1.5px solid var(--border);
      margin: 2rem 0;
    }

    /* submit */
    .submit-wrap {
      text-align: center;
      margin-top: 2.25rem;
    }

    .submit-btn {
      background: var(--brand);
      color: var(--white);
      border: none;
      border-radius: 9px;
      padding: 1rem 3rem;
      font-family: 'Paytone One', sans-serif;
      font-size: 1.15rem;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: background 0.18s, transform 0.1s;
      display: inline-block;
    }

    .submit-btn:hover { background: var(--brand-dark); }
    .submit-btn:active { transform: scale(0.98); }

    /* Wrap your select in this div in your HTML */
    .select-wrap {
      position: relative;
    }

    .select-wrap select {
      width: 100%;
      padding: 0.65rem 2.8rem 0.65rem 0.9rem; /* extra right padding for the chevron */
      border: 2px solid #d4a96a;
      border-radius: 8px;
      background: #fffdf9;
      color: #3b2a1a;
      font-size: 1rem;
      font-family: Georgia, serif;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      box-sizing: border-box;
    }

    .select-wrap select:focus {
      outline: none;
      border-color: rgb(213, 99, 57);
      box-shadow: 0 0 0 3px rgba(213, 99, 57, 0.15);
    }

    /* The orange chevron badge */
    .select-chevron {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #111;
      border-radius: 0 7px 7px 0;
      pointer-events: none;
      margin-bottom: 19.200px;

    }

    .select-chevron svg {
      width: 14px;
      height: 14px;
    }
/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
footer {
  background: #111;
  font-family: 'Lato', Georgia, sans-serif;
}

.footer-top-bar {
  background: rgb(213, 99, 57);
  height: 4px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.footer-brand {
  flex: 1 1 180px;
}

.footer-logo {
  width: 110px;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Paytone One', sans-serif;
  font-size: 0.85rem;
  color: rgb(213, 99, 57);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-family: 'Paytone One', sans-serif;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: rgb(213, 99, 57);
  color: rgb(213, 99, 57);
}

.footer-links {
  flex: 1 1 140px;
}

.footer-links h4 {
  font-family: 'Paytone One', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(213, 99, 57);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links ul li a:hover {
  color: rgb(213, 99, 57);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p,
.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== FLOATING ORDER BUTTON ===== */
.fab-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  gap: 0;
  animation: fab-bounce 2.5s ease-in-out infinite;
}

.fab-wrap:hover {
  animation: none;
  transform: scale(1.04);
}

@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.fab-character {
  height: 90px;
  width: auto;
  mix-blend-mode: screen;
  position: relative;
  z-index: 2;
  margin-right: -12px; /* tuck slightly behind button */
  pointer-events: none;
}

.fab-order {
  display: flex;
  align-items: center;
  background: rgb(213, 99, 57);
  border: 3px solid #111;
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.18s;
  position: relative;
  z-index: 1;
}

.fab-order:hover {
  background: rgb(175, 74, 34);
}

.fab-text {
  display: flex;
  flex-direction: column;
}

.fab-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fab-label {
  font-family: 'Paytone One', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1;
}

@media (max-width: 480px) {
  .fab-character { height: 70px; }
  .fab-label { font-size: 14px; }
}