/* ============================================================
   Floral 2 — Watercolor Botanics
   Luxurious burgundy & gold one-pager with botanical accents
   ============================================================ */

:root {
    --f2-burgundy:  #722F37;
    --f2-burgundy-dark: #5A1F26;
    --f2-blush:     #F2D7D9;
    --f2-gold:      #C9A96E;
    --f2-gold-light:#DFC89D;
    --f2-forest:    #2D5A27;
    --f2-forest-light: #3E7A35;
    --f2-cream:     #FDF6EC;
    --f2-cream-dark:#F5ECD8;
    --f2-text:      #3D2B2F;
    --f2-text-light:#6B5256;
    --f2-white:     #FFFFFF;
    /* Kanonische Farb-Aliase */
    --primary-color: var(--f2-burgundy);
    --secondary-color: var(--f2-gold);
    --accent-color: var(--f2-forest);
    --dark-color: var(--f2-text);
    --light-color: var(--f2-cream);
    --white-color: var(--f2-white);
    --f2-shadow-sm: 0 2px 8px rgba(114,47,55,0.06);
    --f2-shadow-md: 0 6px 24px rgba(114,47,55,0.08);
    --f2-shadow-lg: 0 12px 40px rgba(114,47,55,0.12);
    --f2-radius:    16px;
    --f2-radius-sm: 10px;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--f2-text);
    background: var(--f2-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--f2-burgundy);
}

a { color: var(--f2-burgundy); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--f2-gold); }

img { max-width: 100%; height: auto; }

::selection { background: var(--f2-blush); color: var(--f2-burgundy); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--f2-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.preloader-inner { text-align: center; }

.preloader-wreath {
    animation: preloaderSpin 8s linear infinite;
}

@keyframes preloaderSpin { 100% { transform: rotate(360deg); } }

.loading-text {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--f2-burgundy);
    opacity: 0.6;
    animation: loadPulse 1.5s ease-in-out infinite;
}

@keyframes loadPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ============================================================
   SIDE VINE DECORATIONS
   ============================================================ */
.vine-left,
.vine-right {
    position: fixed;
    top: 0;
    width: 60px;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s;
}

.vine-left  { left: 0; }
.vine-right { right: 0; }

.vine-left svg,
.vine-right svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .vine-left, .vine-right { opacity: 0.5; width: 40px; }
}
@media (max-width: 768px) {
    .vine-left, .vine-right { display: none; }
}

/* ============================================================
   FLOATING NAV
   ============================================================ */
.f2-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    width: calc(100% - 32px);
    max-width: 900px;
    border-radius: 50px;
    padding: 8px 24px;
    background: rgba(253, 246, 236, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.f2-nav-scrolled {
    top: 10px;
    background: rgba(253, 246, 236, 0.92);
    box-shadow: var(--f2-shadow-md);
    border-color: rgba(201, 169, 110, 0.25);
}

.f2-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f2-nav-brand {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: var(--f2-white) !important;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: color 0.4s;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.f2-nav-scrolled .f2-nav-brand {
    color: var(--f2-burgundy) !important;
    text-shadow: none;
}

.f2-amp {
    font-family: var(--font-display);
    color: var(--f2-gold-light);
    margin: 0 4px;
    transition: color 0.4s;
}

.f2-nav-scrolled .f2-amp {
    color: var(--f2-gold);
}

.f2-nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.f2-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--f2-white);
    border-radius: 2px;
    transition: all 0.3s;
}

.f2-nav-scrolled .f2-nav-toggle span {
    background: var(--f2-burgundy);
}

.f2-nav-links {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.f2-nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.25s;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.f2-nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--f2-white) !important;
}

.f2-nav-scrolled .f2-nav-links a {
    color: var(--f2-text) !important;
    text-shadow: none;
}

.f2-nav-scrolled .f2-nav-links a:hover {
    background: rgba(114, 47, 55, 0.08);
    color: var(--f2-burgundy) !important;
}

.f2-nav-links .f2-nav-cta {
    background: rgba(255,255,255,0.2);
    color: var(--f2-white) !important;
    margin-left: 4px;
    text-shadow: none;
}

.f2-nav-links .f2-nav-cta:hover {
    background: rgba(255,255,255,0.3);
    color: var(--f2-white) !important;
}

.f2-nav-scrolled .f2-nav-links .f2-nav-cta {
    background: var(--f2-burgundy);
    color: var(--f2-white) !important;
}

.f2-nav-scrolled .f2-nav-links .f2-nav-cta:hover {
    background: var(--f2-burgundy-dark);
}

@media (max-width: 768px) {
    .f2-nav {
        width: calc(100% - 20px);
        padding: 8px 16px;
        border-radius: 20px;
    }

    .f2-nav-toggle {
        display: flex;
    }

    .f2-nav-links {
        display: none !important;
        flex-direction: column;
        width: 100%;
        padding: 12px 0 6px;
        gap: 4px;
    }

    .f2-nav-links.show {
        display: flex !important;
    }

    .f2-nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px 14px;
    }

    .f2-nav-links .f2-nav-cta {
        margin-left: 0;
        margin-top: 4px;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.f2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.f2-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.f2-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.f2-hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.f2-hero-default {
    background: linear-gradient(135deg, var(--f2-burgundy) 0%, #4A1520 50%, var(--f2-burgundy-dark) 100%);
    opacity: 1 !important;
    transform: none !important;
}

.f2-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(114, 47, 55, 0.35) 0%,
        rgba(61, 43, 47, 0.50) 50%,
        rgba(45, 30, 33, 0.65) 100%
    );
}

/* ---- Large Botanical Wreath Frame ---- */
.f2-hero-wreath {
    position: absolute;
    z-index: 2;
    width: min(70vw, 480px);
    height: min(70vw, 480px);
    pointer-events: none;
    opacity: 0.9;
    animation: wreathFloat 6s ease-in-out infinite;
}

@keyframes wreathFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.f2-hero-wreath svg {
    width: 100%;
    height: 100%;
}

/* ---- Hero Content ---- */
.f2-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.f2-names {
    text-align: center;
}

.f2-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--f2-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: 2px;
    line-height: 1.1;
}

.f2-and {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.f2-and span {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--f2-gold-light);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.f2-and svg {
    opacity: 0.7;
}

.f2-date {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--f2-blush);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ---- Countdown ---- */
.f2-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 28px;
}

.f2-cd-item {
    text-align: center;
    min-width: 60px;
}

.f2-cd-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--f2-white);
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.f2-cd-lbl {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--f2-blush);
    margin-top: 2px;
    opacity: 0.8;
}

.f2-cd-dot {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--f2-gold-light);
    opacity: 0.5;
    line-height: 1;
    align-self: flex-start;
    margin-top: 6px;
}

/* ---- Scroll Button ---- */
.f2-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-top: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    color: var(--f2-gold-light) !important;
    text-decoration: none !important;
    font-size: 18px;
    transition: all 0.3s;
    animation: scrollBounce 2s ease-in-out infinite;
}

.f2-scroll-btn:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--f2-gold);
    color: var(--f2-white) !important;
    transform: translateY(4px);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ============================================================
   WAVE TRANSITIONS
   ============================================================ */
.f2-wave-top,
.f2-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.f2-wave-top    { top: -1px; }
.f2-wave-bottom { bottom: -1px; }

.f2-wave-top svg,
.f2-wave-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Hero bottom wave is taller */
.f2-hero > .f2-wave-bottom svg {
    height: 100px;
}

/* ============================================================
   SECTIONS (Shared)
   ============================================================ */
.f2-sec {
    position: relative;
    padding: 80px 0;
    background: var(--f2-cream);
}

.f2-sec-dark {
    background: var(--f2-burgundy);
    color: var(--f2-blush);
}

.f2-sec-dark h2,
.f2-sec-dark h3 {
    color: var(--f2-white);
}

.f2-sec-dark a { color: var(--f2-gold-light); }
.f2-sec-dark a:hover { color: var(--f2-white); }

.f2-sec-head {
    text-align: center;
    margin-bottom: 48px;
}

.f2-sec-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    margin: 12px 0 8px;
    letter-spacing: 1px;
}

/* ---- Badge ---- */
.f2-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--f2-blush), rgba(242,215,217,0.4));
    color: var(--f2-burgundy);
    font-size: 20px;
    box-shadow: var(--f2-shadow-sm);
}

.f2-sec-dark .f2-badge {
    background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(201,169,110,0.1));
    color: var(--f2-gold-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* ---- Ornament ---- */
.f2-ornament {
    margin-top: 6px;
    line-height: 0;
    opacity: 0.8;
}

/* ============================================================
   STORY
   ============================================================ */
.f2-story-card {
    position: relative;
    background: var(--f2-white);
    border-radius: var(--f2-radius);
    padding: 48px;
    box-shadow: var(--f2-shadow-md);
    border: 1px solid rgba(201, 169, 110, 0.12);
    overflow: hidden;
}

.f2-story-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.5;
    pointer-events: none;
}

.f2-story-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--f2-text);
}

.f2-story-text p {
    margin-bottom: 1rem;
}

.f2-story-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .f2-story-card { padding: 28px 20px; }
    .f2-story-text { font-size: 1.05rem; }
}

/* ============================================================
   AGENDA (Horizontal Swiper Cards)
   ============================================================ */
.f2-agenda-track {
    padding: 0 20px;
}

.f2-agenda-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--f2-radius);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.f2-agenda-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--f2-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.f2-agenda-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--f2-gold);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.4;
}

.f2-agenda-time {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--f2-gold-light);
    margin-bottom: 12px;
}

.f2-agenda-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--f2-white);
    margin-bottom: 8px;
}

.f2-agenda-card p {
    font-size: 0.9rem;
    color: var(--f2-blush);
    opacity: 0.8;
    margin: 0;
}

.f2-agenda-dots {
    margin-top: 24px;
}

.f2-agenda-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--f2-blush);
    opacity: 0.3;
    transition: all 0.3s;
}

.f2-agenda-dots .swiper-pagination-bullet-active {
    background: var(--f2-gold);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   VENUE
   ============================================================ */
.f2-venue-card {
    background: var(--f2-white);
    border-radius: var(--f2-radius);
    padding: 36px;
    box-shadow: var(--f2-shadow-md);
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 100%;
}

.f2-venue-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.f2-venue-card h3 i {
    color: var(--f2-gold);
    font-size: 1.1rem;
}

.f2-venue-card address {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: normal;
    color: var(--f2-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.f2-travel {
    font-size: 0.95rem;
    color: var(--f2-text-light);
    line-height: 1.7;
}

.f2-travel p { margin-bottom: 0.8rem; }

.f2-map {
    width: 100%;
    height: 380px;
    border-radius: var(--f2-radius);
    overflow: hidden;
    box-shadow: var(--f2-shadow-md);
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.f2-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    background: var(--f2-burgundy);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(114, 47, 55, 0.3);
}

.f2-marker i {
    transform: rotate(45deg);
    color: var(--f2-white);
    font-size: 14px;
}

.f2-no-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    background: var(--f2-cream-dark);
    border-radius: var(--f2-radius);
    color: var(--f2-text-light);
    border: 1px dashed rgba(201, 169, 110, 0.2);
}

.f2-no-map i {
    font-size: 2.5rem;
    opacity: 0.3;
    margin-bottom: 12px;
}

.f2-no-map p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Location Tabs */
.location-tabs-wrap {
    margin-bottom: 20px;
}

.location-tabs-wrap .nav-pills {
    background: var(--f2-white);
    border-radius: 50px;
    padding: 4px;
    box-shadow: var(--f2-shadow-sm);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.location-tabs-wrap .nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--f2-text-light);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    transition: all 0.3s;
}

.location-tabs-wrap .nav-link:hover {
    color: var(--f2-burgundy);
    background: rgba(242, 215, 217, 0.3);
}

.location-tabs-wrap .nav-link.active {
    background: var(--f2-burgundy);
    color: var(--f2-white);
}

.location-tabs-wrap .nav-link i {
    font-size: 0.9rem;
}

/* ============================================================
   GALLERY (Cinematic Swiper)
   ============================================================ */
.f2-gallery-wrap {
    padding: 20px 0;
    overflow: visible;
}

.gallerySwiper {
    overflow: visible !important;
    padding: 20px 0 !important;
}

.gallerySwiper .swiper-slide {
    width: 360px;
    border-radius: var(--f2-radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.5;
    transform: scale(0.88);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallerySwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.gallerySwiper .swiper-slide-prev,
.gallerySwiper .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.92);
}

.gallerySwiper .swiper-slide a {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .gallerySwiper .swiper-slide { width: 280px; }
    .gallerySwiper .swiper-slide img { height: 220px; }
}

/* ============================================================
   RSVP
   ============================================================ */
.f2-rsvp-sec {
    background: var(--f2-cream);
}

.f2-rsvp-card {
    background: var(--f2-white);
    border-radius: var(--f2-radius);
    padding: 40px;
    box-shadow: var(--f2-shadow-lg);
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.f2-rsvp-card .form-control,
.f2-rsvp-card .form-select {
    border: 1.5px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--f2-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    transition: all 0.3s;
    background: var(--f2-cream);
}

.f2-rsvp-card .form-control:focus,
.f2-rsvp-card .form-select:focus {
    border-color: var(--f2-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    background: var(--f2-white);
}

.f2-rsvp-card .form-floating label {
    font-family: var(--font-body);
    color: var(--f2-text-light);
    font-size: 0.9rem;
}

.f2-rsvp-card .form-floating > .form-control:focus ~ label,
.f2-rsvp-card .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--f2-burgundy);
}

/* ---- Attendance Buttons ---- */
.f2-attend-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--f2-text);
    margin-bottom: 10px;
}

.f2-attend-opts {
    display: flex;
    gap: 12px;
}

.f2-attend-opt {
    flex: 1;
}

.f2-attend-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--f2-radius-sm) !important;
    border: 1.5px solid rgba(201, 169, 110, 0.2) !important;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--f2-text) !important;
    background: var(--f2-cream) !important;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.f2-attend-btn:hover {
    border-color: var(--f2-gold) !important;
    background: rgba(201, 169, 110, 0.08) !important;
}

.btn-check:checked + .f2-attend-btn {
    background: var(--f2-burgundy) !important;
    border-color: var(--f2-burgundy) !important;
    color: var(--f2-white) !important;
    box-shadow: var(--f2-shadow-sm);
}

@media (max-width: 480px) {
    .f2-attend-opts { flex-direction: column; gap: 8px; }
    .f2-rsvp-card { padding: 24px 18px; }
}

/* ---- Primary Button ---- */
.f2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--f2-burgundy), var(--f2-burgundy-dark));
    color: var(--f2-white) !important;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.25);
    text-decoration: none !important;
}

.f2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(114, 47, 55, 0.35);
    background: linear-gradient(135deg, var(--f2-burgundy-dark), var(--f2-burgundy));
    color: var(--f2-white) !important;
}

.f2-btn:active {
    transform: translateY(0);
}

/* ============================================================
   ADDITIONAL INFO (Swiper)
   ============================================================ */
.f2-info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--f2-radius);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.f2-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 110, 0.25);
}

.f2-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    color: var(--f2-gold-light);
    font-size: 18px;
    margin-bottom: 16px;
}

.f2-info-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--f2-blush);
}

.f2-info-text p { margin-bottom: 0.8rem; }
.f2-info-text p:last-child { margin-bottom: 0; }

/* Info Swiper navigation */
.infoSwiper .swiper-button-next,
.infoSwiper .swiper-button-prev {
    color: var(--f2-gold);
    width: 36px;
    height: 36px;
}

.infoSwiper .swiper-button-next::after,
.infoSwiper .swiper-button-prev::after {
    font-size: 16px;
}

.infoSwiper .swiper-pagination-bullet {
    background: var(--f2-blush);
    opacity: 0.3;
}

.infoSwiper .swiper-pagination-bullet-active {
    background: var(--f2-gold);
    opacity: 1;
}

/* ============================================================
   CONTACTS
   ============================================================ */
.f2-contact-card {
    background: var(--f2-white);
    border-radius: var(--f2-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--f2-shadow-md);
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 100%;
    transition: all 0.35s;
}

.f2-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--f2-shadow-lg);
}

.f2-contact-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--f2-blush);
    box-shadow: var(--f2-shadow-sm);
}

.f2-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f2-contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 4px;
}

.f2-contact-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--f2-gold);
    margin-bottom: 14px;
}

.f2-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.f2-contact-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--f2-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.f2-contact-links a:hover {
    color: var(--f2-burgundy);
}

.f2-contact-links a i {
    color: var(--f2-gold);
    font-size: 0.85rem;
}

.f2-contact-extra {
    font-size: 0.88rem;
    color: var(--f2-text-light);
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

/* ============================================================
   FAQ
   ============================================================ */
.f2-faq-item {
    border: none !important;
    border-radius: var(--f2-radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.1) !important;
}

.f2-faq-item .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--f2-white);
    background: transparent;
    border: none;
    box-shadow: none !important;
    padding: 18px 24px;
    transition: all 0.3s;
}

.f2-faq-item .accordion-button:not(.collapsed) {
    background: rgba(201, 169, 110, 0.1);
    color: var(--f2-gold-light);
}

.f2-faq-item .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.f2-faq-item .accordion-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--f2-blush);
    padding: 0 24px 18px;
    opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.f2-footer {
    position: relative;
    background: var(--f2-burgundy-dark);
    color: var(--f2-blush);
    padding: 60px 0 36px;
    text-align: center;
}

.f2-footer-wreath {
    margin-bottom: 16px;
    opacity: 0.6;
}

.f2-footer-names {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--f2-white);
    letter-spacing: 1px;
}

.f2-footer-date {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--f2-gold);
    margin-top: 6px;
    opacity: 0.7;
}

.f2-footer-gallery {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 28px auto;
    max-width: 600px;
    flex-wrap: wrap;
}

.f2-footer-img {
    width: 80px;
    height: 80px;
    border-radius: var(--f2-radius-sm);
    overflow: hidden;
    border: 2px solid rgba(201, 169, 110, 0.2);
}

.f2-footer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.f2-footer-img:hover img {
    transform: scale(1.1);
}

.f2-footer-texts {
    margin-top: 24px;
}

.f2-footer-txt {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(242, 215, 217, 0.7);
}

.f2-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.f2-legal a {
    font-size: 0.85rem;
    color: rgba(242, 215, 217, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.f2-legal a:hover { color: var(--f2-gold-light); }

.f2-copy {
    margin-top: 12px;
    font-size: 0.8rem;
    color: rgba(242, 215, 217, 0.35);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.f2-btt {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--f2-burgundy);
    color: var(--f2-white) !important;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s;
    z-index: 8000;
}

.f2-btt.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.f2-btt:hover {
    background: var(--f2-burgundy-dark);
    box-shadow: 0 6px 24px rgba(114, 47, 55, 0.4);
    transform: translateY(-2px);
    color: var(--f2-white) !important;
}

/* ============================================================
   MODALS
   ============================================================ */
.f2-modal {
    border: none;
    border-radius: var(--f2-radius);
    overflow: hidden;
}

.f2-modal .modal-header {
    background: var(--f2-cream);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 16px 24px;
}

.f2-modal .modal-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--f2-burgundy);
}

.f2-modal .modal-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--f2-text);
    padding: 24px;
}

.f2-modal .btn-close {
    filter: none;
    opacity: 0.5;
}

/* ============================================================
   GIFT REGISTRY overrides
   ============================================================ */
.gift-registry-section {
    background: var(--f2-cream) !important;
}

/* ============================================================
   BOOTSTRAP ALERT overrides
   ============================================================ */
.f2-sec .alert {
    border-radius: var(--f2-radius-sm);
    border: none;
    font-family: var(--font-body);
}

.f2-sec .alert-success {
    background: rgba(45, 90, 39, 0.08);
    color: var(--f2-forest);
    border-left: 4px solid var(--f2-forest);
}

.f2-sec .alert-danger {
    background: rgba(114, 47, 55, 0.08);
    color: var(--f2-burgundy);
    border-left: 4px solid var(--f2-burgundy);
}

.f2-sec .alert-info {
    background: rgba(201, 169, 110, 0.08);
    color: var(--f2-text);
    border-left: 4px solid var(--f2-gold);
}

.f2-sec .alert-warning {
    background: rgba(201, 169, 110, 0.12);
    color: var(--f2-text);
    border-left: 4px solid var(--f2-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .f2-sec { padding: 60px 0; }
    .f2-sec-head { margin-bottom: 36px; }
    .f2-map { height: 300px; }
    .venue-details .col-lg-5,
    .venue-details .col-lg-7 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .f2-sec { padding: 48px 0; }
    .f2-sec-head { margin-bottom: 28px; }
    .f2-sec-head h2 { font-size: 1.6rem; }
    .f2-map { height: 250px; }
    .f2-venue-card { padding: 24px; }
    .f2-footer { padding: 40px 0 28px; }
    .f2-footer-img { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
    .f2-sec { padding: 36px 0; }
    .f2-hero-wreath { width: 85vw; height: 85vw; }
    .f2-name { font-size: 2.2rem; }
    .f2-cd-item { min-width: 48px; }
    .f2-cd-num { font-size: 1.4rem; }
    .f2-cd-lbl { font-size: 9px; letter-spacing: 1px; }
    .f2-cd-dot { font-size: 1.2rem; }
    .f2-venue-card { padding: 20px 16px; }
    .f2-contact-card { padding: 24px 16px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .f2-nav, .f2-btt, .vine-left, .vine-right,
    #preloader, .f2-wave-top, .f2-wave-bottom,
    .f2-scroll-btn, .f2-hero-wreath { display: none !important; }

    .f2-hero { min-height: auto; padding: 40px 20px; }
    .f2-hero-overlay { background: var(--f2-burgundy) !important; }
    .f2-sec, .f2-sec-dark { padding: 20px 0; }
    .f2-sec-dark { background: #f5f0e0 !important; color: #333 !important; }
    .f2-sec-dark h2, .f2-sec-dark h3 { color: #333 !important; }
    body { background: white; }
}
