/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
  max-width: 1150px;
  margin: 0 auto;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
}

/* Font Awesome icon size inside hamburger */
.hamburger i {
  font-size: 22px;
  color: #111;
}

.logo {
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.logo-img {
  height: 22px;
  width: auto;
  display: block;
}

.logo span {
  line-height: 1;
}

.nav a {
  margin: 0 8px;
  text-decoration: none;
  color: #333;
  font-size: 13.5px;
}

.nav a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* New nav list and dropdowns */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 6px 8px;
}

.has-dropdown > a:after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 12px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  max-height: 600px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  /* desktop animated open */
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 9999;
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 10px 12px;
  color: #333;
  border-radius: 8px;
}

.dropdown li a:hover { background: #f6f6f6; }
.dropdown li + li { border-top: 1px solid #f0f0f0; margin-top: 6px; padding-top: 6px; }

/* Nested dropdown (sub-dropdown) support */
.dropdown .has-dropdown {
  position: relative;
}

.dropdown .has-dropdown > a:after {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 12px;
  float: right;
  margin-right: 6px;
}

/* Sub-dropdown: Separate container with distinct styling */
.dropdown .sub-dropdown {
  position: fixed;
  top: 0;
  left: 100%;
  margin-left: 12px; /* Increased spacing from parent dropdown */
  min-width: 220px;
  max-width: 320px;
  max-height: 70vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 99999; /* Higher z-index to appear above parent */
  /* Separate container styling */
  background: #fafafa;
  border: 1px solid #ddd;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 8px;
  /* Initial hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  /* Prevent body scroll when hovering sub-dropdown */
  scroll-behavior: smooth;
}

/* Sticky first and last items in sub-dropdown for better UX */
.dropdown .sub-dropdown li:first-child {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fafafa;
}

.dropdown .sub-dropdown li:last-child {
  position: sticky;
  bottom: 0;
  z-index: 1;
  background: #fafafa;
}

/* Visual separator line before sub-dropdown items */
.dropdown .sub-dropdown::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #ddd 10%, #ddd 90%, transparent);
}

/* Sub-dropdown item styling */
.dropdown .sub-dropdown li a {
  padding: 10px 14px;
  color: #444;
  font-size: 13.5px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.dropdown .sub-dropdown li a:hover {
  background: #f0f0f0;
  color: #111;
}

.dropdown .sub-dropdown li + li {
  border-top: 1px solid #e8e8e8;
  margin-top: 4px;
  padding-top: 4px;
}

/* Ensure nested dropdown appears on hover and when open */
.dropdown .has-dropdown:hover > .sub-dropdown,
.dropdown .has-dropdown.open > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}

/* Prevent nested dropdown from closing when hovering over it */
.dropdown .sub-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Desktop: Enhanced sub-dropdown positioning */
@media (min-width: 768px) {
  /* Ensure parent dropdown has enough space for sub-dropdown */
  .dropdown {
    overflow: visible; /* Allow sub-dropdown to overflow parent */
  }
  
  /* Sub-dropdown positioning - appears to the right with clear separation */
  .dropdown .sub-dropdown {
    /* Positioned relative to viewport for proper scrolling */
    position: fixed;
    top: 0;
    left: 100%;
    margin-left: 12px;
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* If sub-dropdown would overflow viewport, show on left side instead */
  .dropdown .has-dropdown:last-child > .sub-dropdown,
  .dropdown .has-dropdown:nth-last-child(2) > .sub-dropdown {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 12px;
    transform: translateX(8px);
  }
  
  .dropdown .has-dropdown:last-child:hover > .sub-dropdown,
  .dropdown .has-dropdown:last-child.open > .sub-dropdown,
  .dropdown .has-dropdown:nth-last-child(2):hover > .sub-dropdown,
  .dropdown .has-dropdown:nth-last-child(2).open > .sub-dropdown {
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    border: none;
    box-shadow: none;
    padding-left: 10px;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    max-height: none;
  }
  .has-dropdown.open > .dropdown {
    display: block;
  }
  .dropdown .sub-dropdown {
    position: static;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 8px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #ccc;
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
  .dropdown .sub-dropdown::before {
    display: none;
  }
  .dropdown .has-dropdown.open > .sub-dropdown {
    display: block;
  }
}

/* Restore desktop flyout behavior for large screens */
@media (min-width: 1061px) {
  /* Top-level dropdown returns to flyout with animation */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 12px;
    display: block;        /* visible in layout */
    opacity: 0;            /* hidden by default */
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    overflow: visible;     /* allow natural height; page scroll handles overflow */
  }
  .has-dropdown.open > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Nested sub-dropdown flyout to the right - uses viewport-relative positioning */
  .dropdown .sub-dropdown {
    position: fixed;
    top: 0;
    left: 100%;
    margin-left: 12px;
    min-width: 220px;
    max-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    z-index: 30;
    background: #fafafa;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 12px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    display: block; /* ensure layout presence */
  }
  .dropdown .has-dropdown.open > .sub-dropdown,
  .dropdown .has-dropdown:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

/* Mobile: nested dropdowns should stack with clear visual hierarchy */
@media (max-width: 767px) {
  .dropdown .sub-dropdown {
    position: static;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 8px;
    padding-left: 24px;
    padding-right: 12px;
    padding-top: 12px;
    padding-bottom: 8px;
    /* Mobile: distinct container styling */
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #ccc;
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    /* Remove desktop transform */
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  
  /* Remove separator line on mobile */
  .dropdown .sub-dropdown::before {
    display: none;
  }
  
  /* Mobile sub-dropdown items */
  .dropdown .sub-dropdown li a {
    padding: 10px 12px;
    font-size: 13px;
    color: #555;
  }
  
  .dropdown .sub-dropdown li + li {
    border-top: 1px solid #e0e0e0;
    margin-top: 6px;
    padding-top: 6px;
  }
  
  /* Mobile: hide sub-dropdown by default, show when parent is open */
  .header.is-open .dropdown .sub-dropdown {
    position: static;
    display: none;
  }
  
  .header.is-open .dropdown .has-dropdown.open > .sub-dropdown {
    display: block;
  }
  
  /* Add visual indicator for nested items on mobile */
  .dropdown .has-dropdown > a {
    position: relative;
  }
  
  .dropdown .has-dropdown.open > a::after {
    content: "\f106"; /* Change arrow to up when open */
  }
}

/* Professional open state and accent */
.has-dropdown > a { position: relative; }
.has-dropdown.open > a { box-shadow: inset 0 -2px 0 #111; color: #111; }
.nav-list > li.has-dropdown.open > a::after { content: "\f106"; }

.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* Slightly emphasize header bottom when menu open (mobile/desktop) */
.header.is-open { border-bottom-color: #e5e5e5; border-bottom-width: 2px; }

.has-dropdown.open > .dropdown {
  display: block;
}

/* Special styling for "View All" links in navigation dropdowns */
.view-all-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  margin-bottom: 8px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
}

.view-all-link:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
  color: white !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

.view-all-link::before {
  content: "\f0c9";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 12px;
}

/* Ensure view-all-link stands out in sub-dropdowns */
.sub-dropdown .view-all-link {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  margin: 0 0 12px 0 !important;
}

.sub-dropdown .view-all-link:hover {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Header search */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-toggle {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #ddd;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13.5px;
  color: #111;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lang-toggle:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.lang-toggle:active {
  background: #eee;
}
.lang-toggle i { font-size: 14px; }
.lang-current { font-weight: 600; }

.lang {
  border: none;
  background: #f5f5f5;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Language item within nav list (hidden by default; shown on mobile) */
.nav-lang-item { display: none; }

.login-btn, .register-btn {
  padding: 6px 18px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.login-btn {
  background: #fff;
  border: 1px solid #ccc;
}

.register-btn {
  background: #000;
  color: #fff;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px 0;
  background: #fff;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 25px;
}

.tab i {
  font-size: 18px;
  margin-bottom: 4px;
}

.tab.active {
  background: #000;
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  width: 100%;
  max-width: 1150px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
}

@supports not (aspect-ratio: 16 / 9) {
  .hero {
    height: 647px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  width: 100%;
  justify-self: center;
  border-radius: 15px;
  z-index: 1;
}

/* Hero bottom hint */
.hero-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: calc(100% - 80px);
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 10px;
  backdrop-filter: saturate(120%) blur(2px);
  z-index: 3;
}

.hint-text {
  font-size: 13px;
  line-height: 1.4;
}

.hint-social { display: flex; align-items: center; gap: 10px; }
.hint-icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.hint-icon:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 1023px) {
  .hero-hint {
    width: calc(100% - 40px);
    bottom: 12px;
    padding: 8px 12px;
  }
  .hint-text { font-size: 12px; }
  .hint-icon { width: 30px; height: 30px; }
}

@media (max-width: 767px) {
  .hero-hint {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: calc(100% - 24px);
    bottom: 10px;
  }
  .hint-text { font-size: 12px; }
  /* Center social icons on small screens */
  .hero-hint .hint-social { align-self: center; }
}

.hero-text {
  position: relative;
  max-width: 50%;
  margin-left: 12%;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 25px;
}

.book-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
}

/* Hero Form */
.hero-form {
  position: relative;
  background: #fff;
  color: #000;
  padding: 25px;
  margin-right: 10%;
  border-radius: 20px;
  max-width: 320px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Smooth fade for hero bg and text */
#heroTitle, #heroDesc {
  transition: opacity 0.3s ease;
}

.is-fading {
  opacity: 0;
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-prev { left: 3%; }
.hero-next { right: 3%; }

.hero-arrow:hover {
  background: #fff;
}

.hero-form h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.input-group {
  position: relative;
  margin-bottom: 12px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #888;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.search-btn {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}

/* Promo Section */
.promo {
  padding: 60px 40px;
}

.promo h2 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #444;
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.promo-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-text h3 {
  font-size: 24px;
  max-width: 500px;
}

/* Structured sections */
.section { padding: 60px 40px; }
.section-head { margin: 0 auto 20px auto; max-width: 1100px; }
.section-head h2 { font-size: 20px; letter-spacing: .04em; color: #444; text-transform: uppercase; }
.section-head.split { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.link-more { color: #333; font-size: 14px; text-decoration: none; }
.link-more:hover { text-decoration: underline; }
/* Monk theme section backgrounds */

.section.community { background: #faf7f2; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.news { background: #f8f5ef; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.events { background: #f6f2ea; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.about-mini { background: #f5f7f9; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.locations { background: #f7f4ee; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.media { background: #f7f8fb; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.guide { background: #f6f4f1; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section.social-follow { background: linear-gradient(180deg, #efe6db 0%, #e3d6c6 100%); }
.section.youtube-embeds { background: #f3f6fb; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }

/* Section header accent */
.section .section-head h2 { position: relative; padding-bottom: 8px; }
.section .section-head h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* Story */
.story .story-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.story-text h3 { font-size: 22px; margin-bottom: 10px; color: #222; }
.story-text p { margin-bottom: 10px; color: #555; }
.story-media img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; display: block; }

/* Community */
.community-hero { position: relative; height: 260px; border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; max-width: 1100px; margin: 0 auto 20px auto; }
.community-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.45)); }
.community-hero-inner { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; }
.community-hero-inner h2 { color: #fff; font-size: 36px; letter-spacing: .04em; text-transform: uppercase; text-align: center; padding: 0 16px; }

.community-intro { max-width: 900px; margin: 20px auto 24px auto; color: #666; text-align: center; line-height: 1.9; }

.feature-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.feature-icon { width: 56px; height: 56px; border-radius: 12px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #111; font-size: 22px; }
.feature-body h3 { font-size: 16px; margin-bottom: 6px; color: #222; }
.feature-body p { font-size: 14px; color: #666; }

.community-cta { text-align: center; margin-top: 20px; }
.btn-outline { display: inline-block; padding: 10px 16px; border-radius: 20px; border: 1px solid #111; color: #111; text-decoration: none; }
.btn-outline:hover { background: #111; color: #fff; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* News slider */
.slider { position: relative; max-width: 1100px; margin: 0 auto; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc(33.333% - 12px); gap: 18px; overflow: hidden; scroll-behavior: smooth; border-radius: 15px;}
.slide { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.news-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.news-meta { padding: 12px 14px; }
.news .slider-track { grid-auto-columns: 100%; }
.news .news-card img { height: 330px; }
.slider-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; border: none; cursor: pointer; }
.slider-dot.is-active { background: #111; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 18px; border: none; background: #fff; box-shadow: 0 3px 10px rgba(0,0,0,0.2); cursor: pointer; z-index: 2; }
.slider-arrow.prev { left: 1%; }
.slider-arrow.next { right: 1%; }

/* Events */
.events .events-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.events-hint { max-width: 1100px; margin: -20px auto 25px auto; color: #666; font-size: 14px; }
/* Image-first vertical card for better visual impact */
.event-item { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); display: grid; grid-template-columns: 1fr; }
.event-thumb { position: relative; height: 280px; overflow: hidden; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.event-item:hover .event-thumb img { transform: scale(1.05); }
.event-body { padding: 12px 14px 16px 14px; }
.event-date { font-size: 12px; color: #666; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.event-title { font-size: 17px; margin-bottom: 6px; color: #222; }
.share-btn { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 18px; border: none; background: rgba(0,0,0,.6); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); z-index: 5; }
.share-btn i { font-size: 14px; }
.event-date { font-size: 12px; color: #666; margin-bottom: 6px; text-transform: uppercase; }
.event-title { font-size: 16px; margin-bottom: 6px; }
.btn-link { display: inline-block; color: #111; text-decoration: none; font-weight: bold; border: 1px solid #111; padding: 8px 12px; margin-top:10px; border-radius: 18px; transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.btn-link:hover { background: #111; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.btn-chip { display: inline-block; padding: 6px 12px; border: 1px solid #111; border-radius: 20px; text-decoration: none; color: #111; font-size: 13px; }
.btn-chip:hover { background: #111; color: #fff; }

/* Contact Page */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 20px;
  color: #333;
  margin-top: 5px;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.info-item p {
  margin-bottom: 5px;
  color: #555;
}

.social-links {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #333;
  font-size: 20px;
  text-decoration: none;
}

.contact-form-wrapper {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

.map-section {
  padding: 60px 40px;
  background: #f9f9f9;
}

.map-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.map-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.map-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }
}


/* About mini slider (Specific 3:4 aspect ratio) */
.about-mini .slide {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  position: relative;
}
.about-mini .slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.about-mini .slider-track { grid-auto-columns: calc(33.333% - 12px); }
.mini-card img { width: 100%; height: 100% !important; object-fit: cover; display: block; position: absolute; top: 0; left: 0; }
.mini-card h3 { padding: 10px 12px; font-size: 16px; position: absolute; bottom: 0; left: 0; right: 0; background: #fff; color: #111; margin: 0; z-index: 1; }
.about-mini .slider-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.about-mini .slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; border: none; cursor: pointer; }
.about-mini .slider-dot.is-active { background: #111; }

/* Locations */
.locations-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.location-card { position: relative; display: block; height: 270px; background-size: cover; background-position: center; border-radius: 12px; overflow: hidden; }
.location-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05)); color: #fff; padding: 14px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.location-desc { font-size: 13px; opacity: .9; }
.btn-ghost { display: inline-block; padding: 6px 12px; border-radius: 16px; border: 1px solid rgba(255,255,255,.8); color: #fff; font-size: 12px; }

/* Media */
.media-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.media-item { background: #fff; border-radius: 12px; overflow: hidden; text-decoration: none; color: #111; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.media-thumb img { width: 100%; height: 140px; object-fit: cover; display: block; }
.media-info { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; }
.badge { background: #111; color: #fff; border-radius: 12px; padding: 4px 8px; font-size: 12px; }
.media-desc { padding: 0 12px 12px 12px; color: #666; font-size: 13px; }
/* Guide */
.guide .guide-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 20px; box-shadow: 0 8px 22px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 10px; min-height: 180px; transition: transform .18s ease, box-shadow .18s ease; }
.guide-card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.10); }
.guide-card h3 { font-size: 16px; margin-bottom: 4px; color: #222; letter-spacing: .02em; }
.guide-card p { color: #666; margin-bottom: 8px; line-height: 1.7; }
.guide-links { list-style: none; padding-left: 0; }
.guide-links li + li { margin-top: 6px; }
.guide-links a { color: #111; text-decoration: none; }
.guide-links a:hover { text-decoration: underline; }
.guide-links li { position: relative; padding-left: 16px; }
.guide-links li:before { content: "\f105"; font-family: "Font Awesome 7 Free"; font-weight: 900; position: absolute; left: 0; top: 0; color: #999; }

/* Guide buttons */
.guide .btn-outline { align-self: flex-start; padding: 10px 14px; border-radius: 22px; }
.guide .btn-outline:hover { box-shadow: 0 4px 14px rgba(0,0,0,.12); }

/* Social follow */
.social-columns { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: linear-gradient(180deg, #8c6b54 0%, #7a5e4b 100%); color: #fff; border-radius: 14px; padding: 26px; box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.social-col { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.social-col h4 { margin: 10px 0 8px 0; font-size: 16px; letter-spacing: .02em; }
.social-col ul { list-style: none; padding-left: 0; font-size: 14px; opacity: .95; display: grid; gap: 6px; }
.social-col ul li { border-bottom: 1px dashed rgba(255,255,255,.18); padding-bottom: 6px; }
.social-col ul li:last-child { border-bottom: 0; padding-bottom: 0; }
.social-icon { width: 44px; height: 44px; border-radius: 22px; background: rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(0,0,0,.15); }
.social-icon i { color: #fff; font-size: 18px; }
.social-col a { color: #fff; text-decoration: none; }
.social-col a:hover { text-decoration: underline; }

/* YouTube */
.youtube-embeds .youtube-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.youtube-embeds iframe { width: 100%; height: 315px; border-radius: 12px; }

/* Responsive for sections */
@media (max-width: 1023px) {
  .section { padding: 40px 20px; }
  .story .story-wrap { grid-template-columns: 1fr; }
  /* Ensure image appears above text on tablets */
  .story .story-wrap > .story-media { grid-row: 1; }
  .story .story-wrap > .story-text { grid-row: 2; }
  .community-hero { height: 220px; }
  .slider-track { grid-auto-columns: calc(50% - 10px); }
  .events .events-list { grid-template-columns: 1fr 1fr; }
  .event-thumb { height: 240px; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  /* Inserted: guide/youtube responsive */
  .guide .guide-grid { grid-template-columns: 1fr 1fr; }
  .youtube-embeds .youtube-grid { grid-template-columns: 1fr; }
  .social-columns { grid-template-columns: 1fr 1fr; padding: 20px; gap: 14px; }
}

@media (max-width: 767px) {
  .slider-track { grid-auto-columns: 100%; }
  .about-mini .slider-track { grid-auto-columns: 100%; }
  .about-mini .slide { aspect-ratio: 3 / 4; }
  .events .events-list { grid-template-columns: 1fr; }
  .event-thumb { height: 220px; }
  
/* Share button */
.share-btn { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 18px; border: none; background: rgba(0,0,0,.6); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); z-index: 2; }
.share-btn:hover { background: rgba(0,0,0,.75); }
  .locations-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .community-hero-inner h2 { font-size: 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  /* Inserted: guide mobile */
  .guide .guide-grid { grid-template-columns: 1fr; }
  .social-columns { grid-template-columns: 1fr; padding: 18px; }
  .social-col { padding: 14px; }
  
  /* Place story image above text on mobile */
  .story .story-wrap { grid-template-columns: 1fr; }
  .story .story-wrap > .story-media { grid-row: 1; }
  .story .story-wrap > .story-text { grid-row: 2; }
}
/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.is-open { display: block; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal-dialog {
  position: relative;
  max-width: 560px;
  margin: 12vh auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 20px;
  z-index: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid #eee;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-body {
  display: block;
}

.modal-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.modal-submit {
  margin-top: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.card {
  border-radius: 15px;
  padding: 20px;
  background: #f9f9f9;
}

.img-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.text-card h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1023px) {
  .hero {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 30px 20px;
  }

  .overlay {
    width: 100%;
    border-radius: 0;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-top: auto; /* Push text down */
  }

  .hero-text h1 { font-size: 30px; }
  .hero-text p { font-size: 15px; }

  .hero-form {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: auto; /* Push form up or keep centered */
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-prev { left: 4%; }
  .hero-next { right: 4%; }

  .promo {
    padding: 40px 20px;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 450px) {
  .hero {
    aspect-ratio: 9 / 16;
  }
}

/* Footer */
.site-footer { background: linear-gradient(180deg, #8c6b54 0%, #7a5e4b 100%); }
.footer-logos-wrap { background: linear-gradient(180deg, #8c6b54 0%, #7a5e4b 100%); border-top: none; }
.footer-logos { border-bottom: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; gap: 24px; padding: 10px 18px; width: 95%; margin: 0 auto; }
.footer-logo { height: 72px; width: auto; object-fit: contain; }
.footer-logo-left, .footer-logo-right { height: 150px; }
.footer-logo-center { height: 100px; margin-right: 10px; }
.footer-banner-center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; max-width: 980px; color: #fff; }
.footer-banner-title { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.footer-banner-title-text { color: #ffffff; font-weight: 700; font-size: 20px; }
.footer-banner-line { display: flex; gap: 22px; color: #ffffff; font-size: 15px; }
.footer-banner-line a { color: #ffffff; }
.footer-banner-address { color: #ffffff; font-size: 15px; }
.footer-banner-officers { color: #ffd700; font-weight: 700; font-size: 13px; }
/* Mobile-only elements, hidden on desktop */
.footer-logos-mobile, .footer-banner-mobile { display: none; }
.desktop-only { display: inline; }
.footer-logos img { background: transparent; }
.footer-top { max-width: 1100px; margin: 0 auto; padding: 30px 10px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; justify-content: space-between; }
.footer-follow-wrap { display: flex; justify-content: flex-end; }
.footer-col h4 { font-size: 16px; color: #ffffff; margin-bottom: 10px; }
.footer-col ul { list-style: none; padding-left: 0; color: rgba(255,255,255,.9); font-size: 14px; }
.footer-col ul li { text-align: left; }
.footer-col ul li + li { margin-top: 6px; }
.footer-col a { color: #ffffff; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-col.quick-links { text-align: center; }
.footer-col.quick-links ul { display: inline-block; text-align: left; }
.footer-social a { width: 36px; height: 36px; border-radius: 18px; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.2); color: #ffffff; border: 1px solid rgba(255,255,255,.3); }
.footer-social a:hover { background: rgba(255,255,255,.25); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.2); padding: 16px 40px; text-align: center; color: rgba(255,255,255,.9); font-size: 13px; }
.footer-links { display: flex; gap: 10px; justify-content: center; margin-bottom: 6px; }
.footer-links a { color: #ffffff; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-regular { margin-bottom: 6px; color: rgba(255,255,255,.8); }
.copyright { color: rgba(255,255,255,.7); }

@media (max-width: 1023px) {
  .footer-top { grid-template-columns: 1fr 1fr; padding: 24px 20px; }
  .footer-follow-wrap { justify-content: flex-start; }
}
@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-follow-wrap { justify-content: flex-start; }
  .footer-col.quick-links { text-align: left; }
  .footer-col.quick-links ul { display: block; text-align: left; }
  .footer-bottom { padding: 14px 16px; }
  /* Hide desktop version, show mobile version */
  .footer-logos { display: none; }
  .footer-banner-center { display: none; }
  .footer-logos-mobile { display: flex; width: 100%; padding: 12px 8px; gap: 8px; justify-content: space-around; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); }
  .footer-logos-mobile .footer-logo { height: 70px; width: auto; object-fit: contain; }
  .footer-banner-mobile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 10px 10px 14px; }
  .footer-banner-title { flex-wrap: wrap; justify-content: center; }
  .footer-banner-title-text { font-size: 13px; color: #ffffff; }
  .footer-banner-line { gap: 12px; font-size: 12px; color: #ffffff; }
  .footer-banner-line a { color: #ffffff; }
  .footer-banner-address { font-size: 11px; color: #ffffff; }
  .footer-banner-officers { font-size: 10px; color: #ffd700; }
  .desktop-only { display: none; }
}

@media (max-width: 480px) {
  .footer-logos-mobile { gap: 4px; padding: 10px 6px; }
  .footer-logos-mobile .footer-logo { height: 60px; }
  .footer-banner-title-text { font-size: 12px; }
  .footer-banner-line { flex-direction: column; gap: 4px; }
  .footer-banner-address { font-size: 10px; }
  .footer-banner-officers { font-size: 10px; }
}

/* Mobile header/menu at <1060px */
@media (max-width: 1060px) {
  .hamburger { display: inline-flex; order: 3; margin-left: 8px; }
  .header { gap: 10px; position: relative; }
  .logo { order: 1; }
  .nav { display: none; order: 0; }
  .header-right { order: 2; margin-left: auto; display: flex; align-items: center; gap: 8px; }

  .header.is-open .nav {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 10px 20px 15px 20px;
    z-index: 9999;
  }

  .header.is-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header.is-open .nav-list > li > a {
    padding: 10px 0;
  }

  .header.is-open .dropdown {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding-left: 10px;
  }

  .header.is-open .has-dropdown.open > .dropdown { display: block; }
  /* Make menu items full width inside mobile panel */
  .header.is-open .nav-list { width: 100%; }
  .header.is-open .nav-list > li { width: 100%; }
  .header.is-open .nav-list > li > a { width: 100%; }
  .header.is-open .dropdown { width: 100%; }
  /* Mobile: show dropdown chevron icons on items with children */
  .header.is-open .has-dropdown > a {
    position: relative;
    padding-right: 22px; /* room for chevron */
  }
  .header.is-open .has-dropdown > a::after {
    content: "\f107"; /* down chevron */
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
  }
  .header.is-open .has-dropdown.open > a::after {
    content: "\f106"; /* up chevron when open */
  }
  /* Also apply to nested dropdown triggers inside the opened mobile menu */
  .header.is-open .dropdown .has-dropdown > a {
    position: relative;
    padding-right: 22px;
  }
  .header.is-open .dropdown .has-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
  }
  .header.is-open .dropdown .has-dropdown.open > a::after {
    content: "\f106";
  }
}

@media (max-width: 767px) {
  .header-right .lang-toggle { display: none; }
  .header.is-open .nav-lang {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  .header.is-open .nav-lang .lang-toggle { width: 100%; justify-content: center; }
  /* Show language item inside menu list on mobile */
  .header.is-open .nav-lang-item {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  .header.is-open .nav-lang-item .lang-toggle {
    display: inline-flex;
    margin: 0 auto;
  }
  .header {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .header-right { margin-left: auto; }

  .nav-list {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tab { font-size: 12px; padding: 6px 12px; }
  .tab i { font-size: 16px; }

  .hero {
    padding: 16px 12px;
  }

  .hero-text h1 { font-size: 24px; }
  .hero-text p { font-size: 14px; }

  .hero-arrow {
    width: 30px;
    height: 30px;
  }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }

  .promo {
    padding: 30px 16px;
  }

  .promo-cards {
    grid-template-columns: 1fr;
  }

  .promo-text {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    border: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 350px) {
  body { font-size: 13px; }
  .header { padding: 8px 10px; }
  .logo { font-size: 14px; }
  .logo-img { height: 18px; }
  .section { padding: 25px 10px; }
  .section-head h2 { font-size: 16px; }
  .hero-text h1 { font-size: 20px; }
  .hero-text p { font-size: 13px; }
  .hero-form { padding: 15px; }
  .hero-form h3 { font-size: 16px; }
  .hero-hint { width: calc(100% - 12px); padding: 6px 8px; }
  .hint-text { font-size: 10.5px; }
  .hint-icon { width: 26px; height: 26px; font-size: 12px; }
  .btn-outline, .btn-link, .btn-ghost { padding: 6px 10px; font-size: 11px; }
  .community-hero-inner h2 { font-size: 20px; }
  .feature-card { grid-template-columns: 40px 1fr; padding: 10px; gap: 8px; }
  .feature-icon { width: 40px; height: 40px; font-size: 16px; }
  .feature-body h3 { font-size: 14px; }
  .feature-body p { font-size: 12px; }
  .story-text h3 { font-size: 18px; }
  .footer-top { padding: 15px 10px; }
  .footer-bottom { padding: 10px; font-size: 11px; }
  .footer-logos-mobile .footer-logo { height: 45px; }
  .footer-banner-title-text { font-size: 11px; }
  .footer-banner-line, .footer-banner-address, .footer-banner-officers { font-size: 10px; }
}
