/* ==========================================================================
   Wedding4 - Romantic/Botanical Template
   A soft lavender, sage green, and dusty rose wedding theme
   with watercolor aesthetics and botanical accents.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --primary-color: #B8A9C9;
    --secondary-color: #7BA387;
    --accent-color: #D4A0A0;
    --dark-color: #3D3346;
    --light-color: #F9F5F0;
    --white-color: #FFFFFF;
    --font-script: 'Amatic SC', cursive;
    --font-primary: 'Josefin Sans', sans-serif;
    --font-secondary: 'Lora', serif;
    /* Kanonische Font-Aliase */
    --font-display: var(--font-script);
    --font-heading: var(--font-primary);
    --font-body: var(--font-secondary);
    --section-padding: 100px 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 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* --------------------------------------------------------------------------
   2. Base & Global Styles
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    font-family: var(--font-secondary);
    color: var(--dark-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Watercolor background blobs */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(184, 169, 201, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(212, 160, 160, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 60%, rgba(123, 163, 135, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 160, 160, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(184, 169, 201, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 90%, rgba(123, 163, 135, 0.06) 0%, transparent 40%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.script-font {
    font-family: var(--font-script);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   3. 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;
}

/* --------------------------------------------------------------------------
   4. Navbar (.navbar-botanical)
   -------------------------------------------------------------------------- */
.navbar-botanical {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar-botanical.navbar-scrolled {
    background: var(--white-color);
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

.navbar-botanical .navbar-brand {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    transition: var(--transition-medium);
}

.navbar-botanical.navbar-scrolled .navbar-brand {
    color: var(--dark-color);
}

.navbar-botanical .navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-color);
    padding: 8px 15px;
    transition: var(--transition-medium);
    position: relative;
}

.navbar-botanical.navbar-scrolled .navbar-nav .nav-link {
    color: var(--dark-color);
}

.navbar-botanical .navbar-nav .nav-link:hover,
.navbar-botanical .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-botanical.navbar-scrolled .navbar-nav .nav-link:hover,
.navbar-botanical.navbar-scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-botanical .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.navbar-botanical .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    font-size: 1.1rem;
    color: var(--white-color);
    transition: var(--transition-medium);
}

.navbar-botanical.navbar-scrolled .navbar-toggler {
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.navbar-botanical .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-botanical .navbar-collapse {
    transition: var(--transition-medium);
}

@media (max-width: 991.98px) {
    .navbar-botanical .navbar-collapse {
        background: var(--white-color);
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: var(--shadow-soft);
    }

    .navbar-botanical .navbar-nav .nav-link {
        color: var(--dark-color);
        padding: 10px 15px;
    }

    .navbar-botanical .navbar-brand {
        color: var(--white-color);
    }

    .navbar-botanical.navbar-scrolled .navbar-brand {
        color: var(--dark-color);
    }
}

@media (min-width: 992px) {
    .navbar-botanical .navbar-collapse .border-top {
        border-top: none !important;
    }
}

/* --------------------------------------------------------------------------
   5. Hero Section (.hero-botanical)
   -------------------------------------------------------------------------- */
.hero-botanical {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-watercolor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(184, 169, 201, 0.35) 0%,
        rgba(212, 160, 160, 0.30) 30%,
        rgba(184, 169, 201, 0.25) 50%,
        rgba(212, 160, 160, 0.35) 70%,
        rgba(184, 169, 201, 0.40) 100%
    );
    pointer-events: none;
}

/* Botanical SVG Frame */
.botanical-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 90%;
    z-index: 5;
    pointer-events: none;
}

.botanical-frame svg {
    width: 100%;
    height: auto;
}

.botanical-frame svg path,
.botanical-frame svg line,
.botanical-frame svg polyline,
.botanical-frame svg circle,
.botanical-frame svg ellipse,
.botanical-frame svg rect {
    stroke: var(--secondary-color);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Names Container */
.names-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.names-container .name {
    font-family: var(--font-script);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white-color);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    margin: 0;
}

.botanical-ampersand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.leaf-divider svg {
    width: 40px;
    height: auto;
    color: var(--secondary-color);
    fill: var(--secondary-color);
}

.leaf-divider .fa,
.leaf-divider .fas,
.leaf-divider .fab,
.leaf-divider i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.botanical-ampersand span {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--white-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    margin: 0 10px;
}

.wedding-date-hero {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--white-color);
    text-transform: uppercase;
    margin-top: 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    cursor: pointer;
}

.scroll-indicator i,
.scroll-indicator .fa-leaf {
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    will-change: transform;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-color);
    margin-top: 5px;
}

/* --------------------------------------------------------------------------
   6. Countdown Section (.countdown-botanical)
   -------------------------------------------------------------------------- */
.countdown-botanical {
    background: linear-gradient(
        135deg,
        rgba(184, 169, 201, 0.08) 0%,
        rgba(212, 160, 160, 0.08) 100%
    );
    padding: 60px 0;
    text-align: center;
}

.countdown-botanical .countdown-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    transition: var(--transition-medium);
}

.countdown-circle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.countdown-value {
    font-family: var(--font-script);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary-color);
}

.countdown-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--dark-color);
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   7. Section Headers (.section-header-botanical)
   -------------------------------------------------------------------------- */
.section-header-botanical {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-botanical .section-subtitle {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.section-header-botanical h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-color);
    margin: 0;
}

.botanical-divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 20px auto;
    border: none;
    display: block;
    position: relative;
}

.botanical-divider::before {
    content: "\1F33F";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    line-height: 1;
    background: var(--light-color);
    padding: 0 8px;
}

/* --------------------------------------------------------------------------
   8. Story Section (.story-section)
   -------------------------------------------------------------------------- */
.story-section {
    padding: var(--section-padding);
}

.watercolor-card {
    background: var(--white-color);
    padding: 50px 40px;
    border-radius: 20px;
    border: 3px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgba(184, 169, 201, 0.6),
        rgba(212, 160, 160, 0.4),
        rgba(123, 163, 135, 0.3),
        rgba(184, 169, 201, 0.5),
        transparent
    ) 1;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.watercolor-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.watercolor-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50% 50% 50% 20%;
    background: rgba(123, 163, 135, 0.12);
    pointer-events: none;
}

.watercolor-card::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-radius: 20% 50% 50% 50%;
    background: rgba(184, 169, 201, 0.10);
    pointer-events: none;
}

.watercolor-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.watercolor-card p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--dark-color);
    line-height: 1.8;
}

.watercolor-card .story-date {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   9. Timeline / Agenda (.agenda-botanical)
   -------------------------------------------------------------------------- */
.agenda-botanical {
    padding: var(--section-padding);
}

.timeline-botanical {
    position: relative;
    padding-left: 60px;
}

.timeline-botanical::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    border-left: 2px dashed var(--primary-color);
}

.timeline-item-botanical {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item-botanical:last-child {
    margin-bottom: 0;
}

.timeline-dot-botanical {
    position: absolute;
    left: -60px;
    top: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white-color);
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    z-index: 2;
    transition: var(--transition-medium);
}

.timeline-item-botanical:hover .timeline-dot-botanical {
    background: var(--secondary-color);
    color: var(--white-color);
}

.timeline-content-botanical {
    background: var(--white-color);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-left: 20px;
    transition: var(--transition-medium);
}

.timeline-content-botanical:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.timeline-time-botanical {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 400;
    background: linear-gradient(135deg, rgba(184, 169, 201, 0.15), rgba(212, 160, 160, 0.15));
    padding: 4px 15px;
    border-radius: 20px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.timeline-description {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(61, 51, 70, 0.8);
    margin: 0;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. Venue Section (.venue-botanical)
   -------------------------------------------------------------------------- */
.venue-botanical {
    padding: var(--section-padding);
    background:
        var(--light-color)
        repeating-radial-gradient(
            circle at 25% 25%,
            rgba(123, 163, 135, 0.03) 0px,
            rgba(123, 163, 135, 0.03) 2px,
            transparent 2px,
            transparent 40px
        );
}

.venue-card-botanical {
    background: var(--white-color);
    border-radius: 20px;
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    margin-bottom: 20px;
}

.venue-card-botanical:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.venue-card-botanical h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.venue-card-botanical p {
    font-family: var(--font-secondary);
    color: rgba(61, 51, 70, 0.8);
    font-size: 0.95rem;
}

.venue-card-botanical i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Location Tabs */
.location-tabs-botanical {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.location-tabs-botanical .nav-link {
    border-radius: 25px;
    padding: 10px 25px;
    background: var(--light-color);
    color: var(--dark-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(184, 169, 201, 0.2);
    transition: var(--transition-medium);
    text-decoration: none;
    cursor: pointer;
}

.location-tabs-botanical .nav-link:hover {
    background: rgba(184, 169, 201, 0.15);
    color: var(--primary-color);
}

.location-tabs-botanical .nav-link.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white-color);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(123, 163, 135, 0.3);
}

/* Venue Map */
.venue-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.wedding-map-marker {
    color: var(--secondary-color);
    font-size: 24px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   11. Gallery (.gallery-botanical)
   -------------------------------------------------------------------------- */
.gallery-botanical {
    padding: var(--section-padding);
}

.gallery-swiper-botanical {
    padding-bottom: 50px;
}

.gallery-swiper-botanical .swiper-slide {
    max-width: 350px;
    transition: var(--transition-medium);
}

.gallery-polaroid {
    background: var(--white-color);
    padding: 12px 12px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    transform: rotate(calc(var(--rotation, 0) * 1deg));
    transition: var(--transition-medium);
    cursor: pointer;
    will-change: transform;
}

.gallery-polaroid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-polaroid .polaroid-caption {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--dark-color);
    text-align: center;
    margin-top: 10px;
}

.gallery-polaroid:hover {
    transform: scale(1.02) rotate(0deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery Grid Fallback (no-swiper) */
.gallery-grid-botanical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid-botanical .gallery-polaroid {
    margin: 0 auto;
}

/* Swiper Pagination */
.gallery-swiper-botanical .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.4;
    transition: var(--transition-medium);
}

.gallery-swiper-botanical .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* Swiper Navigation */
.gallery-swiper-botanical .swiper-button-next,
.gallery-swiper-botanical .swiper-button-prev {
    color: var(--primary-color);
}

.gallery-swiper-botanical .swiper-button-next::after,
.gallery-swiper-botanical .swiper-button-prev::after {
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   12. RSVP Section (.rsvp-botanical)
   -------------------------------------------------------------------------- */
.rsvp-botanical {
    padding: var(--section-padding);
}

.rsvp-card-botanical {
    background: var(--white-color);
    padding: 50px 40px;
    border-radius: 20px;
    border: 3px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgba(184, 169, 201, 0.6),
        rgba(212, 160, 160, 0.4),
        rgba(123, 163, 135, 0.3),
        rgba(184, 169, 201, 0.5),
        transparent
    ) 1;
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.rsvp-card-botanical .form-group {
    margin-bottom: 25px;
}

.rsvp-card-botanical label,
.rsvp-card-botanical .form-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.rsvp-card-botanical .form-control,
.rsvp-card-botanical input[type="text"],
.rsvp-card-botanical input[type="email"],
.rsvp-card-botanical input[type="tel"],
.rsvp-card-botanical input[type="number"],
.rsvp-card-botanical textarea,
.rsvp-card-botanical select {
    border: none;
    border-bottom: 2px solid #e0d5c8;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--dark-color);
    padding: 10px 5px;
    transition: var(--transition-medium);
    width: 100%;
}

.rsvp-card-botanical .form-control:focus,
.rsvp-card-botanical input:focus,
.rsvp-card-botanical textarea:focus,
.rsvp-card-botanical select:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: none;
    outline: none;
    background: transparent;
}

.rsvp-card-botanical .form-control::placeholder {
    color: rgba(61, 51, 70, 0.4);
    font-style: italic;
}

.rsvp-card-botanical select.form-control,
.rsvp-card-botanical select.form-select {
    border: none;
    border-bottom: 2px solid #e0d5c8;
    border-radius: 0;
    background-color: transparent;
    appearance: auto;
}

/* Attendance Options */
.attendance-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.attendance-btn {
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 12px 25px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    text-align: center;
}

.attendance-btn:hover {
    background: rgba(184, 169, 201, 0.1);
}

.btn-check:checked + .attendance-btn,
.attendance-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Submit Button */
.btn-botanical {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 50px;
    padding: 12px 35px;
    border: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(184, 169, 201, 0.3);
    cursor: pointer;
    transition: var(--transition-medium);
    display: inline-block;
    text-align: center;
}

.btn-botanical:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 169, 201, 0.45);
    color: var(--white-color);
}

.btn-botanical:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(184, 169, 201, 0.3);
}

.btn-botanical:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* --------------------------------------------------------------------------
   13. Additional Info (.info-botanical)
   -------------------------------------------------------------------------- */
.info-botanical {
    padding: var(--section-padding);
}

.info-grid-botanical {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card-botanical {
    background: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.info-card-botanical:nth-child(3n+1) {
    border-left: 3px solid var(--primary-color);
}

.info-card-botanical:nth-child(3n+2) {
    border-left: 3px solid var(--secondary-color);
}

.info-card-botanical:nth-child(3n+3) {
    border-left: 3px solid var(--accent-color);
}

.info-card-botanical:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.info-icon-botanical {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.info-card-botanical:nth-child(3n+1) .info-icon-botanical {
    background: rgba(184, 169, 201, 0.10);
    color: var(--primary-color);
}

.info-card-botanical:nth-child(3n+2) .info-icon-botanical {
    background: rgba(123, 163, 135, 0.10);
    color: var(--secondary-color);
}

.info-card-botanical:nth-child(3n+3) .info-icon-botanical {
    background: rgba(212, 160, 160, 0.10);
    color: var(--accent-color);
}

.info-card-botanical h4 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-content {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(61, 51, 70, 0.85);
    line-height: 1.8;
    overflow-y: auto;
    max-height: 300px;
}

.info-content::-webkit-scrollbar {
    width: 4px;
}

.info-content::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.info-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   14. Contacts (.contacts-botanical)
   -------------------------------------------------------------------------- */
.contacts-botanical {
    padding: var(--section-padding);
}

.contact-card-botanical {
    text-align: center;
    padding: 30px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    height: 100%;
}

.contact-card-botanical:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-image-botanical {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    transition: var(--transition-medium);
}

.contact-image-botanical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card-botanical:hover .contact-image-botanical {
    border-color: var(--secondary-color);
}

.contact-name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-role {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.contact-details {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(61, 51, 70, 0.8);
    line-height: 1.8;
}

.contact-details a {
    color: var(--dark-color);
    transition: var(--transition-medium);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-details i {
    color: var(--secondary-color);
    margin-right: 5px;
    width: 20px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   15. FAQ (.faq-botanical)
   -------------------------------------------------------------------------- */
.faq-botanical {
    padding: var(--section-padding);
}

.faq-botanical .accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    background: var(--white-color);
}

.faq-botanical .accordion-button {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-color);
    background: var(--white-color);
    padding: 18px 25px;
    border: none;
    box-shadow: none;
    transition: var(--transition-medium);
}

.faq-botanical .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-botanical .accordion-button:not(.collapsed) {
    background: rgba(184, 169, 201, 0.10);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-botanical .accordion-button::after {
    display: none;
}

.faq-botanical .accordion-button::before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-right: 12px;
    transition: var(--transition-medium);
    flex-shrink: 0;
}

.faq-botanical .accordion-button:not(.collapsed)::before {
    content: "\1F33F";
    font-family: inherit;
    font-weight: normal;
    font-size: 1rem;
}

.faq-botanical .accordion-body {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(61, 51, 70, 0.85);
    padding: 20px 25px;
    line-height: 1.8;
}

.faq-botanical .accordion-collapse {
    border: none;
}

/* --------------------------------------------------------------------------
   16. Footer (.footer-botanical)
   -------------------------------------------------------------------------- */
.footer-botanical {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 30px;
}

.footer-names-botanical {
    font-family: var(--font-script);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 10px;
}

.footer-date-botanical {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-transform: uppercase;
}

.footer-vine-separator {
    width: 120px;
    height: 1px;
    margin: 25px auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(184, 169, 201, 0.6),
        rgba(123, 163, 135, 0.5),
        rgba(212, 160, 160, 0.4),
        transparent
    );
}

.footer-vine-separator svg {
    display: block;
    margin: 0 auto;
}

/* Footer Gallery */
.footer-gallery-botanical {
    display: flex;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 5px;
}

.footer-gallery-botanical img {
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.footer-gallery-botanical img:hover {
    opacity: 0.8;
}

/* Footer Text */
.footer-text {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Legal Links */
.footer-botanical .legal-links {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
}

.footer-botanical .legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin: 0 10px;
    transition: var(--transition-medium);
    text-decoration: none;
}

.footer-botanical .legal-links a:hover {
    color: var(--primary-color);
}

/* Footer Credit */
.footer-botanical .footer-credit {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 15px;
}

.footer-botanical .footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-botanical .footer-credit a:hover {
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   17. Back to Top
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    z-index: 99;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(184, 169, 201, 0.4);
    text-decoration: none;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(123, 163, 135, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   18. Modals
   -------------------------------------------------------------------------- */
.modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--primary-color);
    color: var(--white-color);
    border-bottom: none;
    padding: 18px 25px;
}

.modal-header .modal-title {
    font-family: var(--font-primary);
    font-weight: 600;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 25px;
    font-family: var(--font-secondary);
}

.modal-footer {
    border-top: 1px solid rgba(184, 169, 201, 0.15);
    padding: 15px 25px;
}

/* --------------------------------------------------------------------------
   19. Language Switcher
   -------------------------------------------------------------------------- */
.language-switcher {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.70);
    border-radius: 10px;
    padding: 5px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
}

.language-switcher:hover {
    background: rgba(255, 255, 255, 0.90);
}

.language-switcher select,
.language-switcher .lang-btn {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    border: none;
    background: transparent;
    color: var(--dark-color);
    cursor: pointer;
    padding: 3px 5px;
}

.language-switcher select:focus {
    outline: none;
}

.language-switcher img {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

/* --------------------------------------------------------------------------
   20. Claim Code Section
   -------------------------------------------------------------------------- */
.claim-code-section {
    padding: 60px 0;
    text-align: center;
}

.claim-code-section .form-control {
    border: none;
    border-bottom: 2px solid #e0d5c8;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--dark-color);
    padding: 12px 5px;
    text-align: center;
    letter-spacing: 0.15em;
    max-width: 400px;
    margin: 0 auto;
    transition: var(--transition-medium);
}

.claim-code-section .form-control:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.claim-code-section .form-control::placeholder {
    color: rgba(61, 51, 70, 0.4);
    font-style: italic;
    letter-spacing: 0.1em;
}

.claim-code-section .btn-botanical {
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   21. Utility Classes
   -------------------------------------------------------------------------- */
.bg-botanical-light {
    background: var(--light-color);
}

.bg-botanical-white {
    background: var(--white-color);
}

.text-botanical-primary {
    color: var(--primary-color);
}

.text-botanical-secondary {
    color: var(--secondary-color);
}

.text-botanical-accent {
    color: var(--accent-color);
}

.text-botanical-dark {
    color: var(--dark-color);
}

/* --------------------------------------------------------------------------
   22. Animations
   -------------------------------------------------------------------------- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* --------------------------------------------------------------------------
   23. Responsive: <= 1200px
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .names-container .name {
        font-size: 4rem;
    }

    .section-header-botanical h2 {
        font-size: 2.2rem;
    }

    .gallery-swiper-botanical .swiper-slide {
        max-width: 300px;
    }

    .gallery-polaroid img {
        height: 240px;
    }

    .watercolor-card {
        padding: 40px 30px;
    }
}

/* --------------------------------------------------------------------------
   24. Responsive: <= 992px
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .names-container .name {
        font-size: 3.5rem;
    }

    .countdown-circle {
        width: 80px;
        height: 80px;
    }

    .countdown-value {
        font-size: 2.8rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .info-grid-botanical {
        grid-template-columns: 1fr;
    }

    .gallery-grid-botanical {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-swiper-botanical .swiper-slide {
        max-width: 280px;
    }

    .watercolor-card {
        padding: 35px 25px;
    }

    .rsvp-card-botanical {
        padding: 40px 30px;
    }

    .timeline-botanical {
        padding-left: 50px;
    }

    .timeline-dot-botanical {
        width: 40px;
        height: 40px;
        left: -50px;
        font-size: 0.9rem;
    }

    .timeline-content-botanical {
        padding: 20px 25px;
    }

    .footer-gallery-botanical img {
        height: 120px;
    }
}

/* --------------------------------------------------------------------------
   25. Responsive: <= 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .names-container .name {
        font-size: 3rem;
    }

    .botanical-ampersand span {
        font-size: 2.2rem;
    }

    .wedding-date-hero {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .section-header-botanical .section-subtitle {
        font-size: 1.7rem;
    }

    .section-header-botanical h2 {
        font-size: 2rem;
    }

    .countdown-botanical .countdown-wrapper {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 20px;
    }

    .venue-map {
        height: 300px;
    }

    .attendance-options {
        flex-direction: column;
    }

    .attendance-btn {
        text-align: center;
    }

    .footer-gallery-botanical img {
        height: 120px;
    }

    .footer-names-botanical {
        font-size: 2.5rem;
    }

    .timeline-botanical {
        padding-left: 45px;
    }

    .timeline-dot-botanical {
        width: 36px;
        height: 36px;
        left: -45px;
        font-size: 0.85rem;
    }

    .timeline-content-botanical {
        padding: 18px 20px;
        margin-left: 10px;
    }

    .watercolor-card {
        padding: 30px 20px;
    }

    .contact-image-botanical {
        width: 100px;
        height: 100px;
    }

    .info-card-botanical {
        padding: 25px;
    }

    .rsvp-card-botanical {
        padding: 35px 25px;
    }
}

/* --------------------------------------------------------------------------
   26. Responsive: <= 576px
   -------------------------------------------------------------------------- */
@media (max-width: 576px) {
    :root {
        --section-padding: 40px 0;
    }

    /* Hide watercolor blobs for performance on mobile */
    body::before {
        display: none;
    }

    .hero-botanical {
        min-height: 600px;
    }

    .names-container .name {
        font-size: 2.5rem;
    }

    .botanical-ampersand span {
        font-size: 1.8rem;
    }

    .botanical-frame {
        max-width: 320px;
    }

    .wedding-date-hero {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .section-header-botanical .section-subtitle {
        font-size: 1.5rem;
    }

    .section-header-botanical h2 {
        font-size: 1.7rem;
    }

    .countdown-circle {
        width: 70px;
        height: 70px;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .countdown-botanical {
        padding: 40px 0;
    }

    .gallery-grid-botanical {
        grid-template-columns: 1fr;
    }

    .gallery-polaroid img {
        height: 220px;
    }

    .watercolor-card {
        padding: 25px 18px;
        border-radius: 15px;
    }

    .rsvp-card-botanical {
        padding: 30px 20px;
        max-width: 100%;
    }

    .info-card-botanical {
        padding: 20px;
    }

    .contact-card-botanical {
        padding: 20px;
    }

    .contact-image-botanical {
        width: 90px;
        height: 90px;
    }

    .timeline-botanical {
        padding-left: 40px;
    }

    .timeline-botanical::before {
        left: 18px;
    }

    .timeline-dot-botanical {
        width: 32px;
        height: 32px;
        left: -40px;
        font-size: 0.8rem;
    }

    .timeline-content-botanical {
        padding: 15px 18px;
        margin-left: 5px;
        border-radius: 10px;
    }

    .timeline-time-botanical {
        font-size: 0.75rem;
        padding: 3px 12px;
    }

    .footer-names-botanical {
        font-size: 2.2rem;
    }

    .footer-botanical {
        padding: 40px 0 20px;
    }

    .footer-gallery-botanical img {
        height: 100px;
    }

    .footer-text {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .venue-card-botanical {
        padding: 20px;
    }

    .venue-map {
        height: 250px;
    }

    .location-tabs-botanical .nav-link {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .faq-botanical .accordion-button {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .faq-botanical .accordion-body {
        padding: 15px 18px;
        font-size: 0.9rem;
    }

    .btn-botanical {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .modal-header {
        padding: 15px 20px;
    }
}

/* --------------------------------------------------------------------------
   27. Print Styles
   -------------------------------------------------------------------------- */
@media print {
    body::before {
        display: none;
    }

    .navbar-botanical,
    .back-to-top,
    .scroll-indicator,
    .language-switcher {
        display: none !important;
    }

    .hero-botanical {
        min-height: auto;
        height: auto;
        page-break-after: always;
    }

    .watercolor-card,
    .venue-card-botanical,
    .info-card-botanical,
    .contact-card-botanical,
    .timeline-content-botanical {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .footer-botanical {
        background: #333;
    }
}

/* 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;
}
