@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

/* === Base === */
body {
  font-family: 'lato';
  background: #f9f9f9 !important;
  color: #222 !important;
  line-height: 1.6 !important;
  scroll-behavior: smooth !important;
}
a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color .3s ease, text-decoration .3s ease !important;
}
a:hover {
  color: #a3792f !important;
}
a:focus-visible {
  outline: 2px solid #000  !important;
  outline-offset: 3px !important;
}

/* === Gallery === */
.rpwb_photo_gallery {
  background: transparent;
  text-align: center;
}

/* === Skip link === */
.skip_to_main_content {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000 !important;
  color: #fff !important;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  z-index: 9999 !important;
  transform: translateY(-150%) !important;
  transition: transform .3s ease !important;
}
.skip_to_main_content:focus-within {
  transform: translateY(0) !important;
}

/* === Fade-in keyframes === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Hero heading & animated lines === */
.hero-heading {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
}
.hero-heading .line-1,
.hero-heading .line-2,
.hero-heading .line-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  display: block;
}
.hero-heading .line-1 { animation-delay: 0s; }
.hero-heading .line-2 { animation-delay: 0.5s; }
.hero-heading .line-3 { animation-delay: 1s; }

.hero-heading h1 {
  color: #fff !important;
  font: 800 clamp(1.8rem, 6vw, 2.8rem)/1 'Quicksand', sans-serif !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-shadow: 2px 2px 4px #a3792f !important;
  margin: 0 auto 12px !important;
}

.hero-intro {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 4px;
  text-shadow: 1px 1px 2px #a3792f;
  animation: fadeInUp 1s .3s ease-out both;
  line-height: 1.2;
}
.hero-tagline {
  display: flex;
  justify-content: center;
  padding: 20px 0;
min-height: 80px;
}
.hero-tagline {
  text-align: center;
  margin: 30px auto;
  padding: 0 20px;
  max-width: 900px;
}

.hero-tagline h2 {
  font-family: 'Quicksand', sans-serif !important;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  font-weight: 600 !important;
  color: #2f5132 !important; /* deep Irish green */
  line-height: 1.5 !important;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(163, 121, 47, 0.1); /* subtle gold shadow */
}
/* === Hero image overlay & text === */
.foreground-photo {
  position: relative;
  margin: 0 auto !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  line-height: 0 !important;
  max-width: 100vw !important;
  overflow: hidden !important;
aspect-ratio: 16 / 9;
}

.foreground-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.foreground-photo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border: none !important;
  margin: 0 auto !important;
}

.foreground-text {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 8vw, 90px);
  color: #a3792f !important;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

/* === Page Content H1 === */
.website-content h1 {
  font: 800 2.2rem/1 'Quicksand', sans-serif !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  background: linear-gradient(to right, #a3792f, #c59c49) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #a3792f; /* fallback */
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.website-content h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #c59c49;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* === Layout & Shell === */
.website-container {
  max-width: 100% !important;
}
.website-content {
  max-width: 1200px !important;
  margin: 12px auto !important;
  padding: 20px !important;
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05) !important;
}
.website-background {
  display: none !important;
}
.website-horizontal-navigation {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  background: #e8e8e8 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1) !important;
}

/* === Logo === */
.website-container-logo {
  margin-top: -45px !important;
}
.website-logo-link {
  display: block !important;
  max-width: 250px !important;
  margin: 0 auto !important;
  padding: 10px !important;
  border-radius: 8px !important;
  background: none !important;
  text-align: center !important;
  transition: transform .3s ease !important;
}
.website-logo-link:hover {
  transform: scale(1.08) !important;
}
.website-logo-link img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* === Navigation Bar === */
.website-navigation {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 5px !important;
  justify-content: center !important;
  padding: 10px 0 !important;
  align-items: center !important;
}
.website-navigation li {
  display: inline-block !important;
  margin: 0 !important;
}
.website-navigation li a {
  color: #000 !important;
  padding: 8px 12px !important;
  font-size: 15px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: color .3s ease, text-decoration .3s ease !important;
font-weight: 600;
}
.website-navigation li a:hover {
  color: #7a5e20 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* === Sub-nav group === */
.website-navigation-group {
  background: #91a3bd;
  color: #000 !important;
  padding: 6px 8px !important;
  display: flex !important;
  gap: 0 !important;
}
.website-navigation-group a {
  color: #000 !important;
  padding: 4px 15px !important;
  border-right: 0px solid #000 !important;
font-size: 14px;
}
.website-navigation-group a:last-child {
  border-right: none !important;
}
.website-navigation-group a:hover {
  color: #000 !important;
}
.website-navigation-group a:focus {
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
}

/* === CTA Button  === */
.website-navigation-button {
  background: #C69239 !important;
  color: #000 !important;
  padding: 8px 16px !important;
  margin-right: 16px !important;
  border-radius: 6px !important;
  font-weight: bold !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15) !important;
  transition: box-shadow .3s ease !important;
}
.website-navigation-button:hover {
  background: #b08a3e !important;
  box-shadow: 0 0 10px rgba(163, 121, 47, .5) !important;
}
.website-navigation-button a {
  color: #000 !important;
}

/* === Section Headings === */
.content_list_category h2 {
  background: #a3792f !important;
  color: #000 !important;
  padding: 8px !important;
  border-radius: 4px !important;
}
.menu_system_links {
  background: #2f5132;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

/* === Footer === */
#website-footer {
  background: #c1c4c8 !important;
  color: #000 !important;
border-top: 2px solid #878787 !important;
z-index: 1000;
}
#website-footer a {
  color: #000 !important;
}
#website-footer a:hover {
  color: #000 !important;
}
.footer_block{
padding: 0px 5px 0px 5px;
}
.footer_block_title {
  text-align: center !important;
}
.website-social img {
  filter: invert(0) !important;
  transition: filter .3s ease !important;
}
.website-social img:hover {
  filter: invert(20%) !important;
}

/* === Generic Red Button === */
.btn1 {
  background: #C69239 !important;
  color: #000 !important;
  border-radius: 30px !important;
  padding: 12px 20px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
  max-width: 250px !important;
  margin: 20px auto !important;
  display: block !important;
}
.btn1:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .2) !important;
color:#000 !important;
}
.btn1 a {
  color: #000 !important;
}
.btn1:focus {
  border: 2px solid red !important;
}

/* === Reduced Motion Accessibility === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* === Mobile Adjustments === */
@media (max-width: 1300px) {
.website-container-logo{
margin-top: 0px !important;
}
}
@media (max-width: 600px) {
  .website-navigation li {
    display: block !important;
    text-align: center !important;
    margin: 6px 0 !important;
    background: none !important;
  }
  .website-navigation li a {
    color: #000 !important;
    background: none !important;
    padding: 4px 0 !important;
    font-size: 16px !important;
    border-radius: 0 !important;
  }
  .website-navigation-button {
    width: 100% !important;
    margin: 10px 0 !important;
  }
  .website-logo-link {
    margin-bottom: 20px !important;
  }
  #website-footer {
    padding: 15px 5px !important;
  }
#website-footer .div_table .div_td:nth-of-type(1){
width: 100%;
display: block;
text-align: center;
}
#website-footer .div_table .div_td:nth-of-type(2){
width: 100%;
display: block;
text-align: center;
}
#website-footer .div_table .div_td:nth-of-type(3){
width: 100%;
display: block;
text-align: center;
}
.navheader-line{
display: none;
}
}