/* ===== Base ===== */
:root {
  --cu-bg:    #faf8f1;
  --cu-text:  #334443;
  --cu-teal:  #34656d;
  --cu-cream: #faeab1;
  --cu-dark:  #2c2222;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: var(--cu-bg);
  color: var(--cu-text);
  padding-top: 72px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Alex Brush', cursive;
  font-weight: 400;
}

/* ===== Navbar ===== */
.navbar-main {
  background: var(--cu-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-divider {
  border-color: rgba(255,255,255,.15);
  margin: .25rem 0;
}

.navbar-brand-custom {
  font-family: 'Alex Brush', cursive;
  font-size: 1.9rem;
  color: var(--cu-cream);
}

.nav-link-custom {
  font-size: .78rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.7);
}

.lang-btn-active {
  font-size: .72rem;
  letter-spacing: 1px;
  color: var(--cu-cream);
  font-weight: 500;
  background: none;
}

.lang-btn-inactive {
  font-size: .72rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,.4);
  background: none;
}

.lang-btn-active:hover,
.lang-btn-inactive:hover {
  background: var(--cu-cream);
  color: var(--cu-dark);
  opacity: .85;
}

/* ===== Booking button ===== */
.btn-book {
  background: var(--cu-cream);
  color: var(--cu-dark);
  font-size: .75rem;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.btn-book:hover {
  background: var(--cu-cream);
  color: var(--cu-dark);
  opacity: .85;
}

/* ===== Footer ===== */
.footer-main {
  background: var(--cu-dark);
  color: rgba(255,255,255,.55);
}

.footer-logo {
  font-family: 'Alex Brush', cursive;
  font-size: 1.7rem;
  color: var(--cu-cream);
}

.footer-copy {
  font-size: .8rem;
}

.footer-link {
  font-size: .75rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--cu-cream);
}

.footer-admin-link {
  color: inherit;
  text-decoration: none;
}

/* ===== Typography ===== */
.page-title {
  font-size: 3rem;
  color: var(--cu-dark);
}

.page-title--lg {
  font-size: 3.2rem;
}

.lead-text {
  color: #5a6f6e;
  font-size: 1.05rem;
  line-height: 1.7;
}

.muted-text {
  color: #aaa;
  font-size: .78rem;
}

.card-title-script {
  font-family: 'Alex Brush', cursive;
  font-size: 1.7rem;
  color: var(--cu-dark);
}

.card-body-text {
  color: #5a6f6e;
  font-size: .92rem;
}

.section-label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cu-teal);
  margin-bottom: 4px;
}

.form-label-styled {
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cu-teal);
}

/* ===== Buttons ===== */
.btn-dark-custom {
  background: var(--cu-dark);
  color: #fff;
  font-size: .78rem;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.btn-dark-custom:hover {
  background: var(--cu-dark);
  color: #fff;
  opacity: .85;
}

/* ===== Links ===== */
.link-teal {
  color: var(--cu-teal);
  text-decoration: none;
}

.link-inherit {
  color: inherit;
  text-decoration: none;
}

.vr-divider {
  opacity: .15;
}

/* ===== Posts ===== */
.posts-scroll {
  height: 520px;
  overflow-y: auto;
  padding-right: 8px;
}

.post-img {
  object-fit: cover;
  height: 200px;
}

/* ===== Gallery ===== */
.gallery-thumb {
  overflow: hidden;
  border-radius: 2px;
  height: 260px;
}

.gallery-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 4s ease;
}

.gallery-thumb:hover img {
  transform: translateY(calc(-100% + 260px));
}

/* ===== Impressum ===== */
.impressum-h2 {
  font-size: 1.5rem;
  color: var(--cu-dark);
}

.impressum-p {
  color: #5a6f6e;
  line-height: 1.7;
}
