/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== FONT-FACE DECLARATIONS ===== */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 1000;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/Cormorant/Cormorant-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 300 700;
}

@font-face {
    font-family: 'Baskervville';
    src: url('../fonts/Baskervville/Baskervville-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 400 700;
}

/* Envelove Script font removed - replaced with signature images */

/* ===== CSS VARIABLES ===== */
:root {
    /* New Palette from Designer */
    --primary-color: #837E64;
    --secondary-color: #F9F8F5;
    --text-dark: #5F593D;
    --text-light: #837E64;
    --white: #FFFFFF;
    --light-bg: #F9F8F5;
    --border-color: #837E64;
    
    /* Typography */
    --font-ueberschrift: 'Cormorant', serif;
    --font-fliesstext: 'Nunito Sans', sans-serif;
    --font-zahlen: 'Baskervville', serif;
    /* --font-unterschrift removed - using signature images instead */
    
    /* Old fonts for reference and compatibility */
    --font-primary: 'Cormorant', serif; /* Mapped to Ueberschrift */
    --font-secondary: 'Nunito Sans', sans-serif; /* Mapped to Fliesstext */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;

    /* Header sizing (used to avoid content being hidden under a fixed header) */
    --header-height: 120px;
}
/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-fliesstext);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color); /* Dark background for the whole page */
    font-size: 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ueberschrift);
    font-weight: 400; /* Regular */
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 50px;
}

h1 {
    font-size: 50px;
    font-weight: 400; /* Regular */
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 50px;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 24px;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-radius: 0; /* remove rounded corners so page background doesn't peek through under header */
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.nav-logo .logo {
    height: 100px;
    width: auto;
    border-radius: var(--border-radius);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-family: var(--font-ueberschrift);
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--light-bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== MAIN CONTENT ===== */
.main {
    flex: 1 0 auto;
    margin-top: var(--header-height);
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: url('../images/IMG-20230302-WA0004.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll; /* avoid viewport-fixed background which can create visual offset under fixed header */
    /* keep hero in normal flow — .main provides the offset for the fixed header */
    margin-top: 0;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    min-height: 70vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo-img {
    height: 180px;
    width: auto;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--border-radius-lg);
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-date {
    font-family: var(--font-zahlen);
    font-size: 50px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-timeline {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    width: 220px;
}

.timeline-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 8px solid #FFFFFF;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-item:hover .timeline-image {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.timeline-caption {
    text-align: center;
}

.timeline-status {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.timeline-date-text {
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* ===== LOVE STORY SECTION ===== */
.love-story-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
}

/* Override timeline text colors for the light background of love-story-section */
.love-story-section .section-title {
    color: var(--white);
}
.love-story-section .section-title::after {
    background: var(--white);
}
.love-story-section .timeline-status {
    color: var(--white);
    text-shadow: none;
}

.love-story-section .timeline-date-text {
    color: var(--white);
    text-shadow: none;
}

.love-story-section .timeline-image {
    border: 8px solid #FFFFFF;
}
/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    padding: var(--spacing-xl) 0;
    background: var(--text-dark);
}
.countdown-section .section-title {
    color: var(--white);
}
.countdown-section .section-title::after {
    background: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
    border: 1px solid var(--border-color);
}

.countdown-number {
    font-size: 50px;
    font-weight: 400; /* Regular */
    font-family: var(--font-zahlen);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: var(--spacing-xl) 0;
    background: var(--secondary-color);
}

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

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
}
.schedule-section .section-title {
    color: var(--white);
}
.schedule-section .section-title::after {
    background: var(--white);
}
.schedule-section .schedule-subtitle {
    color: var(--white);
}

.schedule-subtitle {
    text-align: center;
    font-family: var(--font-ueberschrift);
    font-weight: 400;
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    text-align: center;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

.schedule-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: var(--font-primary);
    order: 3;
}

.schedule-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 155px;
    order: 1;
    margin-bottom: var(--spacing-sm);
}

.schedule-icon img {
    max-width: 100%;
    max-height: 155px;
    height: auto;
    object-fit: contain;
}

.schedule-text {
    font-family: var(--font-ueberschrift);
    font-weight: 400;
    color: var(--white);
    font-size: 24px;
    order: 2;
}

/* ===== LOCATION PREVIEW ===== */
.location-preview {
    padding: calc(var(--spacing-xl) + 2rem) 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Removed the ::before pseudo-element for the overlay */

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.location-card p {
    margin-bottom: var(--spacing-md);
}

.location-card .btn {
    min-width: 250px;
    padding: var(--spacing-sm) var(--spacing-lg);
}

/* ===== RSVP SECTION ===== */
.rsvp-section {
    padding: var(--spacing-xl) 0;
    background: var(--text-dark);
}
.rsvp-section .section-title {
    color: var(--white);
}
.rsvp-section .section-title::after {
    background: var(--white);
}
.rsvp-text {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: none; /* Hiding labels as per new design */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

/* ===== ATTENDANCE BUTTONS ===== */
.attendance-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.btn-attendance {
    flex: 1;
    max-width: 200px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-attendance:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-attendance.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* ===== PERSON DETAILS ===== */
.person-details {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--border-color);
}

.person-details h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    width: 100%;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-group label:hover {
    background: var(--secondary-color);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group span {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
}

#persons-details-container {
    margin-top: var(--spacing-md);
}

/* Reduzierte Abstände für Formulargruppen im RSVP */
.rsvp-form .form-group {
    margin-bottom: var(--spacing-sm);
}

.rsvp-form .person-details .form-group {
    margin-bottom: var(--spacing-xs);
}

/* ===== RESPONSIVE FORM ===== */
@media (max-width: 768px) {
    .attendance-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-attendance {
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .person-details {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .person-details h4 {
        font-size: 1rem;
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--secondary-color);
}

.contact-section .section-title:not(:first-child) {
    margin-top: calc(var(--spacing-xl) * 2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-image {
    margin-bottom: var(--spacing-md);
}

.contact-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== REMINDER SECTION ===== */
.reminder-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.reminder-content {
    max-width: 600px;
    margin: 0 auto;
}

.reminder-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.reminder-signature, .signature {
    display: inline-block;
    margin: 0 auto;
}

.signature img {
    height: 64px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.reminder-section .signature img {
    height: 109px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  width: 100%;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-align: center;
  padding: var(--spacing-md) 0;
  box-shadow: var(--shadow-sm);
}

.footer p {
    color: var(--text-dark);
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-img {
        height: 150px;
    }

    .hero-timeline {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .timeline-item {
        min-width: 180px;
    }

    .countdown {
        gap: var(--spacing-sm);
    }

    .countdown-item {
        min-width: 100px;
        padding: var(--spacing-sm);
    }

    .countdown-number {
        font-size: 2rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }

    .schedule-item {
        padding: var(--spacing-md);
    }

    .schedule-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .schedule-text {
        font-size: 1rem;
    }

    .schedule-time {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-img {
        width: 110px;
        height: 110px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-logo-img {
        height: 140px;
    }

    .countdown-item {
        min-width: 80px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .timeline-item {
        min-width: 120px;
        padding: var(--spacing-md);
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .schedule-item {
        padding: var(--spacing-sm);
    }

    .schedule-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-img {
        width: 100px;
        height: 100px;
    }

    .contact-card {
        padding: var(--spacing-md);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===== PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    margin-top: 80px;
}

.page-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HOTEL SECTION ===== */
.hotel-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.hotel-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

.hotel-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.hotel-name {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.hotel-rating {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.hotel-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.hotel-info h3 i {
    color: var(--primary-color);
}

.hotel-address,
.hotel-contact {
    margin-bottom: var(--spacing-md);
}

.hotel-contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

.hotel-contact a:hover {
    color: var(--primary-color);
}

.hotel-image {
    text-align: center;
}

.hotel-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.pricing-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.price {
    margin-bottom: var(--spacing-md);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.price-period {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.pricing-features i {
    color: var(--primary-color);
    width: 16px;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.booking-icon {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.booking-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.booking-methods {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.booking-methods .btn {
    flex: 1;
    min-width: 150px;
}

.booking-tips {
    list-style: none;
}

.booking-tips li {
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.booking-tips i {
    color: var(--primary-color);
    margin-top: 2px;
    width: 16px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== ALTERNATIVES SECTION ===== */
.alternatives-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.alternatives-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.alternative-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.alternative-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.alternative-card p {
    margin-bottom: var(--spacing-md);
}

/* ===== GALLERY STYLES ===== */
.gallery-filter-section {
    padding: var(--spacing-md) 0;
    background: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid #837E64; /* Grün Hell */
    background: var(--white);
    color: #837E64; /* Grün Hell */
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: #837E64; /* Grün Hell */
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: #5F593D; /* Grün Dunkel */
    color: var(--white);
    border-color: #5F593D; /* Grün Dunkel */
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.gallery-info h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-btn {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--border-radius-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
}

.gallery-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.2rem;
    font-weight: 500;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

/* ===== UPLOAD SECTION ===== */
.upload-section {
    padding: var(--spacing-xl) 0;
    background: #837E64; /* Grün Hell aus Styleguide */
}

.upload-section .section-title {
    color: var(--white);
}

.upload-section .section-title::after {
    background: var(--white);
}

.upload-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.upload-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.qr-placeholder {
    background: var(--white);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.qr-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.qr-placeholder p {
    color: var(--text-dark);
    margin: 0;
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .filter-buttons {
        gap: var(--spacing-xs);
    }
    
    .filter-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.2rem;
        padding: var(--spacing-sm);
    }
    
    .lightbox-prev {
        margin-left: -40px;
    }
    
    .lightbox-next {
        margin-right: -40px;
    }
    
    #lightbox-img {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-img {
        height: 250px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        min-width: 120px;
    }
    
    .lightbox-nav {
        position: static;
        transform: none;
        margin-top: var(--spacing-md);
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .lightbox-prev,
    .lightbox-next {
        margin: 0;
        position: static;
    }
}

/* ===== GAMES STYLES ===== */
.games-intro {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

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

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.games-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.game-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.game-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

/* ===== QUIZ STYLES ===== */
.quiz-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.quiz-progress {
    margin-bottom: var(--spacing-lg);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    width: 0%;
    border-radius: var(--border-radius);
}

.progress-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.question-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.question-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
}

.quiz-options {
    display: grid;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.quiz-option {
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background: var(--light-bg);
}

.quiz-option.correct {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.quiz-option.incorrect {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.quiz-option:disabled {
    cursor: not-allowed;
}

.quiz-next {
    margin-top: var(--spacing-md);
}

.quiz-result {
    text-align: center;
    background: var(--light-bg);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.result-score {
    margin: var(--spacing-lg) 0;
}

.score-text {
    display: block;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

/* ===== MEMORY MODE SELECTION ===== */
.memory-mode-selection {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.mode-selection-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.mode-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.mode-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mode-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.mode-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.mode-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.mode-controls {
    display: flex;
    justify-content: center;
}

/* ===== MEMORY GAME STYLES ===== */
.memory-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.memory-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.memory-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--spacing-lg);
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.stat-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.memory-card {
    aspect-ratio: 1;
    cursor: pointer;
    perspective: 1000px;
}

.memory-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.memory-card.flipped .memory-card-inner,
.memory-card.matched .memory-card-inner {
    transform: rotateY(180deg);
}

.memory-card-front,
.memory-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    font-weight: 600;
}

.memory-card-front {
    background: var(--primary-color);
    color: var(--white);
}

.memory-card-back {
    background: var(--white);
    border: 2px solid var(--primary-color);
    transform: rotateY(180deg);
    font-size: 2rem;
}

.memory-card.matched .memory-card-back {
    background: var(--light-bg);
    border-color: var(--primary-color);
}

.memory-controls {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* ===== WISHES STYLES ===== */
.wishes-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.wishes-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.wishes-form {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.wishes-display {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.wishes-list {
    max-height: 400px;
    overflow-y: auto;
}

.wish-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
}

.wish-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.wish-icon {
    font-size: 1.2rem;
}

.wish-author {
    font-weight: 600;
    color: var(--primary-color);
}

.wish-date {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-light);
}

.wish-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== CHALLENGES STYLES ===== */
.challenges-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.challenges-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.challenge-card {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.challenge-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.challenge-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.challenge-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.challenge-difficulty {
    position: absolute;
    top: var(--spacing-xs);
    right: var(--spacing-xs);
    padding: 2px 8px;
    border-radius: var(--border-radius-lg);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.challenge-difficulty.easy {
    background: #d4edda;
    color: #155724;
}

.challenge-difficulty.medium {
    background: #fff3cd;
    color: #856404;
}

.challenge-difficulty.hard {
    background: #f8d7da;
    color: #721c24;
}

.challenges-info {
    text-align: center;
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ===== RESPONSIVE GAMES ===== */
@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xs);
    }
    
    .memory-card-front,
    .memory-card-back {
        font-size: 1.2rem;
    }
    
    .memory-card-back {
        font-size: 1.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .quiz-container,
    .memory-container,
    .wishes-container,
    .challenges-container {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .memory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .memory-stats {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-controls,
    .quiz-result .btn {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* ===== LOCATION STYLES ===== */
/* Parallax Hero Section */
.parallax-hero {
    height: 100vh;
    background-image: url('../images/schloss-hohenkammer.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.parallax-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.parallax-hero .hero-title {
    font-family: var(--font-ueberschrift);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.parallax-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.location-info-section {
    padding: var(--spacing-md) 0;
    text-align: center;
    background: var(--light-bg);
}

.location-info-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.location-info-section .location-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.location-address {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    color: var(--text-light);
}

.location-address i {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}

.location-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Directions Section */
.directions-section {
    padding: var(--spacing-xl) 0;
    padding-bottom: 0;
    background: var(--white);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.directions-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directions-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.directions-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.directions-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.directions-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    text-align: left;
    width: 100%;
}

.directions-list li {
    padding: var(--spacing-xs) 0;
    line-height: 1.6;
    color: var(--text-dark);
}

.directions-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.directions-card .btn {
    margin-top: auto;
}

.map-container-full {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-hero {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.location-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.location-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.location-intro .location-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Travel Section */
.travel-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.travel-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.travel-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.travel-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.travel-card p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Accommodation Section */
.accommodation-section {
    padding: var(--spacing-xl) 0;
    background: #5F593D;
}

.important-info {
    margin-bottom: var(--spacing-xl);
}

.info-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.info-card.highlight {
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: var(--spacing-xs) 0;
    line-height: 1.6;
    list-style-position: inside;
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.info-list li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}

.location-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.location-hero-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.location-hero-image {
    text-align: center;
}

.location-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.location-details {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.detail-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.detail-card p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.detail-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.detail-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== MAP STYLES ===== */
.map-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.map-container {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.map-info {
    padding: var(--spacing-lg);
    background: var(--white);
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

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

.map-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
}

.map-info-item strong {
    color: var(--primary-color);
}

/* ===== VENUE FEATURES ===== */
.venue-features {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-img {
    transform: scale(1.1);
}

.feature-content {
    padding: var(--spacing-md);
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

/* ===== DIRECTIONS MODAL ===== */
.directions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.directions-modal.active {
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.directions-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-body {
    padding: var(--spacing-lg);
}

.directions-section {
    margin-bottom: var(--spacing-lg);
}

.directions-section:last-child {
    margin-bottom: 0;
}

.directions-section h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.directions-section h4 i {
    color: var(--primary-color);
}

.directions-section ol {
    padding-left: var(--spacing-md);
}

.directions-section li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

/* ===== WEATHER WIDGET ===== */
.weather-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-md);
}

.weather-icon {
    font-size: 2rem;
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.weather-condition {
    font-weight: 500;
}

.weather-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== RESPONSIVE LOCATION ===== */
@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .location-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .location-hero-image {
        order: -1;
    }
    
    .location-img {
        height: 300px;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: var(--spacing-sm);
    }
    
    .modal-header,
    .modal-body {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    .detail-card {
        padding: var(--spacing-md);
    }
    
    .feature-image {
        height: 150px;
    }
    
    .weather-card {
        flex-direction: column;
        text-align: center;
    }
    
    .directions-section ol {
        padding-left: var(--spacing-sm);
    }
}

/* ===== GIFTS STYLES ===== */
.gift-message {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.message-icon {
    font-size: 3rem;
    color: var(--rose-color);
    margin-bottom: var(--spacing-md);
}

.message-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.gift-options {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.gift-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gift-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

.gift-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.gift-badge {
    position: absolute;
    top: -10px;
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.gift-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.gift-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.gift-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.gift-details {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-md);
    text-align: left;
}

.gift-details h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs);
    background: var(--white);
    border-radius: var(--border-radius);
}

.bank-detail .label {
    font-weight: 500;
    color: var(--text-dark);
    min-width: 120px;
}

.bank-detail .value {
    font-family: monospace;
    color: var(--primary-color);
    font-weight: 600;
    flex: 1;
    margin-right: var(--spacing-xs);
}

.copy-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xs);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}

.copy-btn:hover {
    background: var(--text-dark);
    transform: scale(1.1);
}

.gift-links {
    margin-top: var(--spacing-md);
}

.link-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
    font-style: italic;
}

/* ===== GIFT TRACKER ===== */
.gift-tracker {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.tracker-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.tracker-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gift-form-section {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.gift-form-section h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.gift-form-section > p {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.surprise-info {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--rose-color);
    box-shadow: var(--shadow-sm);
}

.surprise-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.surprise-info h4:before {
    content: '💝';
    font-size: 1.2rem;
}

.surprise-info p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.surprise-info p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

.gift-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.gift-progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius);
}

.gift-type-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.gift-type-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.gift-type-count {
    font-weight: 600;
    color: var(--primary-color);
}

.gift-type-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== THANK YOU SECTION ===== */
.thank-you-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.thank-you-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.thank-you-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

/* Signature styling moved to image-based approach above */

/* ===== GIFT IDEAS ===== */
.gift-ideas {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.ideas-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.idea-category {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.idea-category h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.idea-category h4 i {
    color: var(--primary-color);
}

.idea-category ul {
    list-style: none;
    padding: 0;
}

.idea-category li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.idea-category li:last-child {
    border-bottom: none;
}

.idea-category li:before {
    content: '•';
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
}

/* ===== RESPONSIVE GIFTS ===== */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-card.featured {
        transform: none;
    }
    
    .gift-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .bank-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .bank-detail .label {
        min-width: auto;
    }
    
    .bank-detail .value {
        margin-right: 0;
        word-break: break-all;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tracker-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-progress {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gift-card {
        padding: var(--spacing-md);
    }
    
    .gift-details {
        padding: var(--spacing-sm);
    }
    
    .bank-detail {
        padding: var(--spacing-xs);
    }
    
    .gift-form-section {
        padding: var(--spacing-md);
    }
    
    .gift-progress {
        grid-template-columns: 1fr;
    }
    
    .gift-type-item {
        justify-content: center;
    }
}




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

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}







.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: var(--spacing-lg);
    text-align: center;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.category-header h3 {
    color: var(--white);
    margin: 0;
}















.file-info {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}








/* ===== DOWNLOAD ALL SECTION ===== */












/* ===== HELP SECTION ===== */


.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.help-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.help-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.help-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.help-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== DOWNLOAD PROGRESS ===== */




.progress-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.progress-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.progress-text {
    color: var(--text-dark);
    font-weight: 500;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-top: var(--spacing-xs);
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    width: 0%;
}

/* ===== DOWNLOAD STATS ===== */


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DOWNLOADS ===== */
@media (max-width: 768px) {
    
    
    
    
    
    
    
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    
    
    
    
    
    
    .progress-content {
        flex-direction: column;
        text-align: center;
    }
    
    .progress-bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    
    
    
    
    
    
    
    
    
    
    
    
    
    .help-card {
        padding: var(--spacing-md);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== DOWNLOAD ANIMATIONS ===== */
@keyframes downloadPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}



@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.progress-fill.animating {
    animation: progressFill 2s ease-in-out;
}

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.faq-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.faq-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-lg);
    max-width: 800px;
}

.faq-hero-title {
    font-family: var(--font-ueberschrift);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Responsive FAQ Hero */
@media (max-width: 768px) {
    .faq-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .faq-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .faq-hero-title {
        font-size: 2rem;
    }
}

/* ===== FAQ STYLES ===== */
.faq-search {
    padding: var(--spacing-lg) 0;
    background: #837E64; /* Grün Hell */
}

.faq-search .section-title {
    color: var(--white);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: var(--spacing-md);
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.faq-categories {
    padding: var(--spacing-md) 0;
    background: var(--light-bg);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.faq-content {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.faq-item {
    margin-bottom: var(--spacing-md);
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer > * {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.faq-answer ul {
    color: var(--text-dark);
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.faq-answer li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.faq-answer .btn {
    margin-top: var(--spacing-sm);
}

/* ===== SEARCH HIGHLIGHTS ===== */
mark {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0 2px;
    border-radius: 2px;
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-lg);
}

.no-results-content i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.no-results-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.no-results-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* ===== FAQ CONTACT ===== */
.faq-contact {
    padding: var(--spacing-xl) 0;
    background: #5F593D; /* Grün Dunkel */
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    text-align: center;
}

.contact-card h3 {
    color: #837E64; /* Grün Hell */
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: #837E64; /* Grün Hell */
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-beige {
    background: var(--secondary-color); /* Beige */
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.btn-beige:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== QUICK LINKS ===== */
.quick-links {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.quick-link {
    display: block;
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--secondary-color);
}

.link-icon {
    width: auto;
    height: 155px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon img {
    max-width: 100%;
    max-height: 155px;
    height: auto;
    object-fit: contain;
}

.quick-link h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.quick-link p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.8rem;
}

/* ===== FAQ ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

/* ===== RESPONSIVE FAQ ===== */
@media (max-width: 768px) {
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        min-width: 150px;
    }
    
    .faq-question {
        padding: var(--spacing-md);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question i {
        align-self: flex-end;
        margin-left: 0;
    }
    
    .faq-answer > * {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        min-width: 200px;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-box input {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 2.5rem;
    }
    
    .search-box i {
        left: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: var(--spacing-sm);
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer > * {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
    }
    
    .contact-card {
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-sm);
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        padding: 0 var(--spacing-sm);
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ===== FAQ ACCESSIBILITY ===== */
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== CUSTOM FAQ OVERRIDES 2025-11-24 ===== */
.faq-question h3 {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-size: 25px;
    text-align: left;
    color: var(--primary-color);
}

.faq-answer p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: var(--text-dark);
}

.faq-contact .contact-card {
    background: transparent !important;
    box-shadow: none !important;
}

.faq-contact .contact-card h3 {
    color: var(--secondary-color) !important;
    font-family: 'Cormorant', serif;
    font-weight: 400;
}

.faq-contact .contact-card p {
    color: var(--secondary-color) !important;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

.faq-contact .btn-beige {
    background: var(--secondary-color) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--secondary-color) !important;
    font-weight: 500;
}

.faq-contact .btn-beige:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--white) !important;
}

.faq-question[aria-expanded="true"] {
    background: var(--secondary-color);
}

@media (prefers-reduced-motion: reduce) {
    .faq-item {
        animation: none;
    }
    
    .faq-answer {
        transition: none;
    }
    
    .faq-question i {
        transition: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .faq-search,
    .faq-categories,
    .faq-contact,
    .quick-links {
        display: none;
    }
    
    .faq-item {
        break-inside: avoid;
        margin-bottom: var(--spacing-sm);
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .faq-question i {
        display: none;
    }
}