/* ============================================================
   Wedding 7 - Art Deco / Gatsby
   1920s glamour, geometric elegance, gold & navy
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #1B2A4A;
    --accent-color: #8B7355;
    --dark-color: #0A0A0A;
    --light-color: #FFFFF0;
    --white-color: #FFFFFF;

    --primary-rgb: 212, 175, 55;
    --secondary-rgb: 27, 42, 74;

    --font-display: 'Poiret One', cursive;
    --font-primary: 'Bodoni Moda', serif;
    --font-secondary: 'Montserrat', sans-serif;
    /* Kanonische Font-Aliase */
    --font-heading: var(--font-primary);
    --font-body: var(--font-secondary);

    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --section-padding: 100px 0;
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ----- General Styles ----- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
    overflow: hidden;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
}

/* ----- Preloader ----- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.deco-loader {
    display: flex;
    align-items: center;
    gap: 15px;
}

.deco-diamond {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
    animation: decoSpin 1.5s infinite ease-in-out;
}

.deco-diamond:last-child {
    animation-delay: 0.3s;
}

.deco-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    animation: decoExpand 1.5s infinite ease-in-out;
}

@keyframes decoSpin {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
    50% { transform: rotate(45deg) scale(0.5); opacity: 0.5; }
}

@keyframes decoExpand {
    0%, 100% { width: 60px; }
    50% { width: 30px; }
}

.loading-text {
    margin-top: 30px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* ----- Art Deco Divider ----- */
.art-deco-divider {
    height: 20px;
    background:
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 5px,
            var(--primary-color) 5px,
            var(--primary-color) 6px,
            transparent 6px,
            transparent 11px,
            var(--primary-color) 11px,
            var(--primary-color) 12px
        );
    opacity: 0.4;
}

/* ----- Art Deco Frame ----- */
.art-deco-frame {
    position: relative;
    border: 2px solid var(--primary-color);
    padding: 40px;
    margin: 0 auto;
}

.art-deco-frame::before,
.art-deco-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
}

.art-deco-frame::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.art-deco-frame::after {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

/* ----- Section Header ----- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
}

/* Inline Art Deco divider under section titles */
.deco-divider-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.deco-divider-inline i {
    color: var(--primary-color);
    font-size: 0.6rem;
}

.deco-divider-inline .deco-line-left,
.deco-divider-inline .deco-line-right {
    display: inline-block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ----- Navigation ----- */
.navbar {
    background-color: rgba(255, 255, 240, 0.95);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
}

.navbar-brand .brand-amp {
    color: var(--primary-color);
    font-style: italic;
}

.navbar-toggler {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 10px;
}

.navbar-toggler i {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-color) !important;
    padding: 8px 18px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* ----- Hero Section ----- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-color);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.default-bg {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(27, 42, 74, 0.6) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 2;
}

/* Sunburst behind hero content */
.hero-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: repeating-conic-gradient(
        var(--primary-color) 0deg 2deg,
        transparent 2deg 15deg
    );
    opacity: 0.05;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* Art Deco Hero Frame */
.art-deco-hero-frame {
    display: inline-block;
    padding: 50px 60px;
    border: 2px solid var(--primary-color);
    position: relative;
}

.art-deco-hero-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    pointer-events: none;
}

/* Corner ornaments for hero frame */
.art-deco-hero-frame::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.hero-names {
    margin-bottom: 10px;
}

.hero-names .first-name,
.hero-names .second-name {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--white-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--white-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.deco-ampersand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.amp-symbol {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 3rem;
    color: var(--primary-color);
}

.amp-line-left,
.amp-line-right {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

/* Wedding date */
.wedding-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.date-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 300;
}

.date-line-left,
.date-line-right {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

/* Countdown */
.countdown-container {
    margin-top: 40px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-box {
    background: rgba(27, 42, 74, 0.6);
    border: 1px solid var(--primary-color);
    padding: 15px 20px;
    min-width: 90px;
    text-align: center;
    position: relative;
}

/* Geometric corner cuts for countdown boxes */
.countdown-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
}

.countdown-box::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.countdown-separator {
    color: var(--primary-color);
    font-size: 0.5rem;
    opacity: 0.6;
}

/* Scroll down */
.scroll-down {
    margin-top: 50px;
}

.scroll-down a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transform: rotate(0deg);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.scroll-down a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* ----- Story Section ----- */
.story-section {
    background-color: var(--light-color);
}

.story-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--secondary-color);
    text-align: center;
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* ----- Agenda Section ----- */
.agenda-section {
    background-color: var(--white-color);
}

.deco-timeline {
    position: relative;
}

/* Horizontal line behind cards */
.deco-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
    transform: translateY(-50%);
}

.agenda-card {
    background: var(--light-color);
    border: 1px solid var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
    height: 100%;
}

.agenda-card:hover {
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

/* Art Deco top border pattern */
.agenda-card-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 8px,
        transparent 8px,
        transparent 12px,
        var(--primary-color) 12px,
        var(--primary-color) 14px,
        transparent 14px,
        transparent 18px
    );
}

.agenda-diamond {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.agenda-diamond i {
    transform: rotate(-45deg);
    color: var(--primary-color);
    font-size: 1rem;
}

.agenda-time {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.agenda-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.agenda-description {
    font-size: 0.9rem;
    color: var(--accent-color);
    line-height: 1.6;
}

/* Agenda Swiper navigation */
.agendaSwiper .swiper-button-next,
.agendaSwiper .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.agendaSwiper .swiper-button-next::after,
.agendaSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
}

.agendaSwiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.3;
}

.agendaSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* ----- Venue Section ----- */
.venue-section {
    background-color: var(--light-color);
}

.venue-frame {
    margin-top: 20px;
}

.venue-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.venue-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.venue-address {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.venue-address i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.venue-address address {
    font-style: normal;
    line-height: 1.8;
    color: var(--secondary-color);
}

.travel-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.travel-info > i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.travel-content {
    line-height: 1.8;
    color: var(--secondary-color);
}

.venue-map {
    width: 100%;
    height: 350px;
    border: 2px solid var(--primary-color);
    position: relative;
}

.no-map {
    width: 100%;
    height: 350px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 42, 74, 0.03);
}

.no-map-content {
    text-align: center;
    color: var(--accent-color);
}

.no-map-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    display: block;
    margin-bottom: 10px;
}

/* Location tabs */
.deco-location-tabs .nav-pills {
    border: 1px solid var(--primary-color);
    background: var(--white-color);
    padding: 5px;
}

.deco-location-tabs .nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.deco-location-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.deco-location-tabs .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.deco-location-tabs .nav-link i {
    font-size: 0.9rem;
}

/* Map marker */
.wedding-map-marker {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    border: 2px solid var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ----- Gallery Section ----- */
.gallery-section {
    background-color: var(--white-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 74, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.4);
}

.gallery-overlay i {
    color: var(--primary-color);
    font-size: 2rem;
}

/* ----- RSVP Section ----- */
.rsvp-section {
    background-color: var(--light-color);
    position: relative;
}

/* Subtle sunburst pattern behind RSVP */
.rsvp-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: repeating-conic-gradient(
        var(--primary-color) 0deg 2deg,
        transparent 2deg 15deg
    );
    opacity: 0.03;
    z-index: 0;
}

.rsvp-card {
    background: var(--white-color);
    position: relative;
    z-index: 1;
}

.rsvp-card .form-control {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    background: var(--white-color);
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.rsvp-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
    background: var(--white-color);
}

.rsvp-card .form-floating label {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Attendance buttons */
.attendance-label {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.attendance-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.attendance-option {
    flex: 1;
    min-width: 160px;
}

.attendance-btn {
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 12px 20px;
    transition: var(--transition-fast);
    background: transparent;
}

.attendance-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-check:checked + .attendance-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.btn-submit {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 14px 50px;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Alerts */
.alert {
    border-radius: 0;
    border: 1px solid var(--primary-color);
    font-family: var(--font-secondary);
}

/* ----- Additional Info Section ----- */
.additional-info-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.info-card {
    background: var(--light-color);
    border: 1px solid var(--primary-color);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: var(--transition-fast);
}

.info-card:hover {
    box-shadow: var(--gold-glow);
}

.info-card-deco-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 20%,
        var(--primary-color) 40%,
        transparent 45%,
        transparent 55%,
        var(--primary-color) 60%,
        var(--primary-color) 80%,
        transparent 100%
    );
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
}

.info-icon i {
    transform: rotate(-45deg);
    color: var(--primary-color);
    font-size: 1rem;
}

.info-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

/* Swiper navigation */
.infoSwiper .swiper-button-next,
.infoSwiper .swiper-button-prev {
    color: var(--primary-color);
}

.infoSwiper .swiper-button-next::after,
.infoSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
}

.infoSwiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.3;
}

.infoSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ----- Contacts Section ----- */
.contacts-section {
    background-color: var(--light-color);
}

.contact-card {
    text-align: center;
    background: var(--white-color);
    height: 100%;
    padding-bottom: 30px;
}

.contact-image {
    padding: 30px 30px 0;
    display: flex;
    justify-content: center;
}

.contact-image-clip {
    width: 140px;
    height: 140px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    overflow: hidden;
}

.contact-image-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    padding: 20px 25px 10px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-role {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 15px;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-detail i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

.contact-detail a {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.contact-more-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    color: var(--accent-color);
}

.contact-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
}

.contact-cta p {
    color: var(--accent-color);
}

.btn-contact {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    color: var(--secondary-color);
    padding: 12px 30px;
    transition: var(--transition-fast);
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* ----- FAQ Section ----- */
.faq-section {
    background-color: var(--white-color);
}

.accordion-item {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0 !important;
    margin-bottom: 10px;
    background: var(--light-color);
}

.accordion-button {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--secondary-color);
    background: var(--light-color);
    border-radius: 0 !important;
    padding: 18px 25px;
    letter-spacing: 0.02em;
}

.accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
    width: auto;
    height: auto;
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.accordion-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--secondary-color);
    padding: 20px 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ----- Footer ----- */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-deco-top {
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 15px,
        transparent 15px,
        transparent 20px,
        var(--primary-color) 20px,
        var(--primary-color) 22px,
        transparent 22px,
        transparent 27px
    );
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-header {
    text-align: center;
    margin-bottom: 40px;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.footer-amp {
    font-family: var(--font-primary);
    font-style: italic;
    color: var(--primary-color);
    opacity: 0.7;
}

.footer-date {
    font-family: var(--font-secondary);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.footer-deco-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-deco-line span {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.footer-deco-line i {
    color: var(--primary-color);
    font-size: 0.5rem;
    opacity: 0.5;
}

.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;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-gallery-item:hover {
    opacity: 1;
    box-shadow: var(--gold-glow);
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-info {
    margin-top: 30px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.legal-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 15px;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    transform: rotate(45deg);
}

.back-to-top i {
    transform: rotate(-45deg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* ----- Modals ----- */
.modal-content {
    border-radius: 0;
    border: 2px solid var(--primary-color);
    background: var(--light-color);
}

.modal-header {
    background: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}

.modal-title {
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
    color: var(--secondary-color);
    line-height: 1.8;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large desktops */
@media (max-width: 1200px) {
    h2 {
        font-size: 2.5rem;
    }

    .hero-names .first-name,
    .hero-names .second-name {
        font-size: 4rem;
    }

    .art-deco-hero-frame {
        padding: 40px 45px;
    }
}

/* Tablets landscape */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    h2 {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }

    .hero-names .first-name,
    .hero-names .second-name {
        font-size: 3.2rem;
    }

    .amp-symbol {
        font-size: 2.2rem;
    }

    .art-deco-hero-frame {
        padding: 35px 30px;
    }

    .hero-sunburst {
        width: 500px;
        height: 500px;
    }

    .countdown-box {
        padding: 12px 15px;
        min-width: 75px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .art-deco-frame {
        padding: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .footer-names {
        font-size: 2rem;
    }

    /* Navbar collapse styling */
    .navbar-collapse {
        background-color: rgba(255, 255, 240, 0.98);
        padding: 15px;
        margin-top: 10px;
        border: 1px solid var(--primary-color);
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        text-align: center;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-names .first-name,
    .hero-names .second-name {
        font-size: 2.5rem;
        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .amp-symbol {
        font-size: 1.8rem;
    }

    .amp-line-left,
    .amp-line-right {
        width: 40px;
    }

    .art-deco-hero-frame {
        padding: 30px 25px;
    }

    .art-deco-hero-frame::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 8px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-box {
        min-width: 70px;
        padding: 10px 12px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .art-deco-frame {
        padding: 25px 20px;
    }

    .art-deco-frame::before,
    .art-deco-frame::after {
        width: 20px;
        height: 20px;
    }

    .venue-map {
        height: 280px;
        margin-top: 20px;
    }

    .no-map {
        height: 280px;
        margin-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-width: 2px;
    }

    .contact-image-clip {
        width: 120px;
        height: 120px;
    }

    .footer-names {
        font-size: 1.6rem;
    }

    .footer-gallery-item {
        width: 60px;
        height: 60px;
    }

    .deco-divider-inline .deco-line-left,
    .deco-divider-inline .deco-line-right {
        width: 50px;
    }

    .deco-location-tabs .nav-link {
        font-size: 0.75rem;
        padding: 10px 12px;
    }

    .art-deco-divider {
        height: 14px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    h2 {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-names .first-name,
    .hero-names .second-name {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .amp-symbol {
        font-size: 1.5rem;
    }

    .deco-ampersand {
        gap: 12px;
        margin: 10px 0;
    }

    .amp-line-left,
    .amp-line-right {
        width: 25px;
    }

    .art-deco-hero-frame {
        padding: 25px 18px;
        border-width: 1px;
    }

    .art-deco-hero-frame::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }

    .art-deco-hero-frame::after {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }

    .hero-sunburst {
        width: 350px;
        height: 350px;
    }

    .countdown-container {
        margin-top: 25px;
    }

    .countdown-box {
        min-width: 60px;
        padding: 8px 10px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .date-text {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }

    .date-line-left,
    .date-line-right {
        width: 20px;
    }

    .wedding-date {
        gap: 8px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .art-deco-frame {
        padding: 20px 15px;
        border-width: 1px;
    }

    .art-deco-frame::before,
    .art-deco-frame::after {
        width: 15px;
        height: 15px;
        border-width: 1px;
    }

    .art-deco-frame::before {
        top: 5px;
        left: 5px;
    }

    .art-deco-frame::after {
        bottom: 5px;
        right: 5px;
    }

    .story-content {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .agenda-diamond {
        width: 40px;
        height: 40px;
    }

    .venue-card h3 {
        font-size: 1.4rem;
    }

    .venue-map {
        height: 220px;
    }

    .no-map {
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item {
        border-width: 2px;
    }

    .attendance-options {
        flex-direction: column;
    }

    .attendance-option {
        min-width: auto;
    }

    .btn-submit {
        padding: 12px 35px;
        font-size: 0.8rem;
    }

    .contact-image-clip {
        width: 100px;
        height: 100px;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .deco-location-tabs .nav-pills {
        flex-direction: column;
    }

    .deco-location-tabs .nav-link {
        width: 100%;
    }

    .footer-names {
        font-size: 1.3rem;
        letter-spacing: 0.1em;
    }

    .footer-content {
        padding: 40px 0 30px;
    }

    .footer-gallery-item {
        width: 50px;
        height: 50px;
    }

    .scroll-down {
        margin-top: 30px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 20px;
        right: 20px;
    }

    .art-deco-divider {
        height: 10px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .deco-divider-inline .deco-line-left,
    .deco-divider-inline .deco-line-right {
        width: 35px;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .info-card {
        padding: 25px 18px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .hero-names .first-name,
    .hero-names .second-name {
        font-size: 1.5rem;
    }

    .art-deco-hero-frame {
        padding: 20px 15px;
    }

    .countdown-box {
        min-width: 55px;
        padding: 6px 8px;
    }

    .countdown-value {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
}

/* ----- Print Styles ----- */
@media print {
    .navbar,
    .back-to-top,
    .scroll-down,
    #preloader,
    .art-deco-divider {
        display: none !important;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
/* 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;
}
