/* ===================================
   Kathleen & Dennis Wedding
   Beige, Bold Red & Silver Theme
   Elegant, Modern, Timeless
=================================== */

:root {
    --color-matcha-dark: #2a2a2a;
    --color-matcha: #4a4a4a;
    --color-matcha-light: #d5d0cb;
    --color-matcha-pale: #e8e6e0;
    --color-pink-dark: #cc0000;
    --color-pink: #ff3131;
    --color-pink-light: #ff5555;
    --color-pink-pale: #fff5f5;
    --color-cream: #e8e6e0;
    --color-white: #ffffff;
    --color-text: #2a2a2a;
    --color-text-light: #6a6a6a;
    --color-silver: #c0c0c0;
    --color-silver-light: #d8d8d8;
    
    --font-serif: 'Times New Roman MT Condensed', 'Times New Roman', Georgia, serif;
    --font-sans: 'Public Sans', 'Helvetica Neue', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.nav.scrolled {
    background-color: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.15em;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.nav.scrolled .nav-logo {
    color: var(--color-matcha-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav.scrolled .nav-menu a {
    color: var(--color-matcha);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 1px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

.nav.scrolled .nav-toggle span {
    background-color: var(--color-matcha-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('hero-couple.jpg') center 20% / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 3.5rem 4rem;
    margin: 0 2rem;
    max-width: 600px;
}

/* SVG Lace frame overlay - deaktiviert
.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('lace-frame.svg') center / 100% 100% no-repeat;
    pointer-events: none;
} */

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-silver-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title .name {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.hero-title .ampersand {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-pink);
    margin: 0.5rem 0;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-date p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-silver-light);
}

.date-line {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-white);
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-silver-light);
    margin-top: 0.5rem;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border: 1px solid;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: fadeInUp 1s ease 1s both;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.3);
}

.btn-large {
    padding: 1.4rem 4rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Section Styles */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-matcha-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-matcha-dark) 0%, #6a6a6a 40%, var(--color-silver) 50%, #6a6a6a 60%, var(--color-matcha-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.title-ornament {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-silver), var(--color-pink), var(--color-silver), transparent);
    margin: 0 auto;
    position: relative;
}

.title-ornament::before,
.title-ornament::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-silver);
    box-shadow: 0 0 6px rgba(192, 192, 192, 0.6);
}

.title-ornament::before {
    left: -8px;
}

.title-ornament::after {
    right: -8px;
}

/* Story Section */
.story {
    background-color: var(--color-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 1.5rem;
    background-color: var(--color-off-white);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-silver);
    transform: translate(15px, 15px);
    pointer-events: none;
}

.placeholder-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-light-grey) 0%, var(--color-silver) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-white);
}

.story-text {
    padding: 2rem 0;
}

.story-block {
    margin-bottom: 2.5rem;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.story-block p {
    color: var(--color-grey);
    line-height: 1.8;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background-color: var(--color-charcoal);
    text-align: center;
}

.quote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--color-dark-grey);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.quote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-light-grey);
    margin-top: 2rem;
}

/* Slideshow Section */
.slideshow {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slideshow-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.slideshow-content .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.slideshow-title {
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white) !important;
    background: none !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.slideshow-content .title-ornament {
    background-color: rgba(255, 255, 255, 0.5);
}

.slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.slideshow-dot.active {
    background-color: var(--color-white);
    transform: scale(1.3);
}

/* FAQ Section */
.faq {
    background-color: var(--color-cream);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-matcha-pale);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-matcha-pale);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-matcha-dark);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-pink-dark);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--color-text-light);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Details Section */
.details {
    background-color: var(--color-cream);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.detail-card {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--color-matcha-pale);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(192, 192, 192, 0.25);
    border-color: var(--color-pink);
}

.detail-icon svg {
    filter: drop-shadow(0 0 3px rgba(192, 192, 192, 0.4));
}

.detail-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.detail-icon svg:not(.shimmer-applied) {
    width: 100%;
    height: 100%;
    stroke: var(--color-matcha);
}

.detail-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-matcha-dark);
    margin-bottom: 1rem;
}

.detail-time {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-pink-dark);
    margin-bottom: 0.5rem;
}

.detail-location {
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.detail-address {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    background-color: var(--color-white);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--color-pink);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 76px;
    top: 8px;
    width: 9px;
    height: 9px;
    background-color: var(--color-pink);
    border: 2px solid var(--color-pink-dark);
    border-radius: 50%;
}

.timeline-time {
    flex-shrink: 0;
    width: 60px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-matcha-dark);
    text-align: right;
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-matcha-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text);
    font-size: 0.95rem;
}

/* RSVP Section */
.rsvp {
    background: url('rsvp-bg.png') center / cover no-repeat;
    position: relative;
}

.rsvp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.rsvp .container {
    position: relative;
    z-index: 1;
}

.rsvp .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.rsvp .section-title {
    background: none;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
}

.rsvp .title-ornament {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), rgba(255,255,255,0.6), rgba(255,255,255,0.4), transparent);
}

.rsvp .title-ornament::before,
.rsvp .title-ornament::after {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.rsvp-note {
    max-width: 500px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border: 1px solid var(--color-matcha-light);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-matcha-dark);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    border: 1px solid var(--color-matcha-pale);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-matcha);
    background-color: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-grey);
}

.radio-label input {
    display: none;
}

.radio-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    border: 2px solid var(--color-matcha-pale);
    border-radius: 6px;
    position: relative;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-label input:checked + .radio-custom {
    border-color: var(--color-pink);
    background-color: var(--color-pink);
}

.radio-label input:checked + .radio-custom::after {
    content: '✓';
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.rsvp-form .btn {
    width: 100%;
    margin-top: 1rem;
    background-color: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
    border-radius: 30px;
}

.rsvp-form .btn:hover {
    background-color: var(--color-pink-dark);
    border-color: var(--color-pink-dark);
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.3);
}

/* Trauzeugen Section */
.trauzeugen {
    background-color: var(--color-cream);
    padding: 5rem 0;
}

.trauzeugen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.trauzeugen-card {
    background-color: var(--color-white);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    border: 1px solid var(--color-matcha-light);
}

.trauzeugen-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-matcha-dark);
    margin-bottom: 0.75rem;
}

.trauzeugen-phone {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-matcha-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.trauzeugen-phone:hover {
    color: var(--color-matcha);
}

@media (max-width: 480px) {
    .trauzeugen-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-names {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-heart {
    color: var(--color-pink);
    width: 16px;
    height: 16px;
}

.footer-date {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-matcha-pale);
}

.footer-hashtag {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-pink);
}

/* Geschenke Section */
.geschenke {
    background-color: var(--color-white);
}

.geschenke-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.geschenke-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.geschenke-icon {
    display: flex;
    justify-content: center;
}

.geschenke-icon svg {
    stroke: var(--color-silver);
    transition: var(--transition-smooth);
}

.geschenke-icon:hover svg {
    stroke: var(--color-pink);
}

/* Fotogalerie Section */
.fotogalerie {
    background-color: var(--color-cream);
}

.fotogalerie-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.fotogalerie-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.btn-gallery {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border: 1px solid var(--color-silver);
    color: var(--color-silver);
    cursor: default;
    opacity: 0.6;
    border-radius: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .countdown {
        gap: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 60px;
    }
    
    .timeline-item::before {
        left: 56px;
    }
    
    .timeline-time {
        width: 45px;
        font-size: 1rem;
    }
    
    .rsvp {
        background-image: url('rsvp-bg-mobile.jpg');
    }
    
    .rsvp::after {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .rsvp-form {
        padding: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .btn-large {
        padding: 1.2rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        outline-offset: 4px;
    }
    
    .hero-title .name {
        font-size: 2.5rem;
    }
    
    .hero-title .ampersand {
        font-size: 1.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        width: 45%;
    }
    
    .btn {
        padding: 1rem 2rem;
    }
}
