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

html {
    font-size: 62.5%;
    overflow-x: hidden;
} 

body {
    /* font-family: 'Niconne', cursive; */
    overflow: hidden;
    background-color: #E5D0B5;
}

/* 
#69995d - HEADINGS
#420039 - MAIN  
#b18fcf - SECONDARY 
*/
/* NAVIGATION BAR */
.navBar-wrapper {
    position: fixed;
    top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none; /* allow hero interaction behind if needed */
  }
  
  .navBar-container {
    background-color: white;
    border-radius: 2rem;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    pointer-events: all; /* restore interaction */
  }
  
  .navBar-logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: -1px;
    color: #333;
    text-decoration: none;
  }
  
  .navBar-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .navBar-links li a {
    text-decoration: none;
    font-size: 2rem;
    color: #555;
    transition: color 0.2s ease;
  }
  
  .navBar-links li a:hover {
    color: #000;
  }
  
  .navBar-button {
    background-color: #b97954;
    color: #fff;
    font-size: 2rem;
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .navBar-button:hover {
    background-color: #c5b4a1;
  }

  .navBar-toggle {
    display: none;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .navBar-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
    }
  
    .navBar-links {
      flex-direction: column;
      gap: 1rem;
    }
  
    .navBar-button {
      align-self: flex-start;
    }
  }

.hero-container {
    padding: 3rem;
    display: flex;
    justify-content: center;
  }
  
  .hero-image {
    background: url('/imgs/hero-naughtons-villa-home-final.jpg') center/cover no-repeat;
    border-radius: 2rem;
    width: 100%;
    max-width: 160rem;
    height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
  }

  .killarneyHero {
    background: url('/imgs/killarneyHero.jpg') center/cover no-repeat !important;
  }

  .killarneyGolfHero {
    background: url('/imgs/KillarnyGolfFishing.webp') center/cover no-repeat !important;
  }

  .rossGolfHero {
    background: url('/imgs/ross-golf-club-large.jpg') center/cover no-repeat !important;
  }

  .beaufortGolfHero {
    background: url('/imgs/beaufort.webp') center/cover no-repeat !important;
  }
  
  /* OVERLAY CONTENT */
  .hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 3rem;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.728) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);

  }
  
  .hero-left {
    max-width: 50%;
  }
  
  .hero-heading {
    font-size: 4rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-caption {
    font-size: 4rem;
    font-family: 'Niconne', cursive;
    font-weight: 100;
  }

  .hero-left {
    padding: 0 0 1.2rem 1.2rem;
  }
  
  .hero-right {
    /* background: white; */
    padding: 2rem;
    border-radius: 1rem;
    max-width: 50rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 0 1.2rem 1.2rem 0;
  }
  
  .hero-description {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #fff;
  }
  
  .hero-button {
    display: inline-block;
    padding: 0.6rem 2rem;
    background-color: #b97954;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }
  
  .hero-button:hover {
    background-color: #c5b4a1;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-inner {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 2rem;
      gap: 2rem;
    }
  
    .hero-left, .hero-right {
      max-width: 100%;
    }
  
    .hero-heading,
    .hero-description,
    .hero-button {
      text-align: center;
      justify-self: center;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
    }

  
  }

  /* WELCOME SECTION */
.welcome-section {
    background: url('/imgs/enhanced/facilitiesBackdrop.jpg') center/cover no-repeat;
    /* background-color: #f7f2ec; */
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
  }

  .killarney-welcome-section {
    background: url('/imgs/killarneyHero.jpg') center/cover no-repeat !important;
  }

  .welcome-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f7f2ec;
    opacity: 0.85; /* adjust this value to your preference */
    z-index: 1;
  }
  
  .welcome-section > * {
    position: relative;
    z-index: 2;
  }
  
  .welcome-container {
    max-width: 800px;
  }
  
  .welcome-icon {
    width: 35rem;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .welcome-heading {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    color: #b97954;
    margin-bottom: 2rem;
  }
  
  .welcome-text {
    font-size: 1.6rem;
    color: #333;
    line-height: 1.7;
    border-bottom: 3px solid #b97954;
    padding-bottom: 2.4rem;
  }
  
  .carousel {
    width: 100%;
    max-width: 120rem;
    margin: 5rem auto;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-wrapper {
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
  }
  
  .carousel-slide {
    min-width: 100%;
    transition: opacity 0.3s ease;
    object-fit: cover;
    border-radius: 26px;
  }
  
  .carousel-arrow {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    background: #fff;
    border: none;
    /* padding: 0.5rem 1rem; */
    cursor: pointer;
    z-index: 10;
    color: #b97954;
    border-radius: 50%;
    user-select: none;
    height: 5rem;
    width: 5rem;
  }
  
  .carousel-arrow.left {
    left: 1rem;
  }
  
  .carousel-arrow.right {
    right: 1rem;
  }
  

  .facilities {
    position: relative;
    background: url('/imgs/enhanced/kitchenBackdrop.jpg') bottom/cover no-repeat;
    z-index: 0;
    height: 70rem;
  }

  .facilities::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f7f2ec;
    opacity: 0.85; /* adjust this value to your preference */
    z-index: 1;
  }
  
  .facilities > * {
    position: relative;
    z-index: 2;
  }

  .facilities-box {
    margin: 0 auto;
    max-width: 120rem;
    height: 100%;
  }

  .facilities-container {
    display: flex;
    gap: 2.4rem;
    height: 100%;
  }

  .facilities-item-one {
    background-color: #b97954;
    color: #fff;
    padding: 2.4rem;
    max-width: 50rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .facilities-text-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 2.4rem 0;
  }

  .facilities-caption {
    font-size: 2rem;
  }

  .facilities-header {
    font-size: 3rem;
  }

  .facilities-text {
    font-size: 1.8rem;
  }

  .facilities-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e0d3;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: bold;
    /* padding: 1rem 2rem; */
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    margin-right: auto;
  }

  .facilities-link-text {
    padding: 1rem 2rem;
  }
  
  .facilities-link .facilitiesArrow {
    margin-left: 1.5rem;
    transform: translateY(1px);
    transition: transform 0.3s ease;
    border-left: 1px solid #fff;
    padding: 1rem;
  }
  
  .facilities-link:hover {
    background-color: #e5e0d3;
    color: #5e5e5e;
  }
  
  .facilities-link:hover .arrow {
    transform: translate(5px, 1px);
  }

  .facilities-img-box {
    margin-top: auto;
  }
  
  .facilities-img {
    width: 100%;
    margin-top: auto;
  }

  .services-list {
    padding: 4rem 2rem;
    max-width: 700px;
    margin: auto;
    color: #333;
    font-family: 'Georgia', serif;
  }
  
  .service {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .service-num {
    font-size: 2.6rem;
    font-style: italic;
    color: #444;
    font-weight: 500;
    min-width: 4rem;
  }
  
  .service-content h3 {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }
  
  .service-content p {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #333;
  }
  

  .card-section {
    display: flex;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #E5D0B5;
    justify-content: center;
    flex-wrap: wrap;
  }
  .card {
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* deeper shadow */
    overflow: hidden;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Optional: lift on hover */
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  .card-one {
    background-color: #f7f2ec;
  }
  .card-two {
    background-color: #b97954;
    color: #fff;
  }
  .card-three {
    background-color: #f7f2ec;
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .card-content {
    padding: 2rem;
    font-family: 'Georgia', serif;
  }
  .card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .card-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .card-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .cardLink {
    display: block;
    font-size: 1.6rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background-color: #b97954;
    border-radius: 3px;
    color: #fff;
    margin-left: auto;
    text-align: center;
    margin-bottom: -1.2rem;
  }

  .contact-section {
    background: url('/imgs/enhanced/contactBackdrop.jpg') bottom/cover no-repeat;
    /* background-color: #f7f2ec; */
    position: relative;
    padding: 6rem 2rem;
    font-family: 'Georgia', serif;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f7f2ec;
    opacity: 0.85; /* adjust this value to your preference */
    z-index: 1;
  }
  
  .contact-section > * {
    position: relative;
    z-index: 2;
  }
  
  .contact-container {
    max-width: 700px;
    margin: auto;
    background: white;
    border: 1px solid #E5D0B5;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  .contact-caption {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: #b97954;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }
  
  
  .contact-container h2 {
    font-size: 2.2rem;
    color: #b97954;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
  }
  
  .contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.8rem;
  }
  
  .contact-form label {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    font-size: 1.2rem;
    border: 1px solid #E5D0B5;
    border-radius: 0.5rem;
    background-color: #fff;
    color: #2c2c2c;
    transition: border-color 0.3s ease;
    resize: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #b97954;
  }
  
  .contact-button {
    background-color: #b97954;
    color: white;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }
  
  .contact-button:hover {
    background-color: #9d5f3f;
  }
  
  
  .lux-footer {
    background-color: #b97954;
    color: #fff;
    font-family: 'Georgia', serif;
    padding: 4rem 2rem 2rem;
  }
  
  .lux-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: 3rem;
  }
  
  .lux-footer-column h4 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
  }
  
  .lux-footer-column p,
  .lux-footer-column a {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s ease;
  }
  
  .lux-footer-column a:hover {
    color: #d4c2ad;
  }
  
  .lux-social,
  .lux-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lux-social li,
  .lux-nav-links li {
    margin-bottom: 0.6rem;
  }
  
  .lux-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 1.2rem;
    color: #fff;
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .lux-footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .lux-footer-column {
      width: 100%;
    }
  }
  
.testimonial-wrapper {
  background-color: #f7f2ec;
  padding: 5rem 0.6rem;
  overflow: hidden;
  font-family: 'Georgia', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh; /* or 100vh for full screen height */
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  
}


.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #b97954;
}

.testimonial-review {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
}

.testimonial-stars {
  font-size: 1.8rem;
  color: #b97954;
  margin-top: 1rem;
  letter-spacing: 2px;
}

.testimonial-progress-bar {
  height: 4px;
  width: 50rem;
  background-color: #e5d0b5;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 2px;
}

.testimonial-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #b97954, #b97954);
  transition: width 6s linear;
}

  .articleLayoutSection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 140rem;
    margin: 0 auto;
  }

  .articleLayoutCard {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
  }

  .articleLayoutCard:hover {
    transform: translateY(-4px);
  }

  .articleLayoutImage {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .articleLayoutContent {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .articleLayoutHeader {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  .articleLayoutButton {
    align-self: flex-end;
    background-color: #b97954;
    color: #fff;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .articleLayoutButton:hover {
    background-color: #0056b3;
  }

    .faq-section {
    background-color: #b97954;
    padding: 4rem 2rem;
    font-family: sans-serif;
    color: #fff;
    border-bottom: 5px solid #fff;
  }
  
  .faq-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .faq-item {
    max-width: 120rem;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-question {
    font-size: 2rem;
    padding: 1.5rem 2rem;
    background-color: #fff;
    color: #b97954;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: bold;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question:hover {
    background-color: #f5f5f5;
  }

  .faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    font-size: 1.8rem;
    color: #333;
    background-color: #fff;
  }

  .faq-item.open .faq-answer {
    display: block;
  }

  .faq-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
  }

.access-section {
  background-color: #f8f4ef;
  padding: 6rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid #e0d7ce;
}

.access-container {
  max-width: 1000px;
  margin: 0 auto;
}

.access-heading {
  font-size: 3.2rem;
  color: #b97954;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.access-intro {
  font-size: 2.4rem;
  color: #333;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.access-methods {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.access-card {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 1.2rem;
  transition: transform 0.2s ease;
}

.access-card:hover {
  transform: translateY(-4px);
}

.access-icon {
  font-size: 3rem;
  margin-right: 1.5rem;
  color: #b97954;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.access-info {
  font-size: 2rem;
  color: #333;
}

.access-info strong {
  color: #b97954;
  font-weight: bold;
}
