/* =========================================================
   Floral1 - Romantic Botanical Garden Wedding Theme
   A light, airy template with dusty rose, sage green,
   watercolor-inspired accents, and hand-drawn floral SVGs.
   ========================================================= */

/* ---------------------------------------------------------
   CSS Variables
   --------------------------------------------------------- */
:root {
    --fl-rose: #B48888;          /* Dusty rose - primary accent */
    --fl-rose-light: #D4A5A5;    /* Light rose */
    --fl-rose-pale: #F5E6E0;     /* Pale blush */
    --fl-sage: #7B8F6B;          /* Sage green */
    --fl-sage-light: #9BAF8B;    /* Light sage */
    --fl-sage-dark: #5A6B50;     /* Dark sage */
    --fl-cream: #FFF8F0;         /* Warm cream background */
    --fl-ivory: #FFFEF5;         /* Ivory white */
    --fl-white: #FFFFFF;
    --fl-text: #3D3D3D;          /* Primary text - warm dark gray */
    --fl-text-light: #6B6B6B;    /* Secondary text */
    --fl-text-muted: #999999;    /* Muted text */

    /* Kanonische Farb-Aliase */
    --primary-color: var(--fl-rose);
    --secondary-color: var(--fl-sage);
    --accent-color: var(--fl-rose-light);
    --dark-color: var(--fl-text);
    --light-color: var(--fl-cream);
    --white-color: var(--fl-white);

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);

    --transition-base: all 0.3s ease;
    --transition-slow: all 0.6s ease;

    --border-floral: 1px solid rgba(180, 136, 136, 0.25);
    --radius-soft: 12px;
    --radius-card: 16px;
}

/* ---------------------------------------------------------
   Global Styles
   --------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--fl-text);
    background-color: var(--fl-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--fl-text);
}

a {
    color: var(--fl-sage);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--fl-rose);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(212, 165, 165, 0.3);
    color: var(--fl-text);
}

/* ---------------------------------------------------------
   Utility Classes
   --------------------------------------------------------- */
.venue-icon {
    color: var(--fl-sage);
}

/* ---------------------------------------------------------
   Animations
   --------------------------------------------------------- */
@keyframes gentleSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bloomIn {
    0% { transform: scale(0.8) rotate(-5deg); opacity: 0; }
    50% { transform: scale(1.05) rotate(2deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes spinFlower {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ---------------------------------------------------------
   Floral Corner Decorations
   --------------------------------------------------------- */
.floral-corner {
    position: fixed;
    width: 200px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.floral-corner-tl {
    top: 0;
    left: 0;
}

.floral-corner-br {
    bottom: 0;
    right: 0;
}

/* ---------------------------------------------------------
   Preloader
   --------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fl-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader-inner {
    text-align: center;
}

.floral-spinner svg {
    animation: spinFlower 3s linear infinite;
}

#preloader .loading-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--fl-rose);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 15px;
}

/* ---------------------------------------------------------
   Section Styles
   --------------------------------------------------------- */
.fl-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    background-color: var(--fl-cream);
}

.fl-section-alt {
    background-color: var(--fl-white);
}

.section-divider-top {
    text-align: center;
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
}

.section-divider-top svg {
    width: 300px;
    height: 30px;
}

/* ---------------------------------------------------------
   Section Header
   --------------------------------------------------------- */
.fl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.fl-section-header .section-icon {
    font-size: 1.8rem;
    color: var(--fl-sage);
    margin-bottom: 12px;
    display: block;
}

.fl-section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fl-text);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Floral Divider */
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
}

.divider-line {
    display: inline-block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fl-rose-light), transparent);
}

.divider-flower {
    color: var(--fl-rose);
    font-size: 0.9rem;
    animation: gentleSway 4s ease-in-out infinite;
}

/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */
.navbar {
    padding: 15px 0;
    transition: var(--transition-base);
    background: rgba(255, 248, 240, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar-scrolled {
    padding: 8px 0;
    background: rgba(255, 248, 240, 0.97);
    border-bottom: 1px solid rgba(180, 136, 136, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--fl-text) !important;
    letter-spacing: 1px;
    font-weight: 700;
}

.brand-leaf {
    font-size: 0.6rem;
    color: var(--fl-sage);
    vertical-align: middle;
    margin: 0 5px;
    opacity: 0.6;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    color: var(--fl-text-light) !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--fl-rose);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--fl-rose) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(180, 136, 136, 0.3);
    padding: 6px 10px;
}

.navbar-toggler i {
    color: var(--fl-rose);
}

.navbar-toggler:focus {
    box-shadow: 0 0 8px rgba(180, 136, 136, 0.15);
}

/* ---------------------------------------------------------
   Hero Section
   --------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.default-bg {
    background: linear-gradient(135deg, var(--fl-rose-pale) 0%, var(--fl-cream) 50%, var(--fl-rose-pale) 100%);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 248, 240, 0.3) 0%,
        rgba(245, 230, 224, 0.5) 40%,
        rgba(255, 248, 240, 0.7) 100%
    );
    z-index: 1;
}

/* Hero Floral SVG Overlays */
.hero-floral {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-floral-top {
    top: 0;
}

.hero-floral-top svg {
    width: 100%;
    height: 80px;
}

.hero-floral-bottom {
    bottom: -1px;
}

.hero-floral-bottom svg {
    width: 100%;
    height: 100px;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Names Container */
.names-container {
    margin-bottom: 30px;
}

.floral-frame {
    display: inline-block;
    padding: 40px 55px;
    position: relative;
}

.frame-floral {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    pointer-events: none;
}

.frame-floral-top {
    top: -10px;
}

.frame-floral-bottom {
    bottom: -10px;
}

.couple-name {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--fl-text);
    letter-spacing: 3px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(255, 248, 240, 0.8);
}

.ampersand-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 8px 0;
}

.amp-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fl-rose-light), transparent);
}

.ampersand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--fl-rose);
    font-weight: 400;
}

.wedding-date {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--fl-text-light);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
}

.date-leaf {
    margin: 0 10px;
    color: var(--fl-sage);
    font-size: 0.7rem;
    vertical-align: middle;
    opacity: 0.5;
}

/* Countdown */
.countdown-container {
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 136, 136, 0.2);
    border-radius: var(--radius-soft);
    padding: 18px 22px;
    min-width: 90px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.countdown-separator {
    color: var(--fl-rose-light);
    font-size: 0.8rem;
    opacity: 0.5;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fl-text);
    line-height: 1.2;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--fl-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    font-weight: 400;
}

/* Scroll indicator */
.scroll-indicator {
    margin-top: 40px;
}

.scroll-indicator a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--fl-rose);
    transition: var(--transition-base);
}

.scroll-indicator .scroll-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-indicator i {
    animation: scrollBounce 2s infinite;
    font-size: 1.2rem;
}

.scroll-indicator a:hover {
    color: var(--fl-sage);
}

/* ---------------------------------------------------------
   Story Section
   --------------------------------------------------------- */
.story-section {
    overflow: hidden;
}

.story-card {
    background: var(--fl-white);
    border: var(--border-floral);
    border-radius: var(--radius-card);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fl-sage-light), var(--fl-rose-light), var(--fl-sage-light));
    opacity: 0.5;
}

.story-content {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 2;
    color: var(--fl-text);
}

.story-content p {
    margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   Agenda Section
   --------------------------------------------------------- */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--fl-rose-light), var(--fl-sage-light));
    opacity: 0.3;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--fl-rose), var(--fl-sage));
    transition: height 0.3s ease;
    opacity: 0.6;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
}

.timeline-item.tl-left {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item.tl-right {
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--fl-white);
    border: 2px solid var(--fl-rose-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.1);
}

.timeline-dot i {
    color: var(--fl-rose);
    font-size: 0.7rem;
}

.timeline-card {
    width: calc(50% - 40px);
    background: var(--fl-white);
    border: var(--border-floral);
    border-radius: var(--radius-soft);
    padding: 25px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.timeline-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--fl-sage);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--fl-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-description {
    font-size: 0.9rem;
    color: var(--fl-text-light);
    line-height: 1.6;
}

/* ---------------------------------------------------------
   Venue Section
   --------------------------------------------------------- */
.venue-section .venue-details {
    margin-top: 30px;
}

.venue-card {
    background: var(--fl-white);
    border: var(--border-floral);
    border-radius: var(--radius-card);
    padding: 35px;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.venue-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--fl-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.venue-card h3 i {
    margin-right: 10px;
}

.venue-address {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(180, 136, 136, 0.12);
}

.venue-address i {
    margin-top: 3px;
    flex-shrink: 0;
}

.venue-address address {
    font-style: normal;
    line-height: 1.6;
    color: var(--fl-text-light);
}

.travel-info {
    display: flex;
    gap: 12px;
}

.travel-info > i {
    margin-top: 3px;
    flex-shrink: 0;
}

.travel-content {
    font-size: 0.95rem;
    color: var(--fl-text-light);
    line-height: 1.7;
}

.travel-content a {
    color: var(--fl-sage);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Venue Map */
.venue-map {
    height: 400px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: var(--border-floral);
    box-shadow: var(--shadow-soft);
}

.floral-map-marker {
    background: var(--fl-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(180, 136, 136, 0.4);
}

.floral-map-marker i {
    color: var(--fl-white);
    font-size: 18px;
}

.no-map {
    height: 400px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 143, 107, 0.04);
    border: 1px dashed rgba(123, 143, 107, 0.2);
}

.no-map-content {
    text-align: center;
    color: var(--fl-text-muted);
}

.no-map-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: var(--fl-sage-light);
}

/* Location Tabs */
.location-tabs-wrap .nav-pills {
    border-radius: var(--radius-soft);
    overflow: hidden;
    background: rgba(123, 143, 107, 0.06);
    padding: 5px;
}

.location-tabs-wrap .nav-link {
    font-family: var(--font-heading);
    color: var(--fl-text);
    border-radius: 8px;
    padding: 12px 20px;
    transition: var(--transition-base);
    border: 1px solid transparent;
    font-weight: 500;
}

.location-tabs-wrap .nav-link i {
    margin-right: 8px;
    color: var(--fl-sage);
}

.location-tabs-wrap .nav-link.active {
    background: var(--fl-white);
    color: var(--fl-sage-dark);
    border-color: rgba(180, 136, 136, 0.2);
    box-shadow: var(--shadow-soft);
}

.location-tabs-wrap .nav-link:hover:not(.active) {
    background: rgba(123, 143, 107, 0.08);
}

/* ---------------------------------------------------------
   Gallery Section
   --------------------------------------------------------- */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
    border: var(--border-floral);
    aspect-ratio: 4 / 3;
    transition: var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    border-color: rgba(180, 136, 136, 0.4);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 230, 224, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-hover i {
    color: var(--fl-rose);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-hover i {
    transform: scale(1);
}

/* ---------------------------------------------------------
   RSVP Section
   --------------------------------------------------------- */
.rsvp-card {
    background: var(--fl-white);
    border: var(--border-floral);
    border-radius: var(--radius-card);
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.rsvp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fl-rose-light), var(--fl-sage-light), transparent);
}

.rsvp-section .form-control {
    border: 1px solid rgba(180, 136, 136, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition-base);
    background-color: var(--fl-white);
}

.rsvp-section .form-control:focus {
    border-color: var(--fl-sage);
    box-shadow: 0 0 0 0.2rem rgba(123, 143, 107, 0.12);
}

.rsvp-section .form-floating > label {
    font-family: var(--font-heading);
    color: var(--fl-text-muted);
}

.attendance-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--fl-text);
    margin-bottom: 10px;
    display: block;
}

.attendance-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.attendance-option {
    flex: 1;
    min-width: 160px;
}

.attendance-btn {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(180, 136, 136, 0.2);
    border-radius: 10px;
    font-family: var(--font-heading);
    color: var(--fl-text);
    transition: var(--transition-base);
    background: var(--fl-white);
    font-weight: 500;
}

.attendance-btn:hover {
    border-color: var(--fl-sage);
    color: var(--fl-text);
    background: rgba(123, 143, 107, 0.05);
}

.btn-check:checked + .attendance-btn {
    background: var(--fl-sage);
    border-color: var(--fl-sage);
    color: var(--fl-white);
    box-shadow: 0 4px 12px rgba(123, 143, 107, 0.25);
}

/* Floral Button */
.btn-floral {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--fl-sage), var(--fl-sage-dark));
    color: var(--fl-white);
    border: none;
    border-radius: 10px;
    padding: 14px 50px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-floral::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-floral:hover {
    background: linear-gradient(135deg, var(--fl-sage-dark), var(--fl-sage));
    color: var(--fl-white);
    box-shadow: 0 6px 20px rgba(123, 143, 107, 0.3);
    transform: translateY(-2px);
}

.btn-floral:hover::before {
    left: 100%;
}

/* ---------------------------------------------------------
   Additional Info Section
   --------------------------------------------------------- */
.additional-info-section .info-card {
    background: var(--fl-cream);
    border: var(--border-floral);
    border-radius: var(--radius-card);
    padding: 35px;
    height: 100%;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.additional-info-section .info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.additional-info-section .info-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--fl-sage);
}

.additional-info-section .info-content {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--fl-text);
    line-height: 1.8;
}

.additional-info-section .info-content a {
    color: var(--fl-sage);
}

/* Swiper in floral theme */
.fl-section .swiper-button-next,
.fl-section .swiper-button-prev {
    color: var(--fl-rose);
}

.fl-section .swiper-button-next::after,
.fl-section .swiper-button-prev::after {
    font-size: 1.5rem;
}

.fl-section .swiper-pagination-bullet {
    background: var(--fl-rose-light);
    opacity: 1;
}

.fl-section .swiper-pagination-bullet-active {
    background: var(--fl-rose);
}

/* ---------------------------------------------------------
   Contacts Section
   --------------------------------------------------------- */
.contact-card {
    background: var(--fl-white);
    border: var(--border-floral);
    border-radius: var(--radius-card);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--fl-rose-light);
    box-shadow: 0 0 0 6px rgba(212, 165, 165, 0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--fl-text);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-role {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--fl-rose);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 15px;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-detail a {
    color: var(--fl-text-light);
    transition: var(--transition-base);
}

.contact-detail a:hover {
    color: var(--fl-rose);
}

.contact-more-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(180, 136, 136, 0.12);
    font-size: 0.9rem;
    color: var(--fl-text-light);
}

.contact-cta h3 {
    font-family: var(--font-heading);
    color: var(--fl-text);
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-cta p {
    color: var(--fl-text-light);
}

/* ---------------------------------------------------------
   FAQ Section
   --------------------------------------------------------- */
.faq-section .accordion-item {
    background: var(--fl-cream);
    border: var(--border-floral);
    border-radius: var(--radius-soft) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    background: transparent;
    color: var(--fl-text);
    padding: 18px 25px;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(123, 143, 107, 0.06);
    color: var(--fl-sage-dark);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    opacity: 0.4;
}

.faq-section .accordion-button:not(.collapsed)::after {
    opacity: 0.7;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(123, 143, 107, 0.1);
}

.faq-section .accordion-body {
    padding: 0 25px 20px;
    color: var(--fl-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-section .accordion-body a {
    color: var(--fl-sage);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.fl-footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--fl-cream) 0%, var(--fl-rose-pale) 100%);
    color: var(--fl-text);
    padding: 60px 0 30px;
}

.footer-floral-top {
    text-align: center;
    margin-bottom: 30px;
}

.footer-floral-top svg {
    width: 400px;
    max-width: 80%;
    height: 40px;
}

.footer-header {
    text-align: center;
    margin-bottom: 40px;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--fl-text);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--fl-text-light);
    font-style: italic;
    letter-spacing: 2px;
}

.footer-gallery {
    margin-bottom: 40px;
}

.footer-gallery-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-gallery-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: var(--border-floral);
    transition: var(--transition-base);
}

.footer-gallery-item:hover {
    border-color: rgba(180, 136, 136, 0.5);
    box-shadow: var(--shadow-card);
    transform: scale(1.05);
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--fl-text-light);
    line-height: 1.7;
    text-align: center;
}

.legal-links {
    text-align: center;
    margin-bottom: 20px;
}

.legal-links a {
    color: var(--fl-text-muted);
    font-size: 0.85rem;
    margin: 0 15px;
    transition: var(--transition-base);
}

.legal-links a:hover {
    color: var(--fl-rose);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--fl-text-muted);
    padding-top: 20px;
    border-top: 1px solid rgba(180, 136, 136, 0.15);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--fl-white);
    border: var(--border-floral);
    border-radius: 50%;
    color: var(--fl-rose);
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--fl-sage);
    color: var(--fl-white);
    border-color: var(--fl-sage);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

/* ---------------------------------------------------------
   Modals
   --------------------------------------------------------- */
.modal-content {
    background: var(--fl-cream);
    border: var(--border-floral);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.modal-header {
    background: var(--fl-white);
    border-bottom: 1px solid rgba(180, 136, 136, 0.15);
    padding: 18px 25px;
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--fl-text);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
    font-family: var(--font-body);
    color: var(--fl-text);
    line-height: 1.7;
}

/* ---------------------------------------------------------
   Alert overrides
   --------------------------------------------------------- */
.fl-section .alert-success {
    background-color: rgba(123, 143, 107, 0.08);
    border-color: rgba(123, 143, 107, 0.2);
    color: var(--fl-sage-dark);
}

.fl-section .alert-info {
    background-color: rgba(180, 136, 136, 0.08);
    border-color: rgba(180, 136, 136, 0.2);
    color: var(--fl-text);
}

.fl-section .alert-warning {
    background-color: rgba(212, 165, 165, 0.1);
    border-color: rgba(212, 165, 165, 0.3);
    color: var(--fl-text);
}

/* ---------------------------------------------------------
   Leaflet map overrides
   --------------------------------------------------------- */
.leaflet-container {
    border-radius: var(--radius-card);
}

/* ---------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   --------------------------------------------------------- */

/* Large desktops */
@media (min-width: 1200px) {
    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium desktops / tablets landscape */
@media (max-width: 1199.98px) {
    .fl-section-header h2 {
        font-size: 2.2rem;
    }

    .couple-name {
        font-size: 3rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .fl-section {
        padding: 80px 0;
    }

    .fl-section-header h2 {
        font-size: 2rem;
    }

    .couple-name {
        font-size: 2.5rem;
    }

    .floral-frame {
        padding: 30px 35px;
    }

    .countdown-box {
        min-width: 80px;
        padding: 14px 16px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .venue-map {
        height: 350px;
        margin-top: 30px;
    }

    .no-map {
        height: 300px;
        margin-top: 30px;
    }

    /* Timeline single column */
    .timeline::before {
        left: 20px;
    }

    .timeline-progress {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.tl-left {
        flex-direction: row;
        text-align: left;
        padding-left: 60px;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-card {
        width: 100%;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .brand-leaf {
        display: none;
    }

    .footer-names {
        font-size: 1.6rem;
    }

    .floral-corner {
        width: 150px;
        height: 150px;
        opacity: 0.3;
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 767.98px) {
    .fl-section {
        padding: 60px 0;
    }

    .fl-section-header {
        margin-bottom: 40px;
    }

    .fl-section-header h2 {
        font-size: 1.8rem;
        letter-spacing: 0;
    }

    .couple-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .floral-frame {
        padding: 20px 15px;
    }

    .frame-floral {
        width: 240px;
    }

    .wedding-date {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-box {
        min-width: 68px;
        padding: 12px 14px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .story-card {
        padding: 30px 25px;
    }

    .story-content {
        font-size: 1rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rsvp-card {
        padding: 30px 22px;
    }

    .venue-card {
        padding: 25px;
    }

    .additional-info-section .info-card {
        padding: 25px;
    }

    .footer-names {
        font-size: 1.4rem;
    }

    .footer-gallery-item {
        width: 60px;
        height: 60px;
    }

    .fl-section .swiper-button-next,
    .fl-section .swiper-button-prev {
        display: none;
    }

    .location-tabs-wrap .nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .location-tabs-wrap .nav-link i {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .floral-corner {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .fl-section {
        padding: 50px 0;
    }

    .fl-section-header h2 {
        font-size: 1.5rem;
    }

    .fl-section-header .section-icon {
        font-size: 1.4rem;
    }

    .divider-line {
        width: 50px;
    }

    .couple-name {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .floral-frame {
        padding: 15px 10px;
    }

    .frame-floral {
        width: 200px;
    }

    .ampersand {
        font-size: 1.5rem;
    }

    .amp-line {
        width: 40px;
    }

    .wedding-date {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .date-leaf {
        margin: 0 5px;
    }

    .countdown {
        gap: 6px;
    }

    .countdown-box {
        min-width: 60px;
        padding: 10px 10px;
    }

    .countdown-value {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .timeline-item,
    .timeline-item.tl-left {
        padding-left: 50px;
    }

    .timeline-dot {
        width: 28px;
        height: 28px;
    }

    .timeline-dot i {
        font-size: 0.55rem;
    }

    .timeline-card {
        padding: 18px;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-time {
        font-size: 0.8rem;
    }

    .attendance-options {
        flex-direction: column;
    }

    .btn-floral {
        width: 100%;
        padding: 14px 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 0.85rem;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 0.95rem;
    }

    .contact-image {
        width: 100px;
        height: 100px;
    }

    .footer-names {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .footer-date {
        font-size: 0.9rem;
    }

    .footer-gallery-item {
        width: 50px;
        height: 50px;
    }

    .venue-map {
        height: 280px;
    }

    .no-map {
        height: 200px;
    }

    .story-card {
        padding: 25px 18px;
    }

    .rsvp-card {
        padding: 25px 18px;
    }
}

/* ---------------------------------------------------------
   Print styles
   --------------------------------------------------------- */
@media print {
    .back-to-top,
    .scroll-indicator,
    #preloader,
    .navbar,
    .floral-corner,
    .hero-floral {
        display: none !important;
    }

    .fl-section,
    .fl-section-alt {
        background: #fff !important;
    }

    body {
        background: #fff !important;
    }

    .story-card,
    .venue-card,
    .timeline-card,
    .rsvp-card,
    .contact-card,
    .info-card {
        border-color: #ddd !important;
        box-shadow: none !important;
    }
}

/* 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;
}
