@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Cabin:wght@400;500;600;700&display=swap');

:root {
  /* Semantic Design System Colors */
  --sundae-red: #A02D2D;        /* Primary branding, outer frames */
  --parlor-blue: #213164;       /* Card borders, step headings */
  --creamy-white: #FFFFFF;      /* Card backgrounds */
  --accent-blue: #2D5BA0;       /* Checkerboard pattern */
  --dark-text: #2C2C2C;         /* Body text */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  --primary-light: #FF9A9A;     /* Lighter red for dark backgrounds */

  /* Legacy aliases for backwards compatibility */
  --primary-color: var(--sundae-red);
  --secondary-color: #E6F4F1;   /* Light Pastel Blue - kept for transitions */
  --accent-color: var(--accent-blue);
  --dark-color: var(--dark-text);
  --light-color: var(--creamy-white);
  --text-color: var(--dark-text);
  --card-blue: #E6F4F1;         /* Deprecated - use --creamy-white */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cabin', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  min-height: 100vh;
}

/* Font Hierarchy - Matching Menu Card Aesthetic */
h1 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--sundae-red);
  line-height: 1.2;
}

h2 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--parlor-blue);
  line-height: 1.3;
}

h3 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--parlor-blue);
  line-height: 1.3;
}

h4 {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark-text);
  line-height: 1.4;
}

h5, h6 {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.4;
}

/* Navigation - Centered Logo */
nav {
  background: var(--light-color);
  padding: 2rem 0 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--sundae-red);
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

nav .logo {
  display: block;
  height: 140px;
  justify-self: center;
  transition: transform 0.3s;
}

nav .logo img {
  height: 100%;
  width: auto;
  display: block;
}

nav .logo:hover {
  transform: scale(1.05);
}

nav .nav-left {
  justify-self: end;
}

nav .nav-right {
  justify-self: start;
}

nav .nav-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--sundae-red);
  text-decoration: none;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 2rem;
  border: 3px dashed var(--sundae-red);
  border-radius: 15px;
  transition: all 0.3s ease;
}

nav .nav-link:hover {
  transform: scale(1.05);
  border-style: solid;
}

nav .nav-link.active {
  background: rgba(160, 45, 45, 0.1);
  border-style: solid;
}

nav .nav-link[href="/menu/"] {
  color: var(--parlor-blue);
  border-color: var(--parlor-blue);
}

nav .nav-link[href="/menu/"]:hover {
  border-style: solid;
}

nav .nav-link[href="/menu/"].active {
  background: rgba(33, 49, 100, 0.1);
  border-style: solid;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 0 0.75rem 0;
  }

  nav .container {
    padding: 0 1rem;
    gap: 1rem;
  }

  nav .logo {
    height: 240px;
  }

  nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }
}

.color-scheme-blue nav {
  border-bottom-color: var(--parlor-blue);
}

.color-scheme-blue .page-content-wrapper {
  border-color: var(--parlor-blue);
}

.color-scheme-blue .hero {
  background: var(--parlor-blue);
}

/* Color inversion on blue pages */
.color-scheme-blue h2 {
  color: var(--sundae-red);
}

.color-scheme-blue h3 {
  color: var(--sundae-red);
}

.color-scheme-blue .card {
  border-color: var(--parlor-blue);
}

.color-scheme-blue .price {
  color: var(--parlor-blue);
}

.color-scheme-blue .card-arrow {
  color: var(--parlor-blue);
}

.color-scheme-blue .contact-info-item {
  border-bottom-color: var(--parlor-blue);
}

.color-scheme-blue .gallery-item {
  border-color: var(--sundae-red);
}

/* Page Content Wrapper */
.page-content-wrapper {
  position: relative;
  background: var(--creamy-white);
  border: 8px solid var(--sundae-red);
  border-radius: 15px;
  margin: 2rem 2rem 0 2rem;
  max-width: 1200px;
  padding: 0;
}

@media (min-width: 1236px) {
  .page-content-wrapper {
    margin: 2rem auto 0 auto;
  }
}

/* Hero Section with Checkerboard Floor */
.hero {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-family: 'Cabin', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  color: white;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Cabin', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 0 #7A1F1F, 0 8px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #7A1F1F, 0 6px 10px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #7A1F1F, 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 2rem 0;
  margin: 0;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  /* Color inherited from h2 base style (navy blue) */
}

/* Content Width Utilities */
.content-narrow {
  max-width: 600px;
  margin: 0 auto;
}

.content-medium {
  max-width: 800px;
  margin: 0 auto;
}

.content-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Text Utilities */
.text-large {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--creamy-white);
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid var(--parlor-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Utilities */
.price {
  color: var(--sundae-red);
  font-weight: 800;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  font-family: 'Cabin', sans-serif;
  letter-spacing: 0.5px;
}

.sundae-card {
  text-align: center;
}

.card-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-family: 'Dancing Script', cursive;
  color: var(--parlor-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
}

/* Clickable Card Links */
.card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card-link h4 {
  color: var(--parlor-blue);
  margin-bottom: 0.5rem;
}

.card-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--sundae-red);
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.card-link:hover .card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Gallery Items */
.gallery-item {
  aspect-ratio: 1;
  background: var(--creamy-white);
  border: 3px solid var(--parlor-blue);
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.gallery-item img {
  display: block;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--parlor-blue);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  line-height: 1.5;
}

.form-group select {
  height: calc(1.5em + 0.8rem * 2 + 4px);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23213164' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
}

.custom-select select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.8rem;
  padding-right: 2.5rem;
  border: 2px solid var(--parlor-blue);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23213164' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  color: var(--dark-text);
  transition: border-radius 0.2s;
}

.custom-select.open .custom-select-trigger {
  border-radius: 8px 8px 0 0;
  border-bottom-color: transparent;
}

.custom-select-trigger.placeholder {
  color: #999;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--creamy-white);
  border: 2px solid var(--parlor-blue);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: none;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(33, 49, 100, 0.1);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: rgba(33, 49, 100, 0.05);
}

.custom-select-option.selected {
  background: rgba(33, 49, 100, 0.1);
  font-weight: 600;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.hidden {
  display: none;
}

/* Contact Info Items */
.contact-info-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed var(--sundae-red);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item h3 {
  margin-bottom: 0.5rem;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.hours-table td {
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table .day {
  font-weight: bold;
  color: var(--sundae-red);
  text-align: left;
}

.hours-table .time {
  color: var(--dark-text);
  text-align: right;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h3 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-section p {
  white-space: nowrap;
}

.footer-section:first-child p {
  white-space: normal;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table td {
  padding: 0.15rem 0;
  vertical-align: top;
}

.contact-table td:first-child {
  width: 20px;
  text-align: left;
  padding-right: 0;
}

.contact-table td:last-child {
  padding-left: 0;
}

@media (max-width: 768px) {
  .footer-section p {
    white-space: normal;
  }

  .footer-section p a {
    white-space: nowrap;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: background 0.3s;
  font-size: 1.5rem;
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  nav .container {
    gap: 1rem;
    padding: 0 0.5rem 6px 0.5rem;
  }

  nav .logo {
    height: 100px;
    margin-left: 0.5rem;
  }

  nav ul {
    gap: 0.15rem;
    margin: 0 0.5rem 0 0;
  }

  /* Mobile Icon Navigation */
  nav ul a {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    border-width: 4px;
    margin-bottom: 4px;
  }

  nav .container::after {
    height: 15px;
  }

  nav ul a.active {
    border-width: 4px;
    padding-bottom: calc(0.75rem + 15px);
    margin-bottom: 0;
  }

  nav ul a.active:hover {
    transform: none;
  }

  nav ul a .nav-text {
    display: none;
  }

  nav ul a i {
    font-size: 1.2rem;
    margin: 0;
  }

  .page-content-wrapper {
    border: none;
    margin: 0;
    border-radius: 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: 1.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 1rem 1.5rem 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .grid {
    gap: 1.5rem;
    grid-template-columns: 1fr !important;
  }

  footer {
    margin-top: 0.5rem;
  }
}

/* Image Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}

.modal-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 90%;
  max-height: 90vh;
}

.modal-content {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background-color: var(--sundae-red);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 10000;
  line-height: 1;
  border: 3px solid #fff;
}

.modal-close:hover,
.modal-close:focus {
  background-color: #C03D3D;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

#modalCaption {
  display: none;
}

.card-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(160, 45, 45, 0.3);
}

@media (max-width: 768px) {
  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: -12px;
    right: -12px;
  }

  .modal-image-wrapper {
    max-width: 95%;
  }
}

/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow);
  background-color: var(--dark-text);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  animation: kenburns 8s ease-in-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}


.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.8);
  transform: scale(1.1);
  z-index: 1;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.carousel-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(44, 44, 44, 0.8), transparent);
  padding: 1.5rem 2rem;
  color: white;
  text-align: center;
  z-index: 3;
}

.carousel-overlay-top h2 {
  color: white;
  margin: 0;
  font-size: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.9), transparent);
  padding: 2rem;
  color: white;
  text-align: center;
  z-index: 3;
}

.carousel-overlay p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.carousel-overlay .social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.carousel-overlay .social-links a {
  background: var(--sundae-red);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  white-space: nowrap;
  width: auto;
  height: auto;
  line-height: normal;
}

.carousel-overlay .social-links a:hover {
  background: #C03D3D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(160, 45, 45, 0.4);
}

/* Social Media Buttons (with text) */
.social-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-buttons a {
  background: var(--sundae-red);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.social-buttons a:hover {
  background: #C03D3D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(160, 45, 45, 0.4);
}

@media (max-width: 768px) {
  .carousel-container {
    height: 400px;
  }

  .carousel-overlay-top {
    padding: 1rem 1.5rem;
  }

  .carousel-overlay-top h2 {
    font-size: 1.5rem;
  }

  .carousel-overlay {
    padding: 1rem 1.5rem;
  }

  .carousel-overlay p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .carousel-overlay .social-links {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .carousel-overlay .social-links a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}

/* Menu Steps */
.menu-step {
  text-align: center;
}

.step-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--parlor-blue);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.step-question {
  font-family: 'Dancing Script', cursive;
  color: var(--parlor-blue);
}

.step-content {
  max-width: 800px;
  margin: 0 auto;
}

.menu-options {
  border: 3px dotted var(--parlor-blue);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  background: var(--creamy-white);
}

.menu-options p {
  margin: 0.75rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.menu-options strong {
  text-transform: uppercase;
  font-weight: 600;
}

.sundae-details {
  font-size: 0.95rem !important;
  font-style: italic;
  color: #666;
  margin-top: 0.5rem !important;
}

/* Specialty Sundaes List */
.sundae-list {
  max-width: 900px;
  margin: 0 auto;
}

.sundae-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.sundae-item:last-child {
  border-bottom: none;
}

.sundae-item h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--parlor-blue);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.sundae-item p {
  font-family: 'Cabin', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0.5rem 0;
}

.sundae-item .price {
  font-family: 'Cabin', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
}

.sundae-note {
  font-size: 0.9rem !important;
  font-style: italic;
  color: #666;
}

@media (max-width: 768px) {
  .step-title {
    font-size: 2rem;
  }

  .menu-options {
    padding: 1rem 1.5rem;
  }

  .menu-options p {
    font-size: 1rem;
  }

  .sundae-item h3 {
    font-size: 1.5rem;
  }

  .sundae-item p {
    font-size: 0.95rem;
  }
}
