/************************************************

Stylesheet: Global Stylesheet

*************************************************/
:root {
  --color-primary: #002a42;
  --color-secondary: #d6ad49;
  --color-accent: #fdf1c3;
  --color-light: #ffffff;
  --color-dark: #1a1a1a;
}


/*********************
HEADER STYLES
*********************/

/* === Custom Header Styling === */

.site-header {
  width: 100%;
  background: var(--color-primary);
  position: relative;
  z-index: 10;
  overflow: visible; /* lets the logo stick out */
  min-height: 98px;
}


.site-header::after {
  content: "";
  display: block;
  height: 25px;
  background: #d6ad49;
}

.header-inner {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding: 2.1rem 0;
  display: flex;
  justify-content: flex-end; /* push menu right */
  align-items: center;
}

.nav-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.nav-title img {
  height: 171px; /* or whatever height looks good */
}

.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu .active > a {
background: transparent;
color: #d6ad49 !important;   
  font-weight: bold;
}

.main-nav .menu li {
  display: inline-block;
}

.main-nav .menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.5rem;
}

.main-nav .menu li.cta a {
  background: #d6ad49; /* gold */
  border-radius: 4px;
  padding: 1rem 1rem;
  color: #002a42 !important;
}


/*********************
MOBILE MENU
*********************/
@media (min-width: 1201px) {
  .menu-close {
    display: none;
  }
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #d6ad49;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

/* Base menu styling */
.main-nav .menu {
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 1200px) {
 .site-header {
  width: 100%;
  background: #002a42;
  position: relative;
  z-index: 10;
  overflow: visible; /* lets the logo stick out */
  min-height: 50px;
}

.site-header::after {
	content: "";
  display: none;
  height: 25px;
  background: #d6ad49;
}

 .header-inner {
  max-width: 90%;
 }
  
 .nav-title img {
  height: 95px; /* or whatever height looks good */
}
 .menu-toggle {
    display: block;
    position: absolute;
    top: 1.1rem;
    right: 0;
  }

.main-nav .menu {
  position: fixed;
  top: 0;
  right: -100%; /* hidden by default */
  height: 100vh;
  width: 70vw;
  background: #d6ad49;
  color: #002a42;
  flex-direction: column;
  padding: 0rem;
  transition: right 0.3s ease-in-out;
  z-index: 9998;
  display: flex;
  text-align: right;
  border-left: 1px solid #002a42;
}

.main-nav .menu.active {
  right: 0;
}
.menu .active > a {
background: transparent;
color: #000 !important;   
  font-weight: bold;
    text-shadow: 0 0 8px rgba(214, 173, 73, 0.5);
}

  .main-nav .menu li {
    padding: 0;
	line-height: normal;
	text-align: center;
  }
.main-nav .menu li:not(.cta):not(.menu-header):not(:first-child)::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  margin: 1.7rem 0 1.2rem 0;
  background-color: #002a42;
}

  .main-nav .menu li:last-child {
    border-bottom: none;
  }

  .main-nav .menu a {
    color: #002a42;
	  padding: 0rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
  }

  .main-nav .menu.active {
    display: flex;
  }
.main-nav .menu li.cta a {
  background: #002a42;
  color: #d6ad49 !important;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: bold;
}


.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #002a42;
  color: #d6ad49;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 0 0 2px #d6ad49;
}
.main-nav .menu-header::after {
  display: none !important;
}

}


.button-secondary {
  background: var(--color-secondary);
  border-radius: 4px;
  padding: 1rem 1rem;
  color: #002a42 !important;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}


/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #14679e;
    color: #fefefe; }

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-right: -15px;
  margin-left: -15px; }

.gallery::before, .gallery::after {
  content: ' ';
  display: table; }

.gallery::after {
  clear: both; }

.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-1 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-2 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-3 > dl {
  width: 33.33333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-3 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-4 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-5 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-6 > dl {
  width: 16.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-6 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-7 > dl {
  width: 14.28571%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-7 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-8 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
    float: right; }

.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.gallery dl:last-child:not(:first-child) {
  float: right; }

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none; }

.widget ul {
  margin: 0; }


/*********************
VISUAL EDITOR STYLES
*********************/
body#tinymce {
  margin: 20px; }

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }

/*# sourceMappingURL=style.css.map */



/*********************
FOOTER
*********************/

footer.footer,
footer.footer .inner-footer,
footer.footer .grid-x,
footer.footer .cell {
background-color: #fdf1c3 !important;
}


.footer {
   padding: 2rem 1rem;
  color: #002a42;
  font-family: inherit;
}
.inner-footer {
  position: relative;
  max-width: 70%;
  margin: 0 auto;
  padding: 2.1rem 0;
  display: flex;
  align-items: center;
}
.footer p {
  margin: 0.5rem 0;
}

.footer .icon {
  width: 1.2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.footer-line {
display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer-line img.footer-icon {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0.8rem;
  
}

.footer-dog {
  max-height: 50px;
  margin-right: 1rem;
}

.footer-hygiene {
  max-height: 50px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #002a42;
  margin: 2rem auto;
  max-width: 98%;
}

.footer-bottom nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex-start;
  justify-content: center;
  gap: 3rem;
}

.footer-bottom nav ul li a {
  color: #002a42;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom nav ul li a:hover {
  text-decoration: underline;
}

.footer-icon {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Mobile styles */
@media (max-width: 1200px) {
	
	.footer {
    padding: 0;
  color: #002a42;
  font-family: inherit;
}
	.inner-footer {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}
  .footer-contact {
    	margin-top: 2rem;
  }


  .footer-right {
    text-align: center;
	margin-top: 2rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: left;
  }

  .footer-dog,
  .footer-hygiene {
    margin: 0 auto 2rem;
    display: block;
  }
    .footer-bottom p {
  font-size: 0.7rem;
  }
  .footer-bottom nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: left;
  gap: 0rem;
  font-size: 0.7rem;
  }
  
.footer-line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer-line img.footer-icon {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0.8rem;
  
}

.footer-line div {
  flex: 1;
  line-height: 1.4;
}

  
}
/*********************
STYLISH HEADING
*********************/
.stylish-heading {
	  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  margin: 2rem 0;
  font-size: 2rem;
  color: #002a42;
}

.stylish-heading::before,
.stylish-heading::after {
  content: "";
  flex: 1;
  height: 3px;
  background-color: currentColor;
  opacity: 0.7;
}

.stylish-heading::before {
  left: 0;
  margin-right: 1rem;
}

.stylish-heading::after {
  right: 0;
  margin-left: 1rem;
}

.rotate-90 {
  transform: rotate(-90deg);
}


/*********************
POLAROID CLASS
*********************/
.polaroid {
  width: max-content;
  padding: 10px 10px 25px 10px; /* extra padding on the bottom */
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: inline-block;
  text-align: center;
  font-family: 'Courier New', monospace;
  transform: rotate(-2deg); /* optional: gives a hand-placed vibe */
}

.polaroid img {
  display: block;
  max-width: 100%;
  height: auto;
}

.polaroid .caption {
  margin-top: 10px;
  font-size: 0.9em;
  color: #333;
}

/*********************
	POLAROID CLASS
*********************/
.opposite-polaroid {
  width: max-content;
  padding: 10px 10px 25px 10px; /* extra padding on the bottom */
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: inline-block;
  text-align: center;
  font-family: 'Courier New', monospace;
  transform: rotate(2deg); /* optional: gives a hand-placed vibe */
}

.opposite-polaroid img {
  display: block;
  max-width: 100%;
  height: auto;
}

.opposite-polaroid .caption {
  margin-top: 10px;
  font-size: 0.9em;
  color: #333;
}

/*********************
	MINI POLAROID CLASS
*********************/
.mini-polaroid {
  padding: 10px 10px 25px 10px; /* extra padding on the bottom */
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: inline-block;
  text-align: center;
  font-family: 'Courier New', monospace;
  transform: rotate(-2deg); /* optional: gives a hand-placed vibe */
}

.polaroid img {
  display: block;
  height: auto;
}

.polaroid .caption {
  margin-top: 10px;
  font-size: 0.9em;
  color: #333;
}

.mini-polaroid:nth-of-type(even) {
  transform: rotate(2deg);
}

/*********************
PRICE TABLE
*********************/

.price-table {
  width: 60%;
  max-width: 500px;
  border-collapse: collapse;
  background-color: #003350;
  color: #003350;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
}

.price-table td {
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

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

.price-table td:first-child {
  text-align: left;
  padding-left: 2%;
  font-weight: 500;
}

.price-table td:last-child {
  text-align: right;
  padding-right: 2%;
  font-weight: 600;
  color: #1e3a8a;
}
.price-table tr:nth-child(even),
.price-table tr:nth-of-type(even),
.price-table tr:nth-child(odd),
.price-table tr:nth-of-type(odd) {
  background: none !important;
  background-color: transparent !important;
}
.price-table,
.price-table td,
.price-table tr {
  background: none !important;
  background-color: transparent !important;
}
iframe {
  display: block;
}
.fb-iframe-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4 / 3; /* or use padding-bottom trick if older browsers */
  margin: 0 auto;
}

.fb-iframe-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}


/*********************
Bootstrap Icons
*********************/

.icon-with-text i {
	color: var(--color-primary);
  display: block;
  margin-bottom: 0.4rem;
}
.icon-with-text p {
  font-weight: bold;
  font-family: 'Work Sans', sans-serif;
  margin: 0;
}
.icon-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}

.icon-item {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

.icon-item i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .icon-item {
    flex: 1 1 100%;
  }
}


/*********************
Default Styles
*********************/

h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 7rem;
  text-transform: uppercase;
  color: white;
  border: 2px solid currentColor;
  padding: 1rem 4rem;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.05em;
}

h2 {
	font-family: 'Outfit', sans-serif;
	color: var(--color-secondary);
}
h3 {
	font-family: 'Pacifico', sans-serif;
	color: var(--color-secondary);
	font-size: 2.5rem;
}
h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-top: 1rem;
}

h5 {
  font-family: 'Dancing Script', cursive; /* or whatever matches your look */
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

p {
	font-family: 'Work Sans', sans-serif !important;
}
li {
	font-family: 'Work Sans', sans-serif;
}

.menu-heading {
  display: inline-block;
  background-color: #2b2b2b; 
  color: #fff;
  font-family: 'Permanent Marker', cursive; 
  font-size: 2.4rem;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.4);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  text-align: center;
  border: 2px dashed #fff;
  text-shadow: 1px 1px 1px rgba(255,255,255,0.1);
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 1px, transparent 1px),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 8px 8px;
}
.menu-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 10%;
  width: 80%;
  height: 10px;
  background: rgba(255,255,255,0.15);
  filter: blur(3px);
  transform: rotate(-1deg);
}

.menu-section {
  background-color: #1f1f1f;
  background-image: url('/path/to/chalk-smear.png');
  background-size: cover;
  padding: 2rem;
}
.rotate-90 {
  transform: rotate(-90deg);
}

.wave-divider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.wave-divider::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 50' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 C150,50 350,0 500,50 L500,00 L0,0 Z' fill='%23d9d6c9' /%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;

}
.bg-textured {
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  background-repeat: repeat;
  background-size: auto;
}
.bg-concrete {
  background-image: url('/wp-content/themes/butchers-arms/assets/textures/concrete-wall.png');
  background-repeat: repeat;
  background-size: auto;
}
.bg-cubes {
  background-image: url('/wp-content/themes/butchers-arms/assets/textures/cubes.png');
  background-repeat: repeat;
  background-size: auto;
}
.bg-arches {
  background-image: url('/wp-content/themes/butchers-arms/assets/textures/arches.png');
  background-repeat: repeat;
  background-size: auto;
}
.bg-circles {
  background-image: url('/wp-content/themes/butchers-arms/assets/textures/stacked-circles.png');
  background-repeat: repeat;
  background-size: auto;
}


/* === ✨ Fancy Booking Form Overrides === */

.rtb-booking-form {
	background: #fff;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	max-width: 1200px;
	margin: 3rem auto;
	font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.rtb-booking-form h2,
.rtb-booking-form legend {
	font-size: 1.6rem;
	color: #333;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.rtb-booking-form label {
	font-weight: 600;
	color: #222;
	margin-bottom: 0.25rem;
	display: block;
}

.rtb-booking-form input[type="text"],
.rtb-booking-form input[type="email"],
.rtb-booking-form input[type="tel"],
.rtb-booking-form input[type="number"],
.rtb-booking-form input[type="date"],,
.rtb-booking-form textarea {
	width: 100%;
	padding: 12px;
	margin-top: 4px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	transition: border 0.3s, box-shadow 0.3s;
}

.rtb-booking-form input:focus,
.rtb-booking-form textarea:focus,
.rtb-booking-form select:focus {
	border-color: #5e72e4;
	box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.2);
	outline: none;
}

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

.rtb-booking-form button,
.rtb-booking-form input[type="submit"] {
  background: var(--color-secondary);
  border-radius: 4px;
  padding: 1rem 1rem;
  color: #002a42 !important;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
	transition: background 0.3s, transform 0.2s;
}

.rtb-booking-form button:hover,
.rtb-booking-form input[type="submit"]:hover {
	background: #324cdd;
	transform: scale(1.02);
}

.rtb-booking-form .rtb-error {
	background: #e63946;
	padding: 0.5rem;
	border-radius: 4px;
	font-weight: bold;
	margin-top: 0.5rem;
}

.rtb-booking-form .add-message label {
	margin-top: 1.5rem;
	display: block;
}

.rtb-booking-form .add-message textarea {
	background: #fdfdfd;
}

.rtb-booking-form .message {
	margin-top: 1rem;
	font-size: 0.95rem;
	color: #555;
}

/* Calendar cell colour enhancements */
.booking-calendar td.green {
	background: #d4edda !important;
	color: #155724;
	font-weight: bold;
}

.booking-calendar td.amber {
	background: #fff3cd !important;
	color: #856404;
	font-weight: bold;
}

.booking-calendar td.red {
	background: #f8d7da !important;
	color: #721c24;
	font-weight: bold;
}
.rtb-booking-form select {
	width: 30%;
	/*padding: 0.5rem 0.75rem;*/
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
	line-height: 1.4;
	height: auto;
}

/* Align labels and inputs on a clean grid */
.rtb-booking-form fieldset > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Center the whole form structure more harmoniously */
.rtb-booking-form legend {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	width: 100%;
}

.rtb-booking-form input,
.rtb-booking-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.5rem 0.75rem;
	box-sizing: border-box;
}

/* Button centering */
.rtb-booking-form button {
	margin: 2rem auto 0;
	display: block;
}
