/* === Base Reset === */
html {
  box-sizing: border-box;
  word-wrap: break-word;
}

*,
::before,
::after {
  box-sizing: inherit;
  word-wrap: inherit;
}

body,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
p,
td,
textarea {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: #eeece7;
  background-image: url(../onewebstatic/c32f02f2d6.gif);
  background-repeat: repeat;
  background-position: 0% 0%;
  background-size: auto;
  background-attachment: scroll;
}

/* === Layout Container === */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fefdfc;
}

/* === Typography === */
h1,
h2,
h3 {
  margin: 0.5em 0;
  color: #444;
  font-family: "Times New Roman", Times, serif;
}

h1 {
  font-family: "Petit Formal Script", cursive;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
}

h2 {
  font-family: "Petit Formal Script", cursive;
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
}

.plain-font {
  font-family: Arial, Helvetica, sans-serif !important;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1em;
  text-align: center;
}

ul li {
  margin: 0.5em 0;
  font-size: 1.125rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* === Footer === */
footer {
  text-align: center;
  margin-top: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #444;
}

/* === Responsive Typography === */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
  ul li {
    font-size: 1.125rem;
  }

  p {
    font-size: 1rem;
  }
}

header img {
  margin-top: 0;
  padding-top: 0;
}

/* === Header === */
.site-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 1300px;
  background-color: #fefdfc;
  margin: 0 auto;
  padding-bottom: 20px;
}

.site-header h2 {
  font-size: 1.25rem;
  color: #444;
}

/* === Desktop Menu (Styled like the original) === */
.desktop-menu {
  max-width: 1300px;
  margin: 2rem auto;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Top-level container */
.desktop-menu .menu-root {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #eeeeee; /* Light grey bar */
}

/* Top-level item */
.desktop-menu .menu-root > li > a {
  display: block;
  padding: 1rem;
  background-color: #eeeeee;
  color: #444;
  text-decoration: none;
  font-weight: bold;
  font-family: "Times New Roman", Times, serif !important;
}

/* Selected top-level item */
.desktop-menu .menu-root > li > a.selected {
  background-color: #eeeeee;
}

/* Submenu */
.desktop-menu .menu-root > li > ul {
  background-color: #fff;
  padding: 0;
  margin: 0;
  /* border: 1px solid #ddd; */
}

/* Submenu items */
.desktop-menu .menu-root > li > ul > li {
  padding: 0;
  margin: 0;
}

.desktop-menu .menu-root > li > ul > li a {
  display: block;
  padding: 0.75rem 2.5rem;
  color: #444;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-family: "Times New Roman", Times, serif !important;
}

.desktop-menu .menu-root > li > ul > li a:hover {
  background-color: #f0f0f0;
  color: #222;
}

.desktop-menu .menu-root > li > ul > li a.selected {
  background-color: #f0f0f0;
  color: #222;
}

/* === Mobile Menu Visibility === */
.mobile-menu,
.desktop-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-header {
    display: block;
  }

  .desktop-menu {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }

  .desktop-menu {
    display: block;
  }
}

/* === Mobile Header + Burger === */
.mobile-header {
  background-color: #fefdfc;
  border-bottom: 1px solid #ccc;
}

.mobile-header-bar {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header-title {
  font-family: "Times New Roman", serif;
  font-size: 1.25rem;
  color: #444;
}

.burger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #444;
  border-radius: 2px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === Mobile Nav === */
.mobile-nav {
  background-color: #fefdfc;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  /* border-top: 1px solid #eee; */
  visibility: hidden;
  opacity: 0;
}

.mobile-nav.open {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  border-bottom: 1px solid #eee;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #444;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:focus {
  background-color: #f0eae1;
  color: #222;
}

/* === Footer === */

footer {
  padding: 1rem 0;
  text-align: center;
  font-family: "Times New Roman", serif;
  font-size: 0.8rem;
  color: #444;
  max-width: 1300px;
  margin: 20px auto;
}

/* === Main === */
main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fefdfc;
}

.opening-hours li {
  text-align: center;
}

img.full-width {
  width: 100%;
  height: auto;
}

main section {
  margin-bottom: 3rem;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.price-table {
  margin: 2rem auto;
  border-collapse: collapse;
  width: 80%;
  max-width: 600px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  background-color: #fefdfc;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  font-size: 1rem;
}

.price-table thead {
  background-color: #f0eae1;
}

.price-table th {
  font-weight: bold;
}

.terms-list {
  list-style-type: disc;
  margin-left: 20px;
}

.terms-list li {
  font-size: 0.9rem;
}
