/* ------------------------------------------------
   CSS RESET & BASELINE (Normalize + improvements)
-------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  background: #F5F6FA;
  color: #1B3556;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1B3556;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.65,.05,.36,1);
  outline: none;
}
a:focus {
  outline: 2px solid #B4975A;
  outline-offset: 2px;
}

/* ------------------------------------------------
   BRAND & LUXURY PREMIUM VARIABLES
-------------------------------------------------*/
:root {
  /* Brand */
  --color-primary: #1B3556;
  --color-secondary: #28A745;
  --color-accent: #F5F6FA;
  /* Luxury Premium */
  --color-gold: #B4975A;
  --color-dark: #111319;
  --color-light: #F5F6FA;
  --color-shadow: rgba(27,53,86,0.07);
  --color-border: #DDDFE4;
  /* Typography */
  --font-display: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ------------------------------------------------
   GLOBAL TYPOGRAPHY
-------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 14px;
  color: var(--color-primary);
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  color: var(--color-primary);
}
.subtitle {
  font-size: 1.25rem;
  color: var(--color-dark);
  opacity: 0.95;
  font-weight: 500;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
  color: var(--color-dark);
}
address {
  font-style: normal;
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: 18px;
}


/* ------------------------------------------------
   CONTAINER & LAYOUT RULES
-------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .feature-grid, .community-quotes, .sport-types-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 38px var(--color-shadow);
  background: #fff;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 10px 48px rgba(180,151,90,0.14);
}

/* Text-image-flex-section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonial Cards and UI */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(27,53,86,0.09);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--color-border);
  min-width: 245px;
  max-width: 355px;
  transition: border 0.18s, box-shadow 0.22s;
}
.testimonial-card p {
  color: #292D33;
  font-size: 1rem;
}
.testimonial-card .testimonial-meta,
.testimonial-card span {
  font-size: 0.98rem;
  color: #5a572a;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(27,53,86,0.07);
  padding: 26px 18px;
  flex: 1 1 195px;
  min-width: 200px;
  border: 1px solid var(--color-border);
  transition: border-color 0.15s, box-shadow 0.16s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 600;
}
.feature-item p {
  font-size: 0.99rem;
  color: var(--color-dark);
}
.feature-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(180,151,90,0.15);
}

.sport-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.sport-types-grid div {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
}

.amenities-summary ul, .location-highlights p, .benefits-summary p {
  font-size: 1.01rem;
  color: var(--color-primary);
  padding-top: 6px;
}

.activity-types {
  margin-bottom: 15px;
  color: var(--color-gold);
  font-weight: 500;
  font-family: var(--font-display);
}

.cta-card {
  background: linear-gradient(110deg, #fff 78%, #faeee0 100%);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 4px 27px var(--color-shadow);
  margin-bottom: 22px;
  border: 1px solid #f1efd3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cta-card h2 {
  color: var(--color-gold);
  font-size: 1.35rem;
}

.community-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.community-quotes .testimonial-card {
  background: #FAFAFD;
  border-left: 5px solid var(--color-gold);
  box-shadow: 0 2px 8px rgba(180,151,90,0.09);
}

/**** Info, Notices, Faq cards ****/
.info-note,
.acceptance-note,
.opt-out-info,
.important-notices {
  background: #fffdea;
  border-left: 4px solid var(--color-gold);
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #554213;
}

/**** Buttons & CTA ****/
.cta-btn, .btn, .cookie-banner button, .cookie-modal button {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(27,53,86,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  margin-bottom: 12px;
}
.cta-btn:hover, .btn:hover, .cookie-banner button:hover, .cookie-modal button.selected {
  background: var(--color-gold);
  color: var(--color-dark);
  box-shadow: 0 4px 18px rgba(180,151,90,0.20);
}
.cta-btn:focus {
  outline: 2px solid var(--color-gold);
}


/**** HEADER, MAIN NAVIGATION ****/
header {
  background: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  border-bottom: 2px solid #EEE8DD;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 18px;
  min-height: 58px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--color-primary);
  opacity: 0.95;
  border-radius: 8px;
  padding: 5px 12px;
  transition: color 0.17s, background 0.15s;
}
.main-nav a:hover {
  color: var(--color-gold);
  background: #f8f3e7;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  color: var(--color-gold);
  border: none;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-gold);
}
/* Hamburger always right*/
header .mobile-menu-toggle {
  margin-left: 14px;
}

/* CTA Button upper right */
.cta-btn {
  margin-left: 24px;
  margin-bottom: 0;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  background: var(--color-gold);
  color: var(--color-dark);
  border: none;
  box-shadow: 0 2px 10px rgba(180,151,90,0.12);
}
.cta-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 1100px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/**** RESPONSIVE NAVIGATION (Burger Menu etc) ****/
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(.7,.1,.24,1);
  box-shadow: -8px 0 28px rgba(27,53,86,0.25);
  z-index: 400;
  padding: 42px 25px 24px 28px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-gold);
  background: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 6px 10px;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-primary);
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: #f4e9d5;
  color: var(--color-gold);
}

/* Overlay for body lock */
body.menu-open {
  overflow: hidden;
}

/**** Accent & Gold Styling ****/
.gold-text, .color-gold { color: var(--color-gold) !important; }
.bordered-gold { border-color: var(--color-gold) !important; }

/**** SCHEDULE TABLE ****/
.schedule-table {
  border-radius: 14px;
  border-collapse: collapse;
  margin-bottom: 22px;
  min-width: 320px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(27,53,86,0.10);
}
.schedule-table th, .schedule-table td {
  padding: 13px 13px;
  font-size: 1.01rem;
  text-align: left;
}
.schedule-table th {
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: 700;
  border-right: 1px solid #f8f4e7;
}
.schedule-table td {
  background: #fff;
  color: var(--color-primary);
  border-bottom: 1px solid #f2ede1;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

.filter-controls, .venue-selector {
  background: #fff;
  border-radius: 11px;
  padding: 13px 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.07);
  color: var(--color-dark);
  font-family: var(--font-body);
}

/**** FOOTER STYLING ****/
footer {
  background: #fff;
  padding: 38px 0 20px;
  border-top: 2px solid #f2e7d6;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.04rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--color-gold);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: baseline;
  margin-right: 6px;
}
.footer-copy {
  color: #aaa27c;
  font-size: 0.97rem;
  text-align: left;
  margin-top: 8px;
}
@media (max-width:600px) {
  footer .container {
    gap: 10px;
  }
  .footer-contact {
    gap: 12px;
    font-size: 0.98rem;
  }
}

/**** FAQ, List Layouts ****/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: 10px;
  padding: 17px 20px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.07);
  flex: 1 1 min(265px,100%);
  min-width: 215px;
  transition: box-shadow 0.13s;
}
.faq-list > div:hover {
  box-shadow: 0 6px 16px rgba(180,151,90,0.09);
}

/**** Cookie Banner Styles ****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbea;
  color: var(--color-dark);
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 24px rgba(27,53,86,0.14);
  z-index: 9999;
  padding: 23px 18px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.03rem;
  animation: slideUpBanner 0.7s cubic-bezier(.67, .13, .12, .93);
}
@keyframes slideUpBanner {
  0%{transform:translateY(100%);opacity:0;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  padding: 11px 23px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px;
  border:none;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.13s, color 0.15s;
}
.cookie-banner button.reject {
  background: #eee6cf;
  color: #9c831c;
}
.cookie-banner button.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-gold);
}
.cookie-banner button:focus {
  outline: 2px solid var(--color-gold);
}

/**** Cookie Modal Styles ****/
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,35,32,0.35);
  z-index: 10099;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s;
}
@keyframes fadeInModal {
  0%{opacity:0;} 100%{opacity:1;}
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 4px 48px rgba(27,53,86,0.18);
  min-width: 310px;
  max-width: 95vw;
  padding: 32px 26px 26px 28px;
  color: var(--color-dark);
  animation: slideInModal 0.3s cubic-bezier(.73, .02, .11, .91);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10700;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-gold);
  font-size: 1.17rem;
  margin-bottom: 12px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 19px; height:19px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 11px 21px;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  color: var(--color-primary);
  border:none;
  font-size: 2.2rem;
  position: absolute;
  top: 10px; right: 16px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-gold);
}
/* Disable scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/**** Cards, Cards Grids, etc. ****/
.card, .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card {
  min-width: 260px;
  background: #fff;
  padding: 26px 19px;
}

/**** Map and Contact Layout ****/
.contact-details {
  font-family: var(--font-body);
  font-size: 1.03rem;
  color: var(--color-primary);
  background: #f9fafd;
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.05);
}
.contact-details img {
  vertical-align: middle;
  margin-right: 7px;
}
.map-embed {
  background: #eefaee;
  color: var(--color-primary);
  font-size: 1.02rem;
  border-radius: 10px;
  padding: 18px 16px;
  margin-top: 11px;
}

/**** Cards & Section Gaps ****/
.card-container>.card, .card-container>.feature-item {
  margin-bottom: 22px;
}
.section + .section {
  margin-top: 45px;
}
.benefits-summary, .location-highlights {
  margin-top: 10px;
  margin-bottom: 16px;
}

/**** Acceptance Note & Others ****/
.acceptance-note {
  border-color: var(--color-gold);
  background: #fffef1;
}

/**** Miscellaneous ****/
.important-notices strong {
  color: var(--color-gold);
}

/**** Responsive: Mobile First – Flex Direction Adjustments ****/
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding-left: 6px;
    padding-right: 6px;
    max-width: 100vw;
  }
  .content-wrapper, .card-container, .feature-grid, .community-quotes, .sport-types-grid, .content-grid, .testimonial-slider, .faq-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px;
  }
  .testimonial-slider {
    gap: 20px;
  }
  .section {
    padding: 28px 4vw;
    margin-bottom: 38px;
  }
  .map-embed, .filter-controls, .venue-selector {
    padding: 9px 7px;
  }
  .faq-list > div {
    min-width: 70vw;
  }
  .sport-types-grid div {
    min-width: 120px;
    text-align: center;
  }
}

/**** Responsive hamburger menu covers more on small screens ****/
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding: 32px 14px 15px 18px;
  }
  .cookie-modal { padding: 15vw 3vw; }
}

/**** Accessibility focus for all main interactive elements ****/
button:focus, a:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/**** Subtle transitions & micro-interactions ****/
.card, .feature-item, .cta-card, .faq-list > div {
  transition: box-shadow 0.15s, border-color 0.12s;
}
.card:hover, .feature-item:hover, .faq-list > div:hover {
  box-shadow: 0 6px 22px rgba(180,151,90,0.15);
  border-color: var(--color-gold);
}

/**** Utility classes ****/
.d-none { display: none !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/**** Hide elements visually ****/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/**** Remove number spinner in input[type=number] ****/
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] { -moz-appearance: textfield; }
