@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;600;700&display=swap');

:root {
  --bg: #f5f1ea;
  --text: #2a241f;
  --accent: #7a5c3e;
  --card: rgba(255, 255, 255, 0.82);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Great Vibes', cursive;
  color: var(--text);
  background: linear-gradient(180deg, #efe7dc 0%, #f8f5f1 100%);
  padding-top: 0;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(122,92,62,.92), rgba(48,38,28,.88));
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.12), transparent 55%);
}

.hero__content {
  position: relative;
  text-align: center;
  color: #fff8ef;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  backdrop-filter: blur(3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
}

.hero p {
  margin: .25rem 0 0;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #fff2dd;
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1rem;
  background: rgba(255, 248, 239, 0.95);
  border-bottom: 1px solid rgba(122,92,62,.15);
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.navbar a {
  text-decoration: none;
  color: #4a3828;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .55rem .9rem;
  border-radius: 999px;
}

.navbar a:hover {
  background: #7a5c3e;
  color: #fff8ef;
}

.carousel {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
}

.carousel__track {
  position: relative;
  min-height: 180px;
  background: rgba(255, 248, 239, 0.92);
  border-radius: 20px;
  padding: 1.5rem;
  overflow: hidden;
}

.carousel__slide {
  display: none;
}

.carousel__slide.active {
  display: block;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.5rem;
}

.carousel {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.carousel h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.carousel p {
  font-size: 1.05rem;
  font-weight: 400;
}

.board-table-wrap {
  overflow-x: auto;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
  background: rgba(255, 248, 239, 0.96);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.board-table th,
.board-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(122,92,62,.12);
  vertical-align: top;
}

.board-table th {
  background: #7a5c3e;
  color: #fff8ef;
  font-weight: 700;
}

.board-table tbody tr:nth-child(even) {
  background: rgba(122,92,62,.04);
}

.board-table a {
  color: #4a3828;
  text-decoration: none;
  word-break: break-word;
}

.board-table a:hover {
  text-decoration: underline;
}

.home-feature-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1.5rem 0;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.card,
.card p,
.card h2 {
  font-family: 'Montserrat', sans-serif;
}

.content.fixed-layout {
  height: auto;
  overflow: visible;
}

.content.fixed-layout .card {
  overflow: visible;
  max-height: none;
}

html,
body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.content,
.fixed-layout,
.card,
main {
  height: auto;
  max-height: none;
  overflow: visible;
}

.contact-form {
  margin-top: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.form-row--top {
  align-items: start;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(122,92,62,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: #2a241f;
}

.contact-form input[readonly] {
  background: rgba(122,92,62,.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-submit {
  margin-top: 0.5rem;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: #7a5c3e;
  color: #fff8ef;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.contact-submit:hover {
  background: #5f452d;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
}

.navbar .dropdown {
  display: flex;
}

.dropdown-toggle {
  display: inline-block;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: none;
  border: none;
  color: #4a3828;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  cursor: pointer;
}

.dropdown-toggle:hover {
  background: #7a5c3e;
  color: #fff8ef;
}