/* Fonts */
@font-face {
    font-family: 'Great Vibes';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/GreatVibes.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 600;
    src: url('./fonts/Outfit.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 600;
    src: url('./fonts/PlayfairDisplay.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    src: url('./fonts/PlayfairDisplay-Italic.woff2') format('woff2');
    font-display: swap;
}

:root {
    /* Flyer Palette */
    --primary-color: #8E405A;
    /* Dusty Rose/Mauve from flyer text */
    --primary-light: #B26B83;
    --accent-color: #C5A059;
    /* Gold */
    --gold-gradient: linear-gradient(45deg, #C5A059 0%, #E6C888 50%, #C5A059 100%);

    --bg-body: #ffffff;
    --bg-soft: #FFF0F5;
    /* Very light pink */
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #fff0f5 100%);

    --text-color: #5D4D54;
    /* Warm dark grey/brown */
    --text-pink: #E08FA8;
    /* Bright pink for date */

    --white: #ffffff;

    --font-script: 'Great Vibes', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-soft: 0 10px 30px rgba(186, 137, 149, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-body);
    font-size: 18px;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    color: var(--primary-light);
    line-height: 1.3;
}

h2 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-light);
}

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

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

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

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at top left, #fff0f5 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff0f5 0%, transparent 40%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 192, 203, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.hero-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Königlich full width */
.hero-theme-img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

/* Text section - overlayed at bottom of SVG, right aligned */
.hero-text-section {
    position: absolute;
    bottom: 180px;
    right: 0;
    left: 0;
    max-width: 700px;
    margin: 0 auto;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.hero-text-line-1 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.hero-text-line-2 {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.event-date {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-pink);
    font-weight: 600;
}

.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-diamond {
    margin-top: 1rem;
    width: 180px;
    height: auto;
}

.hero-logo {
    width: 160px;
    height: auto;
    margin-top: -20px;
}


.info-text-flow p {
    /* text-align: justify; */
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.location-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 240, 245, 0.8);
    margin: 1.5rem 0;
    text-align: center;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-inline {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 1.05rem;
    margin-left: 0.5rem;
}

.map-link {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-light);
    transition: var(--transition);
}

.map-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.text-block p,
.info-block p {
    text-align: justify;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}


/* Cards (Bento/Modern) */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.goal-card,
.info-block,
.day-schedule {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 240, 245, 0.8);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 2rem;
}

.day-schedule {
    margin-bottom: 3rem;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(186, 137, 149, 0.15);
}

.goal-card h3 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Form */
/* Section Spacing */
.section {
    padding: 6rem 0;
    position: relative;
}

.bg-soft {
    background: var(--bg-soft);
}

/* Form */
form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    margin-bottom: 2rem;
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1.1rem;
    background: #fafafa;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--text-pink);
    background: white;
}

/* Toggle */
.theme-toggle {
    display: none;
    /* Hide for now as we have a specific design target */
}

/* Schedule */
.schedule-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.schedule-list li {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    align-items: baseline;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .time {
    color: var(--text-pink);
    font-weight: 700;
    text-align: right;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(to right, #fff0f5, #fff);
    color: var(--text-color);
    padding: 4rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer a {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-light);
}

.impressum h3 {
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* Mobile */
@media (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    h2 {
        margin: 2rem 0 1rem;
        font-size: 1.8rem;
    }

    .location-box,
    .goal-card,
    .info-block,
    .day-schedule,
    form {
        padding: 1.5rem !important;
    }

    .hero {
        padding: 0;
        padding-top: 6rem;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .hero-theme-img {
        width: 100%;
        max-width: 100vw;
        height: auto;
        margin: 0;
    }

    .hero-logo-section {
        padding: 2rem 1rem;
        gap: 0.5rem;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-diamond {
        width: 130px;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .event-date {
        font-size: 2rem !important;
    }

    .schedule-list li {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 0.2rem;
    }

    .schedule-list .time {
        text-align: left;
        margin-bottom: 0.25rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.close-modal {
    float: right;
    font-size: 2rem;
    margin: 1rem;
    cursor: pointer;
}


/* Button */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #BB6B86 0%, #8E405A 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(142, 64, 90, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 64, 90, 0.4);
    background: linear-gradient(135deg, #C77D96 0%, #A04A67 100%);
}

.btn-primary {
    width: 100%;
}

/* Speaker Section - Design C: Minimal circles */
.circle-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.circle-speaker {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.circle-img-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    padding: 8px;
    border: 2px solid var(--primary-light);
    position: relative;
}

.circle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.minimal-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--bg-soft);
    display: inline-block;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .circle-grid {
        gap: 3rem;
    }
}