/* ===============================
   GLOBAL
================================= */

body {
    margin: 0;
    font-family: 'Quicksand', serif;
    color: #2e2e2e;
    background-color: #fff;
}

/* ===============================
   HERO
================================= */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #f6f4f2;
    color: #5a4a45;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
}

.sticky-text {
    position: sticky;
    top: 30px;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 10rem;
    font-weight: 500;
    color: #bad6e5;
    margin-bottom: 0;
}

.hero-text .datum {
    font-size: 5rem;
    line-height: 1.2;
    margin-top: 10px;
}

.unterschrift {
    font-family: 'Cinzel', serif;
    color: #bad6e5;
    font-size: 2rem;
    margin: 10px 0;
}

/* ===============================
   COUNTDOWN
================================= */

.countdown {
    background-color: #fdd5b1;
    color: #ffffff;
    text-shadow: none;
    font-size: 1.5rem;
    margin-top: 0;
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Quicksand', serif;
}

.countdown span {
    font-weight: bold;
}

.countdown .label {
    margin-right: 10px;
}

/* ===============================
   CONTENT
================================= */

.content {
    padding: 20px;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    gap: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.tabs .active {
    color: #a05c64;
    border-bottom: 3px solid #a05c64;
}

.einladung h2 {
    font-size: 2.5rem;
    color: #fdd5b1;
    margin: 30px 0 10px;
}

.einladung .text {
    font-family: 'Quicksand', serif;
    font-size: 1.5rem;
    line-height: 1;
}

.einladung .termine {
    font-size: 1rem;
}

/* ===============================
   FAQ
================================= */

.faq {
    max-width: 700px;
    margin: 60px auto;
    font-family: 'Quicksand', serif;
}

.faq h1 {
    font-size: 2rem;
}

.faq h2 {
    font-size: 0.4rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 15px 18px;
    margin: 0;
    text-align: left;
}

.heart-image {
    height: 80px;
}

/* ===============================
   BUTTONS
================================= */

.btn {
    background-color: #555;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
}

.btn.large {
    background-color: rgba(186, 214, 229, 0.8);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    transition: background-color 0.3s ease;
}

/* ===============================
   LOGIN
================================= */

.login {
    font-family: 'Quicksand', serif;
    color: #2e2e2e;
    background-color: rgba(253, 213, 177, 0.2);
    text-align: center;
    padding-top: 150px;
}

.login h1 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #bad6e5;
}

.login p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.login input[type="password"] {
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #bad6e5;
    border-radius: 6px;
    width: 250px;
    max-width: 90%;
    margin-bottom: 20px;
}

.login button {
    background-color: rgba(186, 214, 229, 0.8);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login button:hover {
    background-color: #bad6e5;
}

/* ===============================
   IMPRESSUM
================================= */

.impressum {
    text-align: center;
    font-size: 0.8rem;
    margin: 60px 0 30px;
    color: #fdd5b1;
}

.impressum-link {
    color: #fdd5b1;
    text-decoration: none;
}

.impressum-link:hover {
    text-decoration: underline;
}

/* ===============================
   IMPRESSUM PAGE
================================= */

body.impressum-page {
    font-family: 'Quicksand', sans-serif;
    color: #2e2e2e;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.impressum-content {
    max-width: 600px;
    margin: 50px auto;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 20px;
    width: 80%;
}

.impressum-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.impressum-content a {
    color: #bad6e5;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

.back-link {
    display: block;
    margin-top: 40px;
    text-align: center;
}

.maintenance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.maintenance-box {
  background-color: #fdd5b1;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  max-width: 90%;
}

