:root {
    --bg-color: rgba(172, 189, 155, 1.0);
    --text-color: #333;
    --accent: #8d775f;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* --- SEKTIONEN --- */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    background-color: var(--bg-color); /* Verdeckt den Cube beim Scrollen */
}

/* --- BILDER-STAPEL (Vor dem Cube) --- */
.image-stack-section {
    padding-bottom: 40px !important;
    margin-bottom: -0px; /* Zieht die Sektion aktiv in den Cube-Bereich */
    z-index: 20;
}

.image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

.invitation-image {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
}


/* --- TYPOGRAFIE & DETAILS --- */
.names {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
}

.subtitle {
    letter-spacing: 4px;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 10px;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 20px 0;
}

.date-badge {
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    padding: 10px 30px;
    margin: 20px 0;
}

.big-day {
    display: block;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}
/*
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    z-index: 100; /* Damit Buttons immer klickbar sind */
}
/*
.btn:hover {
    background: var(--accent);
    color: white;
}

/* --- ANIMATIONEN --- */
/*.reveal {
    opacity: 0;
    transition: all 1.2s ease-out;
}

.reveal.active {
    opacity: 1;
   transform: translate(0, 0) !important;
}

.slide-up { transform: translateY(50px); }
*/
/* --- COUNTDOWN --- */
.countdown-container {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.gallery-section {
    text-align: center;
    padding: 40px 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

: white;
}

.music-btn {
    position: fixed;
    top: 15px;
    left: 50vw;
    transform: translateX(-50%);
    z-index: 999999;

    padding: 14px 26px;
    border: 1px solid var(--accent);
    background: rgba(255, 255, 255, 0.7);
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 20px;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

#musicToggle {
    position: fixed !important;
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 1.1rem !important;
    border-radius: 25px !important;
    z-index: 999999 !important;
}