/* ========================================================= */
/* GLOBAL */
/* ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
  background: transparent; /* statt #dcd7d0 */
  height: 100%;
}

body {
    background: transparent;
    color: #8c8778;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Wenn Menü offen ist: Scrollen deaktivieren */
body.no-scroll {
  overflow: hidden;
}

/* ========================================================= */
/* BACKGROUND */
/* ========================================================= */

.bg-image {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url("couchspot2.png") center / cover no-repeat;
  z-index: -1;
}

/* ========================================================= */
/* MENU OVERLAY */
/* ========================================================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  padding: 22px 18px;
}

.menu-link {
  text-decoration: none;
  color: #f0e7d6;
  font-size: 44px;
  font-weight: 200; /* dünn/elegant */
  letter-spacing: -0.8px;
  line-height: 1.05;
  transition: transform 140ms ease, opacity 140ms ease;
  opacity: 0.95;
}

.menu-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

/* Responsive Font */
@media (max-width: 800px) {
  .menu-link {
    font-size: 32px;
  }
}

/* ========================================================= */
/* HEADER */
/* ========================================================= */

.header {
    width: 100%;
    padding: 60px 0 10px;
    position: relative;
    z-index: 2;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.center-logo {
    height: 38px;
    justify-self: center;
}

.left-logo {
    height: 38px;
    margin-right: -20px;
    justify-self: left;
}

.header-login {
    display: flex;
    gap: 5px;
    justify-self: end;
}

.login-input {
    width: 216px;
    padding: 10px 16px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #f5f5f5;
}

/* ========================================================= */
/*      DOCG         */
/* ========================================================= */

.docg-section {
  position: fixed;
  bottom: 100px; /* über Footer */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.docgtext-section {
  position: fixed;
  bottom: 75px; /* über Footer */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}



/* ========================================================= */
/* BUTTON STYLE (wird mehrfach verwendet: Menu + Login Button) */
/* ========================================================= */

.login-button {
    padding: 12px;
    font-size: 16px;
    background: #a88d32;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-button:hover {
  background: #e8c03b;
}


.menu-button {
    width: 103px;
    padding: 12px;
    font-size: 16px;
    background: #a88d32;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-button:hover {
  background: #e8c03b;
}


/* ========================================================= */
/* FILTER */
/* ========================================================= */

.filter-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.filter-box {
    width: 1200px;
    background: url("filter-bg.png") no-repeat center / cover;
    padding: 50px;
    border-radius: 80px;
    display: flex;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.search-field,
select {
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #f5f5f5;
    outline: none;
}

.search-field {
    flex: 1;
}

select {
    min-width: 140px;
    cursor: pointer;
}

/* ========================================================= */
/* TITLE */
/* ========================================================= */

.verkostungen {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #282828;
    margin-top: 60px;
    z-index: 2;
    position: relative;
}

.results-sort {
    text-align: center;
    font-size: 12px;
    color: #dcd7d0;
    margin-top: 20px;
    position: relative;
}


/* -------------------- */
/* -------------------- */
/* --- LOGIN SECTION --- */
/* -------------------- */

.login-box {
  padding: 140px;
  background: #5f5a5063;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-input {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.login-titel {
  font-size: 23px;
  color: #d3b757;
  font-weight: 100;
  text-align: center;
  margin-bottom: 20px;
}

.login-error {
  color: #c6a843;
  font-size: 14px;
  min-height: 18px;
  text-align: center;
}


/* -------------------- */
/* -------------------- */
/* --- HERO SECTION --- */
/* -------------------- */

.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 130px;
}

.hero-container {
    width: 500px;
    max-width: 700px;
    padding: 6px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #eae5df;
}

.login-container {
    width: 500px;
    border: 2px solid #505046;
    border-radius: 30px;
    overflow: hidden;
}


/* ========================================================= */
/* RESULTS */
/* ========================================================= */

.results-container-outer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.results-container {
    width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

/* ========================================================= */
/* RESULT ROW */
/* ========================================================= */

.result-card {
    background: transparent;
    padding: 0;
    box-shadow: none;
    z-index: 2;
    animation: fadeUp 0.35s ease both;
}

.result-inner {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 16px;
}

/* ========================================================= */
/* LEFT & RIGHT CARDS */
/* ========================================================= */

.result-right {
    background: #ebe8e3;
    color: #2a2a2a;
    padding: 16px 40px;
    border-radius: 22px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: 0.15s ease;
}

.result-left {
    background: #2a2a2a;
    color: #f5f5f5;
    padding: 16px 20px;
    border-radius: 22px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.result-left h2,
.result-right h2 {
    font-size: 26px;
    font-weight: 800;
}

.meta {
    font-size: 14px;
    font-weight: 500;
}

.result-right:hover {
    background: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===================== */
/* === DOCG LOGO ========= */
/* ===================== */

.docg-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
}

.docg-container {
  width: auto;
  max-height: 82px;
  font-size: 16px;
  font-weight: 200;
  overflow: hidden;
  text-align: center;
  margin: 0;
}

.docg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.docgtext-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ========================================================= */
/* HERO*/
/* ========================================================= */

.hero-container {
    display: flex;
    justify-content: center;
}

.hero-box {
    width: 1100px;
    height: 600px;
    background: url("couchspot2.png") no-repeat center / cover;
    border-radius: 30px;
    display: flex;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 2;
}



/* ========================================================= */
/* ANIMATION */
/* ========================================================= */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================================= */
/* FOOTERS */
/* ========================================================= */

.big-footer-section {
    width: 100%;
    background-color: #4b473b;
    padding: 80px 0;
}

.big-footer-container {
    width: 868px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    color: #cdb88e;
}

.big-footer-column {
    width: 24%;
    text-align: center;
}

.big-footer-column p {
    font-size: 10px;
}

.upper-footer-section {
    width: 100%;
    height: 10px;
    margin-top: auto;
    background-color: #5d584a;
    color: #667259;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upper-footer-container {
    width: 868px;
}

.small-footer-section {
    width: 100%;
    height: 50px;
    background-color: #24221c;
    color: #5d584a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-footer-container {
    width: 868px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-footer-right {
    text-decoration: none;
    color: inherit;
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media (max-width: 940px) {
    .filter-box,
    .results-container {
        width: 92%;
    }

    .filter-wrapper {
        margin-top: 40px;
    }

    .header-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .left-logo {
        display: none;
    }

    .header-login {
        justify-self: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .result-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .filter-box {
        flex-direction: column;
        border-radius: 16px;
        padding: 20px;
    }
}