
/* generic */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #1A2A3A;
  --mint: #CEE8E3;
  --gold: #C9A84C;
  --creme: #F7F3ED;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-muted: #5A5A5A;
  --gold-light: rgba(201, 168, 76, 0.10);
  --mint-light: rgba(206, 232, 227, 0.35);
  --dark-light: rgba(26, 42, 58, 0.04);
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--creme);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  hyphens: auto;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* cookie banner */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  top: 80px;
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

#cookieAccept {
  background: var(--gold);
  color: #fff;
}

#cookieDecline {
  background: #636e72;
  color: #fff;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner a {
  color: var(--gold);
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* navigation, top row */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 42, 58, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 14px 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center; }

/* top left logo */

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600;
  color: white;
  text-decoration: none; line-height: 1.2;
}

.two-line-block {
  display: inline-block; /* shrink to fit line 1 */
}

.two-line-line1 {
  white-space: nowrap;
}

.two-line-line2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-top: 2px;
}

.two-line-line2 .dot {
  margin: 0 0.5em;
}

/* top right */

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* top right button */

.btn-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(201,168,76,0.2);
}

.btn-nav:hover {
  background: #b8973f;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

nav + * {
  padding-top: 70px;
}



/* Fusszeile */

footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  text-align: center;
}

footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35); 
}

footer a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s; 
}

footer a:hover {
  color: var(--gold); 
}

.footer-social {
  margin-bottom: 12px; 
}

.footer-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  margin: 0 4px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold); 
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.4); 
}




