/* ============================================================
   WEDDING5 — "Editorial / Typografie"
   Minimalist, magazine-style wedding template
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS Custom Properties
   ---------------------------------------------------------- */
:root {
    --primary-color: #1A1A1A;
    --secondary-color: #C4A77D;
    --accent-color: #8B4513;
    --dark-color: #0D0D0D;
    --light-color: #FAFAF8;
    --white-color: #FFFFFF;
    --font-display: 'Bebas Neue', sans-serif;
    --font-primary: 'Cormorant', serif;
    --font-secondary: 'Source Sans 3', sans-serif;
    /* Kanonische Font-Aliase */
    --font-heading: var(--font-primary);
    --font-body: var(--font-secondary);
    --section-padding: 120px 0;
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------------------------
   1. Base & Global
   ---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    font-family: var(--font-secondary);
    color: var(--primary-color);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0;
}

p {
    margin-top: 0;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-medium);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--secondary-color);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--secondary-color);
    color: var(--white-color);
}

.display-font {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-padding {
    padding: var(--section-padding);
}

/* ----------------------------------------------------------
   1b. Spinner
   ---------------------------------------------------------- */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ----------------------------------------------------------
   2. Navbar (.navbar-editorial)
   ---------------------------------------------------------- */
.navbar-editorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-editorial.navbar-scrolled {
    background: var(--white-color);
    padding: 12px 0;
    border-bottom: 1px solid rgba(196, 167, 125, 0.3);
    box-shadow: var(--shadow-soft);
}

.navbar-editorial .navbar-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-color);
    transition: var(--transition-medium);
}

.navbar-editorial.navbar-scrolled .navbar-brand {
    color: var(--primary-color);
}

.navbar-editorial .nav-link {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    transition: var(--transition-medium);
}

.navbar-editorial.navbar-scrolled .nav-link {
    color: var(--primary-color);
}

.navbar-editorial .nav-link:hover,
.navbar-editorial .nav-link.active {
    color: var(--secondary-color);
}

.navbar-editorial.navbar-scrolled .nav-link:hover,
.navbar-editorial.navbar-scrolled .nav-link.active {
    color: var(--secondary-color);
}

.navbar-editorial .navbar-toggler {
    border: none;
    padding: 5px;
    outline: none;
    box-shadow: none;
}

.navbar-editorial .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-editorial .navbar-toggler-icon {
    width: 22px;
    height: 2px;
    background: var(--white-color);
    display: block;
    position: relative;
    transition: var(--transition-medium);
}

.navbar-editorial.navbar-scrolled .navbar-toggler-icon {
    background: var(--primary-color);
}

.navbar-editorial .navbar-toggler-icon::before,
.navbar-editorial .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: var(--transition-medium);
}

.navbar-editorial .navbar-toggler-icon::before {
    top: -7px;
}

.navbar-editorial .navbar-toggler-icon::after {
    bottom: -7px;
}

/* ----------------------------------------------------------
   3. Hero Section (.hero-editorial)
   ---------------------------------------------------------- */
.hero-editorial {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-split-left {
    flex: 0 0 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-split-right {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-text {
    text-align: center;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

.name-display {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.2em;
    color: var(--white-color);
    margin: 0;
    text-transform: uppercase;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.gold-line {
    width: 80px;
    height: 1px;
    background: var(--secondary-color);
    margin: 20px auto;
    border: none;
}

.ampersand-editorial {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 3.5rem;
    color: var(--secondary-color);
    display: block;
    margin: 10px 0;
    line-height: 1;
}

.date-display {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 30px;
}

/* Scroll Line Indicator */
.scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-line span {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.scroll-line-indicator {
    width: 1px;
    height: 60px;
    background: var(--secondary-color);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ----------------------------------------------------------
   4. Section Headers (.section-header-editorial)
   ---------------------------------------------------------- */
.section-header-editorial {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-editorial.text-start {
    text-align: left;
}

.gold-line-section {
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
    margin-bottom: 20px;
    border: none;
}

.section-header-editorial:not(.text-start) .gold-line-section {
    margin-left: auto;
    margin-right: auto;
}

.section-header-editorial h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.1;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.5);
    font-style: italic;
    margin-top: 10px;
}

/* ----------------------------------------------------------
   5. Countdown (.countdown-editorial)
   ---------------------------------------------------------- */
.countdown-editorial {
    padding: 60px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.countdown-unit {
    text-align: center;
    padding: 0 25px;
}

.countdown-unit + .countdown-unit {
    border-left: 1px solid var(--secondary-color);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-color);
    display: block;
}

.countdown-label {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.4);
    margin-top: 5px;
    display: block;
}

/* ----------------------------------------------------------
   6. Story Section (.story-editorial)
   ---------------------------------------------------------- */
.story-editorial {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.story-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-content p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(26, 26, 26, 0.8);
}

.section-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 15rem;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1;
    user-select: none;
}

/* ----------------------------------------------------------
   7. Agenda (.agenda-editorial)
   ---------------------------------------------------------- */
.agenda-editorial {
    padding: var(--section-padding);
}

.agenda-card {
    background: var(--white-color);
    padding: 35px 30px;
    border-top: 3px solid var(--secondary-color);
    position: relative;
    height: 100%;
    transition: var(--transition-medium);
}

.agenda-card:hover {
    box-shadow: var(--shadow-soft);
}

.agenda-card .timeline-dot {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.agenda-card .timeline-time {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.agenda-card .timeline-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0;
    color: var(--primary-color);
}

.agenda-card .timeline-description {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Swiper Navigation — Agenda */
.agenda-editorial .swiper-button-next,
.agenda-editorial .swiper-button-prev {
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
}

.agenda-editorial .swiper-button-next::after,
.agenda-editorial .swiper-button-prev::after {
    font-size: 1rem;
}

.agenda-editorial .swiper-pagination-bullet {
    background: rgba(26, 26, 26, 0.2);
    opacity: 1;
    width: 8px;
    height: 8px;
    border-radius: 0;
    transition: var(--transition-medium);
}

.agenda-editorial .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 24px;
}

/* ----------------------------------------------------------
   8. Venue (.venue-editorial)
   ---------------------------------------------------------- */
.venue-editorial {
    padding: var(--section-padding);
}

.venue-split {
    display: flex;
}

.venue-info-panel {
    flex: 0 0 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-color);
}

.venue-map-panel {
    flex: 0 0 60%;
    min-height: 500px;
    position: relative;
}

.venue-map {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.venue-info-panel h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.venue-info-panel address,
.venue-info-panel .venue-address {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.7);
    font-style: normal;
    line-height: 1.8;
}

/* Location Tabs */
.location-tabs {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.location-tab {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.5);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 8px 0;
    cursor: pointer;
    transition: var(--transition-medium);
}

.location-tab:hover,
.location-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

/* Map Marker */
.wedding-map-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-align: center;
}

/* ----------------------------------------------------------
   9. Gallery (.gallery-editorial)
   ---------------------------------------------------------- */
.gallery-editorial {
    padding: var(--section-padding);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gallery-masonry-item img {
    width: 100%;
    display: block;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                filter 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay i {
    color: var(--secondary-color);
    font-size: 2rem;
    transition: var(--transition-medium);
    transform: scale(0.8);
}

.gallery-masonry-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-masonry-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-masonry-item:hover img {
    transform: scale(1.03);
}

.gallery-masonry:hover .gallery-masonry-item:not(:hover) img {
    filter: grayscale(30%);
    transition: filter 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ----------------------------------------------------------
   10. RSVP (.rsvp-editorial)
   ---------------------------------------------------------- */
.rsvp-editorial {
    padding: 0;
}

.rsvp-split {
    display: flex;
    min-height: 600px;
}

.rsvp-statement {
    flex: 0 0 40%;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.rsvp-statement-text {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--white-color);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.1em;
}

.rsvp-form-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    background: var(--white-color);
}

.rsvp-form-panel .form-group,
.rsvp-form-panel .mb-3,
.rsvp-form-panel .mb-4 {
    margin-bottom: 1.5rem;
}

/* Form Inputs */
.rsvp-form-panel .form-control,
.rsvp-editorial .form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-secondary);
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

.rsvp-form-panel .form-control:focus,
.rsvp-editorial .form-control:focus {
    border-bottom-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
}

.rsvp-form-panel .form-control::placeholder {
    color: rgba(26, 26, 26, 0.35);
}

.rsvp-form-panel .form-select,
.rsvp-editorial .form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background-color: transparent;
    font-family: var(--font-secondary);
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

.rsvp-form-panel .form-select:focus,
.rsvp-editorial .form-select:focus {
    border-bottom-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
}

.rsvp-form-panel textarea.form-control,
.rsvp-editorial textarea.form-control {
    border: 1px solid #ddd;
    padding: 12px;
}

.rsvp-form-panel textarea.form-control:focus,
.rsvp-editorial textarea.form-control:focus {
    border-color: var(--secondary-color);
}

/* Labels */
.rsvp-form-panel .form-label,
.rsvp-editorial .form-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 500;
    margin-bottom: 5px;
}

/* Attendance Options */
.attendance-options {
    display: flex;
    gap: 15px;
}

.attendance-btn {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--secondary-color);
    padding: 15px 25px;
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-medium);
    text-transform: uppercase;
}

.attendance-btn:hover {
    background: rgba(196, 167, 125, 0.1);
}

.btn-check:checked + .attendance-btn {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

/* Submit Button */
.btn-editorial {
    background: var(--secondary-color);
    color: var(--white-color);
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
    display: inline-block;
}

.btn-editorial:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.btn-editorial:focus {
    box-shadow: none;
    outline: none;
}

/* ----------------------------------------------------------
   11. Additional Info (.info-editorial)
   ---------------------------------------------------------- */
.info-editorial {
    padding: var(--section-padding);
}

.info-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block:nth-child(odd) .info-inner {
    padding-left: 40px;
    border-left: 3px solid var(--secondary-color);
}

.info-block:nth-child(even) .info-inner {
    padding-right: 40px;
    border-right: 3px solid var(--secondary-color);
    text-align: right;
}

.info-icon-editorial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-block:nth-child(even) .info-icon-editorial {
    margin-left: auto;
}

.info-content {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.8);
}

.info-content h3,
.info-content h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ----------------------------------------------------------
   12. Contacts (.contacts-editorial)
   ---------------------------------------------------------- */
.contacts-editorial {
    padding: var(--section-padding);
}

.contacts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-card-editorial {
    text-align: center;
    max-width: 200px;
}

.contact-image-editorial {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.contact-image-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.contact-role {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.contact-details {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* ----------------------------------------------------------
   13. FAQ (.faq-editorial)
   ---------------------------------------------------------- */
.faq-editorial {
    padding: var(--section-padding);
}

.faq-editorial .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(196, 167, 125, 0.3);
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
}

.faq-editorial .accordion-item:first-child {
    border-top: 1px solid rgba(196, 167, 125, 0.3);
}

.faq-editorial .accordion-button {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 500;
    background: transparent;
    padding: 20px 0;
    border-radius: 0;
    color: var(--primary-color);
    box-shadow: none;
    transition: var(--transition-medium);
}

.faq-editorial .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-editorial .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background: transparent;
    box-shadow: none;
}

.faq-editorial .accordion-button::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: none;
    background-image: none;
    transform: none;
    width: auto;
    height: auto;
    line-height: 1;
    color: var(--secondary-color);
    transition: var(--transition-medium);
}

.faq-editorial .accordion-button:not(.collapsed)::after {
    content: '\d7';
    transform: none;
    background-image: none;
}

.faq-editorial .accordion-body {
    font-family: var(--font-secondary);
    padding: 10px 0 25px;
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.8;
}

.faq-editorial .accordion-collapse {
    border: none;
}

/* ----------------------------------------------------------
   14. Footer (.footer-editorial)
   ---------------------------------------------------------- */
.footer-editorial {
    background: var(--dark-color);
    padding: 80px 0 30px;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white-color);
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.footer-date {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}

.footer-gold-separator {
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
    margin: 40px auto;
    border: none;
}

.footer-gallery-editorial {
    display: flex;
    overflow: hidden;
    margin-bottom: 40px;
}

.footer-gallery-editorial img {
    height: 150px;
    flex: 1;
    min-width: 0;
    object-fit: cover;
}

.footer-text {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: center;
}

.legal-links {
    text-align: center;
}

.legal-links a {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-medium);
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-secondary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 99;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------------
   15. Modals
   ---------------------------------------------------------- */
.modal-content {
    border-radius: 0;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--dark-color);
    color: var(--white-color);
    border-bottom: none;
    padding: 20px 25px;
    border-radius: 0;
}

.modal-header .modal-title {
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.6;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px 25px;
    font-family: var(--font-secondary);
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 25px;
}

/* ----------------------------------------------------------
   16. Contact CTA Button
   ---------------------------------------------------------- */
.btn-contact {
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 0;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 25px;
    font-size: 0.9rem;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-contact:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.btn-contact:focus {
    box-shadow: none;
    outline: none;
}

/* ----------------------------------------------------------
   17. Claim Code Form
   ---------------------------------------------------------- */
.claim-code-section {
    padding: 40px 0;
}

.claim-code-form .form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-secondary);
    padding: 12px 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

.claim-code-form .form-control:focus {
    border-bottom-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
}

.claim-code-form .form-control::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: rgba(26, 26, 26, 0.35);
}

.claim-code-form .btn {
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 0;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 30px;
    transition: var(--transition-medium);
}

.claim-code-form .btn:hover {
    background: var(--accent-color);
}

.claim-code-form .btn:focus {
    box-shadow: none;
}

/* ----------------------------------------------------------
   18. Animations
   ---------------------------------------------------------- */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* GSAP base hidden states */
.gsap-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gsap-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------
   19. Utility Classes
   ---------------------------------------------------------- */
.bg-editorial-dark {
    background: var(--dark-color);
}

.bg-editorial-light {
    background: var(--light-color);
}

.text-gold {
    color: var(--secondary-color);
}

.border-gold {
    border-color: var(--secondary-color) !important;
}

/* ----------------------------------------------------------
   20. Alert & Toast Styles (editorial)
   ---------------------------------------------------------- */
.alert {
    border-radius: 0;
    font-family: var(--font-secondary);
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(196, 167, 125, 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--secondary-color);
}

.alert-danger {
    background: rgba(139, 69, 19, 0.08);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
}

.toast {
    border-radius: 0;
    border: none;
    font-family: var(--font-secondary);
}

/* ----------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

/* <= 1200px */
@media (max-width: 1200px) {
    .name-display {
        font-size: clamp(3rem, 5vw, 6rem);
    }

    .countdown-value {
        font-size: 4rem;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .section-bg-text {
        font-size: 10rem;
    }
}

/* <= 992px */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-editorial {
        flex-direction: column;
        height: auto;
    }

    .hero-split-left {
        flex: 0 0 auto;
        min-height: 50vh;
        order: 1;
    }

    .hero-split-right {
        flex: 0 0 auto;
        min-height: 50vh;
        order: 2;
    }

    .name-display {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .section-header-editorial h2 {
        font-size: 3rem;
    }

    /* RSVP */
    .rsvp-split {
        flex-direction: column;
    }

    .rsvp-statement {
        flex: 0 0 auto;
        min-height: 200px;
    }

    .rsvp-statement-text {
        font-size: 2.5rem;
    }

    .rsvp-form-panel {
        padding: 40px;
    }

    /* Venue */
    .venue-split {
        flex-direction: column;
    }

    .venue-info-panel,
    .venue-map-panel {
        flex: 0 0 auto;
        width: 100%;
    }

    .venue-info-panel {
        padding: 40px;
    }

    .venue-map-panel {
        min-height: 400px;
    }

    /* Agenda */
    .agenda-editorial .swiper-slide {
        width: 50%;
    }

    .section-bg-text {
        font-size: 8rem;
    }
}

/* <= 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .name-display {
        font-size: clamp(2.5rem, 8vw, 4rem);
        letter-spacing: 0.15em;
    }

    .ampersand-editorial {
        font-size: 2.5rem;
    }

    .countdown-value {
        font-size: 3rem;
    }

    .countdown-unit {
        padding: 0 15px;
    }

    .gallery-masonry {
        column-count: 1;
    }

    /* Contacts: 2-column grid on tablet */
    .contacts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        justify-items: center;
    }

    .attendance-options {
        flex-direction: column;
    }

    .attendance-btn {
        width: 100%;
        text-align: center;
    }

    /* Agenda: 1 slide */
    .agenda-editorial .swiper-slide {
        width: 100%;
    }

    /* Info blocks: remove alternating border, always left */
    .info-block:nth-child(odd) .info-inner,
    .info-block:nth-child(even) .info-inner {
        padding-left: 25px;
        padding-right: 0;
        border-left: 3px solid var(--secondary-color);
        border-right: none;
        text-align: left;
    }

    .info-block:nth-child(even) .info-icon-editorial {
        margin-left: 0;
    }

    .section-header-editorial h2 {
        font-size: 2.8rem;
    }

    .hero-split-left {
        padding: 40px 30px;
    }

    .rsvp-form-panel {
        padding: 30px 20px;
    }

    .rsvp-statement {
        padding: 40px 30px;
    }

    .section-bg-text {
        font-size: 6rem;
    }

    .footer-gallery-editorial img {
        height: 100px;
    }
}

/* <= 576px */
@media (max-width: 576px) {
    :root {
        --section-padding: 40px 0;
    }

    .hero-editorial {
        height: auto;
    }

    .hero-split-left {
        min-height: 60vh;
        padding: 40px 20px;
    }

    .hero-split-right {
        min-height: 40vh;
    }

    .name-display {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: 0.1em;
    }

    .date-display {
        letter-spacing: 0.2em;
        font-size: 0.75rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-unit {
        padding: 0 10px;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }

    .section-header-editorial h2 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .rsvp-statement-text {
        font-size: 2rem;
    }

    .footer-names {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }

    .footer-editorial {
        padding: 50px 0 25px;
    }

    .footer-gold-separator {
        margin: 25px auto;
    }

    .footer-gallery-editorial img {
        height: 80px;
    }

    .venue-info-panel {
        padding: 30px 20px;
    }

    .story-content p {
        font-size: 1rem;
    }

    .section-bg-text {
        font-size: 4rem;
    }

    .agenda-card {
        padding: 25px 20px;
    }

    .ampersand-editorial {
        font-size: 2rem;
    }

    .gold-line {
        width: 60px;
    }

    .scroll-line {
        bottom: 25px;
    }

    .scroll-line-indicator {
        height: 40px;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-card-editorial {
        max-width: 100%;
    }

    .navbar-editorial .navbar-brand {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .btn-editorial {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .info-block {
        padding: 40px 0;
    }

    .faq-editorial .accordion-button {
        font-size: 1.05rem;
        padding: 15px 0;
    }
}

/* Dresscode Farbpalette */
.dresscode-palette {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}
.dresscode-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    position: relative;
}
.dresscode-swatch:hover {
    transform: scale(1.15);
}
.swatch-label {
    display: block;
    text-align: center;
    font-size: 0.65rem;
    margin-top: 6px;
    color: var(--text-secondary, #666);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
