/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root {
  --background-color: #0c0b09;
  --default-color: rgba(255, 255, 255, 0.7);
  --heading-color: #ffffff;
  --accent-color: #ba692e;
  --surface-color: #29261f;
  --contrast-color: #0c0b09;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #ba692e;
  --nav-mobile-background-color: #29261f;
  --nav-dropdown-background-color: #29261f;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #ba692e;
}

.light-background {
  --background-color: #29261f;
  --surface-color: #464135;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Feedback messages slide + fade in when JS reveals them (.d-block) */
.php-email-form .loading.d-block,
.php-email-form .sent-message.d-block,
.php-email-form .error-message.d-block {
  animation: php-email-form-feedback-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes php-email-form-feedback-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success/error messages fade out when they auto-dismiss (JS adds .is-hiding) */
.php-email-form .sent-message.is-hiding,
.php-email-form .error-message.is-hiding {
  animation: php-email-form-feedback-out 0.4s ease both;
}

@keyframes php-email-form-feedback-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* Invalid fields: red border until fixed, plus a one-shot shake from JS */
.php-email-form input:user-invalid,
.php-email-form textarea:user-invalid {
  border-color: #df1529 !important;
}

.php-email-form .field-shake {
  animation: php-email-form-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes php-email-form-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .php-email-form .loading.d-block,
  .php-email-form .sent-message.d-block,
  .php-email-form .error-message.d-block,
  .php-email-form .field-shake,
  .php-email-form .loading:before {
    animation: none;
  }
}

/* Wraps so long Mailchimp/Google messages never overflow */
.php-email-form .loading,
.php-email-form .sent-message,
.php-email-form .error-message {
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* Narrow footer column: tighter, centred, no crowding the copyright */
.footer .footer-newsletter .php-email-form .loading,
.footer .footer-newsletter .php-email-form .sent-message,
.footer .footer-newsletter .php-email-form .error-message {
  margin-top: 12px;
  margin-bottom: 0;
  padding: 12px 14px;
  font-size: 14px;
  text-align: center;
}

/* Pill has no inner border, so surface the invalid state on the pill itself */
.footer .footer-newsletter .newsletter-form:has(input:user-invalid) {
  border-color: #df1529;
}

.footer .footer-newsletter .newsletter-form:has(.field-shake) {
  animation: php-email-form-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.footer .footer-newsletter .newsletter-form input[type=email].field-shake {
  animation: none;
}

/* Phones: slightly tighter boxes so they read comfortably on small screens. */
@media (max-width: 575px) {
  .php-email-form .loading,
  .php-email-form .sent-message,
  .php-email-form .error-message {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(12, 11, 9, 0.61);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-color);
}

.header .topbar .languages ul a {
  color: var(--default-color);
}

.header .topbar .languages ul a:hover {
  color: var(--accent-color);
}

.header .topbar .languages ul li+li {
  padding-left: 10px;
}

.header .topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  content: "/";
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
  transition: 0.3s;
  border-bottom: 1px solid var(--background-color);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  width: auto;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 24px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .header .branding {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0c0b09;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 26px;
    line-height: 0;
    margin-right: 4px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  /* Hidden by default - becomes full-screen overlay when active */
  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    inset: 0;
    padding: 0;
    margin: 0;
    background-color: rgba(12, 11, 9, 0.97);
    overflow-y: auto;
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.75);
    padding: 14px 0;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  /* Hide any leftover dropdown chevron icons */
  .navmenu a i {
    display: none;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 30px;
    top: 18px;
    right: 18px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    z-index: 9997;
  }

  .mobile-nav-active .navmenu > ul {
    display: flex;
  }

  .navmenu ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navmenu ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* "Join Our Mailing List" - supplementary accent item (mobile/tablet) */
  .navmenu ul li.nav-mailing {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
  }

  .navmenu ul li.nav-mailing a {
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.75;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }

  .navmenu ul li.nav-mailing a::before {
    content: "\F32F";
    font-family: "bootstrap-icons";
    font-size: 14px;
  }

  .navmenu ul li.nav-mailing a:hover {
    opacity: 1;
    color: var(--accent-color);
  }
}

/* "Join Our Mailing List" - desktop nav (icon-only circle) */
@media (min-width: 1200px) {
  .navmenu ul li.nav-mailing {
    margin-left: 6px;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .navmenu ul li.nav-mailing a,
  .navmenu ul li.nav-mailing a:focus {
    padding: 3px 9px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    border-radius: 50px;
    color: var(--accent-color);
    opacity: 0.6;
    font-size: 9px;
    font-family: var(--nav-font);
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1.4;
    transition: opacity 0.2s, border-color 0.2s;
  }

  .navmenu ul li.nav-mailing a::before {
    content: "\F32F";
    font-family: "bootstrap-icons";
    font-size: 10px;
    line-height: 1;
  }

  .navmenu ul li.nav-mailing a:hover {
    opacity: 1;
    border-color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  width: auto;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--accent-color);
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 35%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
}

.hero h1 span,
.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 36px 0;
  font-size: 24px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
}

.hero .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.hero .cta-btn:first-child {
  margin-right: 10px;
}

.hero .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  .hero .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url("../img/copperhead_brewing_canada_craft_beer.webp") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 12%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .about-img {
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: 0.3s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

.why-us-outer {
  position: relative;
}

@media (max-width: 991px) {
  .why-us-swiper {
    overflow: hidden;
    padding-bottom: 32px !important;
  }

  .why-us-swiper .swiper-slide {
    height: auto;
  }

  /* Lighter, more compact card on mobile/tablet */
  .why-us-swiper .card-item {
    height: 100%;
    padding: 20px 20px;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 55%);
    border-radius: 0 6px 6px 0;
    box-shadow: none;
  }

  .why-us-swiper .card-item span {
    font-size: 18px;
    opacity: 0.5;
  }

  .why-us-swiper .card-item h4 {
    font-size: 16px;
    margin: 8px 0;
  }

  .why-us-swiper .card-item p {
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
  }

  /* Disable the hover fill effect inside the swiper */
  .why-us-swiper .card-item:hover {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 20px;
  }

  .why-us-swiper .card-item:hover span,
  .why-us-swiper .card-item:hover h4 a,
  .why-us-swiper .card-item:hover p {
    color: inherit;
  }

  .why-us-swiper .card-item:hover h4 a {
    color: var(--heading-color);
  }

  .why-us-pagination {
    bottom: 6px;
  }

  .why-us-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    opacity: 1;
  }

  .why-us-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
}

.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  color: var(--default-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu .menu-filters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
  position: relative;
}

.menu .menu-img {
  width: 80px;
  border-radius: 50%;
  float: left;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
  margin-left: 95px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content .menu-name {
  color: var(--heading-color);
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
}

.menu .menu-content > span:not(.menu-name) {
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  padding: 1px 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 6px;
}

.menu .menu-ingredients {
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 991px) {
  .menu .menu-img {
    float: none;
    display: block;
    margin: 0 0 12px 0;
    width: 64px;
  }

  .menu .menu-content,
  .menu .menu-ingredients {
    margin-left: 0;
  }

  .menu .menu-content {
    align-items: flex-start;
    gap: 8px;
  }

  .menu .menu-content .menu-name {
    flex: 1;
  }
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .vendor-list {
  margin-top: 10px;
  min-height: 34px;
}

/* Chips scroll rather than grow, so a widely-stocked beer can't outgrow its tab */
.specials .vendor-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  max-height: 136px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--accent-color), transparent 45%) transparent;
}

.specials .vendor-items li {
  font-family: var(--nav-font);
  font-size: 13px;
  line-height: 1;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--heading-color);
  white-space: nowrap;
}

.specials .vendor-empty {
  font-family: var(--default-font);
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  padding: 7px 0;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--heading-color);
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.specials .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.specials .details .fst-italic {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(10px, 3vw, 14px);
}

.specials .details p:last-child {
  margin-bottom: 0;
}

.specials .tab-content img {
  height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Beer swiper wrapper - positions arrows over the nav strip */
.beer-swiper-wrapper {
  position: relative;
}

.beer-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--accent-color);
  opacity: 0.5;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 4px 2px;
}

.beer-arrow:hover {
  opacity: 1;
}

.beer-arrow-left  { left: -4px; }
.beer-arrow-right { right: -4px; }

.beer-counter {
  display: none;
  position: absolute;
  top: -22px;
  right: 0;
  font-size: 11px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  letter-spacing: 0.5px;
  pointer-events: none;
}

@media (max-width: 992px) {
  .beer-arrow { display: flex; }
  .beer-counter { display: block; }

  /* Activated by JS - overrides Bootstrap's flex-column */
  .specials .nav-tabs.beer-swiper-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 8px;
    padding: 0 20px 8px;
    margin-bottom: 24px;
    border: 0;
  }

  .specials .nav-tabs.beer-swiper-nav::-webkit-scrollbar {
    display: none;
  }

  .specials .nav-tabs.beer-swiper-nav .beer-spacer {
    flex: 0 0 calc(33.333% - 4px);
    pointer-events: none;
    visibility: hidden;
    flex-shrink: 0;
  }

  .specials .nav-tabs.beer-swiper-nav li.nav-item {
    flex: 0 0 calc(33.333% - 4px);
    flex-shrink: 0;
    scroll-snap-align: center;
    opacity: 0.3;
    transform: scale(0.84);
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  }

  .specials .nav-tabs.beer-swiper-nav li.nav-item.beer-centered {
    opacity: 1;
    animation: beer-snap-in 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes beer-snap-in {
    0%   { transform: scale(0.84); }
    60%  { transform: scale(1.08); }
    100% { transform: scale(1.0); }
  }

  .specials .nav-tabs.beer-swiper-nav .nav-link {
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
    border-right: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
    border-radius: 8px;
    padding: 10px 4px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    height: 100%;
  }

  .specials .nav-tabs.beer-swiper-nav .nav-link.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color), transparent 40%);
  }

  .specials .tab-content img {
    height: 200px;
  }

  .specials .tab-pane .col-lg-4 {
    margin-bottom: 36px;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.events .slider-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.events:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.events .section-title h2 {
  color: #ffffff;
}

.events .container {
  position: relative;
  z-index: 3;
}

/* Matches .testimonial-item; stays opaque because a photo sits behind it */
.events .calendar-frame {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 6px 24px color-mix(in srgb, var(--background-color), transparent 60%);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* No lift on hover - the frame holds an iframe the user is aiming at */
@media (hover: hover) {
  .events .calendar-frame:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--background-color), transparent 30%);
  }
}

/* Cross-origin embed: invert darkens its white chrome, hue-rotate restores colour */
.events .calendar-frame iframe {
  display: block;
  width: 100%;
  height: 588px;
  margin-bottom: -58px;
  border: 0;
  border-radius: 4px;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85);
}

@media (max-width: 767.98px) {
  .events .calendar-frame iframe {
    height: 488px;
    margin-bottom: -30px;
  }
}

.events .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.events .event-item .price {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-wrapper {
  height: auto;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

/* Positioning context for the mobile arrows */
.testimonials-outer {
  position: relative;
}

.testimonials .swiper-slide {
  height: auto;
}

.testimonials .testimonial-item {
  box-sizing: border-box;
  position: relative;
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 26px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  box-shadow: 0 6px 24px color-mix(in srgb, var(--background-color), transparent 60%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Serif quote mark - the glyph sits high in the em box, hence the large size */
.testimonials .testimonial-item::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 16px;
  z-index: 0;
  font-family: var(--heading-font);
  font-size: 200px;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color), transparent 84%);
  pointer-events: none;
  transition: color 0.3s ease;
}

.testimonials .testimonial-item p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
  padding: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 2px 0;
  padding-top: 20px;
}

/* Short accent rule, mirroring the one in .section-title h2 */
.testimonials .testimonial-item h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--accent-color);
}

.testimonials .testimonial-item h4.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin: 6px 0 0 0;
}

.testimonials .testimonial-item h4.testimonial-source i {
  font-size: 12px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

@media (hover: hover) {
  .testimonials .testimonial-item:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--background-color), transparent 30%);
  }

  .testimonials .testimonial-item:hover::before {
    color: color-mix(in srgb, var(--accent-color), transparent 72%);
  }
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 24px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 4px;
  background-color: var(--accent-color);
}

/* Chevrons need extra weight once stretched, hence the thick stroke */
.testimonials-outer .beer-arrow {
  display: flex;
  opacity: 0.6;
}

/* Out-specifies .beer-arrow:hover, which would otherwise win on source order */
.testimonials-outer .beer-arrow:hover {
  opacity: 1;
}

/* Inline <i> needs display:block before the transform takes */
.testimonials-outer .beer-arrow i {
  display: block;
  transform: scaleY(2.6) scaleX(0.72);
}

/* Desktop has room to sit the chevrons in the gutter, clear of the cards */
@media (min-width: 992px) {
  .testimonials-outer .beer-arrow {
    font-size: 20px;
  }

  .testimonials-outer .beer-arrow-left {
    left: -10px;
  }

  .testimonials-outer .beer-arrow-right {
    right: -10px;
  }
}

@media (min-width: 1400px) {
  .testimonials-outer .beer-arrow-left {
    left: -38px;
  }

  .testimonials-outer .beer-arrow-right {
    right: -38px;
  }
}

/* Animated swipe affordance - mobile/tablet only */
.testimonials .swipe-hint {
  display: none;
}

@media (max-width: 991px) {
  .testimonials .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    font-family: var(--nav-font);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 55%);
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .testimonials .swipe-hint i {
    font-size: 13px;
    line-height: 1;
    color: var(--accent-color);
  }

  .testimonials .swipe-hint .bi-chevron-left {
    animation: swipe-nudge-left 1.8s ease-in-out infinite;
  }

  .testimonials .swipe-hint .bi-chevron-right {
    animation: swipe-nudge-right 1.8s ease-in-out infinite;
  }

  /* Set by testimonials-swiper.js once the user swipes */
  .testimonials .swipe-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes swipe-nudge-left {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50%      { transform: translateX(-5px); opacity: 1; }
}

@keyframes swipe-nudge-right {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50%      { transform: translateX(5px); opacity: 1; }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    min-height: 0;
    padding: 28px 22px 22px;
  }

  .testimonials .testimonial-item::before {
    font-size: 150px;
    top: -11px;
    left: 10px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
    line-height: 1.75;
  }

  .testimonials .testimonial-item h3 {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* Centred card leads; neighbours peek in */
@media (max-width: 767px) {
  .testimonials .swiper-slide .testimonial-item {
    opacity: 0.35;
    transform: scale(0.92);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  }

  .testimonials .swiper-slide-active .testimonial-item {
    opacity: 1;
    animation: testimonial-snap-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes testimonial-snap-in {
    0%   { transform: scale(0.92); }
    60%  { transform: scale(1.03); }
    100% { transform: scale(1); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials .swipe-hint i {
    animation: none;
    opacity: 0.9;
  }

  .testimonials .swiper-slide-active .testimonial-item {
    animation: none;
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  padding: 80px 0;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
}

.cta-subtext:last-of-type {
  margin-bottom: 36px;
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-card-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.cta-card-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.cta-card-btn--outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.cta-card-btn--outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-map-wrapper {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.82;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  height: 100%;
}

@media (min-width: 992px) {
  .contact-map-wrapper {
    margin-top: 40px;
    height: auto;
  }
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 260px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact-map-wrapper iframe {
    height: 100%;
    min-height: 260px;
    border: 0;
  }
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 15px;
  padding: 12px 16px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--heading-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--surface-color) 92%, white 8%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.contact .php-email-form button[type=submit] {
  color: var(--heading-color);
  background: none;
  border: 2px solid var(--accent-color);
  padding: 10px 40px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
  color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.contact .php-email-form button[type=submit]:active {
  transform: translateY(0) scale(0.97);
}

.contact .php-email-form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* iOS Safari zooms the page on focus below 16px - keep touch inputs at 16px */
@media (pointer: coarse) {
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea,
  .footer .footer-newsletter .newsletter-form input[type=email] {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Hero Banner Section
--------------------------------------------------------------*/

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-swiper .swiper-pagination {
  bottom: 20px;
  z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

#hero .container {
  position: relative;
  z-index: 2;
}
