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

html, body {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

.hero {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #000000;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #ff00d9;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #666666;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: color 0.3s ease;
    animation: fadeInOut 3s infinite;
}

.scroll-hint:hover {
    color: #000000;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.video-section {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.video-wrapper {
    display: none;
}

.fullscreen-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;    /* âœ… NEU: Zentriert auf obere 40% */
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-section {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.info-wrapper {
    max-width: 1200px;
    width: 100%;
}

.info-header {
    margin-bottom: clamp(2rem, 6vw, 4rem);
    text-align: center;
}

.info-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.info-intro {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #999999;
    letter-spacing: 0.05em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.info-item h3 {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.info-item p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #000000;
    line-height: 1.6;
    font-weight: 300;
}

.about-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrapper {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
}

.about-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 1.5rem;
}

.about-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ff00d9 50%, transparent 100%);
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.about-content p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.85;
    color: #333333;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-content p:first-child {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
}

.about-cta {
    margin-top: clamp(1rem, 2vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-left: 3px solid #ff00d9;
    padding-left: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: #000000;
    background: rgba(0, 255, 0, 0.03);
}

.faq-section {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom: 3px dashed rgba(0, 255, 0, 0.2);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.faq-wrapper {
    max-width: 900px;
    width: 100%;
}

.faq-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.faq-item {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.faq-question {
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    text-align: left;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: #ff00d9;
}

.faq-icon {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #ff00d9;
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666666;
    line-height: 1.8;
    margin-top: 1rem;
}

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

.form-section {
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff00d9 50%, transparent 100%);
}

.form-wrapper {
    max-width: 500px;
    width: 100%;
    padding-bottom: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.form-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #999999;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.form-label {
    display: block;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: #cccccc;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 2px solid #333333;
    background: transparent;
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-bottom-color: #ff00d9;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #555555;
}

.form-error {
    font-size: clamp(0.75rem, 1.5vw, 0.8rem);
    color: #ff4444;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.guest-count-group {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.guest-count-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.7rem, 2vw, 1rem);
    margin-top: 0.8rem;
}

.guest-count-btn {
    padding: clamp(0.7rem, 2vw, 0.9rem);
    border: 2px solid #333333;
    background: transparent;
    color: #cccccc;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.guest-count-btn:hover {
    border-color: #ff00d9;
    color: #ff00d9;
}

.guest-count-btn.active {
    background: #ff00d9;
    border-color: #ff00d9;
    color: #000000;
}

.guest-name-group {
    display: none;
}

.guest-name-group.show {
    display: block;
}

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

.form-button {
    width: 100%;
    padding: clamp(0.9rem, 2vw, 1.2rem);
    background-color: #ff00d9;
    color: #000000;
    border: none;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: #00dd00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.form-button:active {
    transform: scale(0.98);
}

/* ===== FORM SELECT DROPDOWN ===== */
.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23ffffff' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px 8px;
    padding-right: 20px;
}

.form-select:focus {
    outline: none;
    border-bottom-color: #ff00d9;
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
    margin: 0.3rem 0;
    max-height: 150px;
}

/* ===== GUEST NAME MODAL ===== */
.guest-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.guest-modal.active {
    display: flex;
}

.guest-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 15px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 112, 186, 0.3);
    border: 2px solid #0070ba;
    animation: slideIn 0.3s ease;
    position: relative;
}

.guest-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.guest-modal-close:hover {
    color: #0070ba;
    transform: scale(1.2);
}

.guest-modal-header h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.guest-modal-input-group {
    margin-top: 1rem;
}

.guest-modal-input {
    width: 100%;
    padding: clamp(0.9rem, 2vw, 1rem);
    border: 2px solid #0070ba;
    background: transparent;
    color: #ffffff;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    text-align: center;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.guest-modal-input:focus {
    outline: none;
    border-color: #ff00d9;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.guest-modal-input::placeholder {
    color: #555555;
}

.guest-modal-btn {
    display: block;
    width: 100%;
    padding: clamp(0.8rem, 2vw, 0.9rem);
    border: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.6rem;
}

.guest-modal-btn.primary {
    background-color: #0070ba;
    color: #ffffff;
}

.guest-modal-btn.primary:hover {
    background-color: #005ea6;
    box-shadow: 0 0 20px rgba(0, 112, 186, 0.6);
}

.guest-modal-btn.secondary {
    background: transparent;
    color: #cccccc;
    border: 1px solid #444444;
}

.guest-modal-btn.secondary:hover {
    border-color: #0070ba;
    color: #0070ba;
}

/* ===== PAYMENT INFO ===== */
.payment-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
    text-align: center;
}

.payment-text {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #cccccc;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.payment-instruction {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #0070ba;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ===== PAYMENT MODAL ===== */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.payment-modal.active {
    display: flex;
}

.payment-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 15px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 112, 186, 0.3);
    border: 2px solid #0070ba;
    animation: slideIn 0.3s ease;
    position: relative;
}

.payment-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.payment-modal-close:hover {
    color: #0070ba;
    transform: scale(1.2);
}

.payment-modal-header h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.payment-details {
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(0, 112, 186, 0.1);
    border-radius: 8px;
    border: 1px solid #0070ba;
}

.payment-details p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #cccccc;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.payment-details p span {
    color: #0070ba;
    font-weight: 600;
    font-size: 1.2em;
}

.payment-description {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem) !important;
    color: #999999 !important;
}

.payment-modal-btn {
    display: block;
    width: 100%;
    padding: clamp(0.9rem, 2vw, 1rem);
    border: none;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
    text-decoration: none;
    text-align: center;
}

.payment-modal-btn.primary {
    background-color: #0070ba;
    color: #ffffff;
}

.payment-modal-btn.primary:hover {
    background-color: #005ea6;
    box-shadow: 0 0 20px rgba(0, 112, 186, 0.6);
    transform: scale(1.02);
}

.payment-modal-btn.secondary {
    background: transparent;
    color: #cccccc;
    border: 1px solid #444444;
}

.payment-modal-btn.secondary:hover {
    border-color: #0070ba;
    color: #0070ba;
}

.confirmation-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.confirmation-wrapper {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.confirmation-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.confirmation-icon {
    font-size: clamp(3rem, 8vw, 4rem);
    color: #ff00d9;
    margin-bottom: 1rem;
    display: inline-block;
    animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-header h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.confirmation-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #999999;
    letter-spacing: 0.05em;
}

.confirmation-message {
    background-color: #f5f5f5;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 2px;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.confirmation-message p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666666;
    line-height: 1.8;
}

.confirmation-details {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    gap: 1rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 500;
    flex-shrink: 0;
}

.detail-value {
    color: #000000;
    font-weight: 400;
    text-align: right;
    word-break: break-word;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.confirmation-btn {
    padding: clamp(0.9rem, 2vw, 1rem);
    border: 1px solid #e0e0e0;
    background: transparent;
    color: #000000;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.confirmation-btn:hover {
    border-color: #ff00d9;
    color: #ff00d9;
}

.confirmation-btn.primary {
    background: #ff00d9;
    border-color: #ff00d9;
    color: #000000;
}

.confirmation-btn.primary:hover {
    background-color: #ff00d9;
}

.confirmation-btn.secondary {
    border-color: #e0e0e0;
}

/* ===== OFFICIAL PAYPAL BUTTON ===== */
.paypal-official-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: clamp(0.9rem, 2vw, 1rem);
    background: linear-gradient(135deg, #003087 0%, #009cde 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

.paypal-official-btn:hover {
    background: linear-gradient(135deg, #002358 0%, #0078b6 100%);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.5);
    transform: translateY(-2px);
}

.paypal-official-btn:active {
    transform: translateY(0);
}

.paypal-logo-img {
    height: clamp(1.2rem, 2vw, 1.5rem);
    width: auto;
    max-height: 20px;
}

/* ===== SHARE MODAL ===== */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.share-modal.active {
    display: flex;
}

.share-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 15px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.2);
    border: 2px solid #ff00d9;
    animation: slideIn 0.3s ease;
}

.share-modal-header h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 1rem;
}

.share-modal-message {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #333333;
    line-height: 1.6;
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    font-weight: 300;
    font-style: italic;
}

.share-modal-btn {
    background: #ff00d9;
    color: #000000;
    border: none;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.share-modal-btn:hover {
    background: #00dd00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}

.share-modal-btn:active {
    transform: scale(0.95);
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .guest-count-buttons {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        word-spacing: 9999px;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-content p {
        text-align: left;
    }

    .about-cta {
        border-left: 3px solid #ff00d9;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        gap: 0.5rem;
    }

    .share-modal-content {
        border-radius: 10px;
        padding: 1.5rem;
    }

    .form-wrapper {
        padding-bottom: 3rem;
    }

    .payment-info {
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }

/* KOMPLETT ERSETZEN in style.css */
.valentines-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
}

.heart-container {
    position: relative;
    width: 120px;
    height: 110px;
    animation: heartbeat 1.5s ease-in-out infinite;
    cursor: pointer;
    filter: drop-shadow(0 4px 15px rgba(255, 107, 157, 0.4));
    display: flex;                      /* âœ… NEU: Flexbox */
    align-items: center;                /* âœ… NEU: Vertikal zentriert */
    justify-content: center;            /* âœ… NEU: Horizontal zentriert */
}

.heart-container::before,
.heart-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 95px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    border-radius: 60px 60px 0 0;
    z-index: 1;                         /* âœ… NEU: Herz im Hintergrund */
}

.heart-container::before {
    left: 60px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart-container::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* KOMPLETT ERSETZEN - .valentines-badge-text */
.valentines-badge-text {
    position: relative;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    padding-bottom: 18px;          /* âœ… PADDING statt MARGIN */
    padding-left: 2px;          /* âœ… NEU: Leicht nach rechts */
}

.valentines-badge svg {
    display: none;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.12); }
    20%, 40% { transform: scale(1.05); }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* iPad Pro 12.9" */
@media (max-width: 1024px) and (min-width: 769px) {
    .valentines-badge {
        top: 25px;
        right: 25px;
    }
    
    .heart-container {
        width: 110px;
        height: 100px;
    }
    
    .heart-container::before,
    .heart-container::after {
        width: 55px;
        height: 88px;
    }
    
    .heart-container::before {
        left: 55px;
    }
    
    .valentines-badge-text {
        font-size: 10.5px;
        margin-top: 7px;
    }
}

/* iPad & kleinere Tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .valentines-badge {
        top: 20px;
        right: 20px;
    }
    
    .heart-container {
        width: 100px;
        height: 92px;
    }
    
    .heart-container::before,
    .heart-container::after {
        width: 50px;
        height: 80px;
    }
    
    .heart-container::before {
        left: 50px;
    }
    
    .valentines-badge-text {
        font-size: 10px;
        margin-top: 6px;
    }
}

/* iPhone 14 Pro Max, 15 Pro Max */
@media (max-width: 480px) and (min-width: 415px) {
    .valentines-badge {
        top: 18px;
        right: 18px;
    }
    
    .heart-container {
        width: 85px;
        height: 78px;
    }
    
    .heart-container::before,
    .heart-container::after {
        width: 42.5px;
        height: 68px;
    }
    
    .heart-container::before {
        left: 42.5px;
    }
    
    .valentines-badge-text {
        font-size: 9px;
        margin-top: 5px;
        letter-spacing: 0.5px;
    }
}

/* iPhone 14 Pro, 15 Pro, 13, 12 */
@media (max-width: 414px) and (min-width: 376px) {
    .valentines-badge {
        top: 16px;
        right: 16px;
    }
    
    .heart-container {
        width: 80px;
        height: 74px;
    }
    
    .heart-container::before,
    .heart-container::after {
        width: 40px;
        height: 64px;
    }
    
    .heart-container::before {
        left: 40px;
    }
    
    .valentines-badge-text {
        font-size: 8.5px;
        margin-top: 5px;
        letter-spacing: 0.4px;
    }
}

/* iPhone SE (3rd gen), 13 mini, 12 mini */
@media (max-width: 375px) and (min-width: 361px) {
    .valentines-badge {
        top: 15px;
        right: 15px;
    }
    
    .heart-container {
        width: 75px;
        height: 69px;
    }
    
    .heart-container::before,
    .heart-container::after {
        width: 37.5px;
        height: 60px;
    }
    
    .heart-container::before {
        left: 37.5px;
    }
    
    .valentines-badge-text {
        font-size: 8px;
        margin-top: 4px;
        letter-spacing: 0.3px;
        line-height: 1.4;
    }
}

/* iPhone SE (2nd gen), sehr kleine Phones */
@media (max-width: 360px) {
    .valentines-badge {
        top: 12px;
        right: 12px;
    }
    
    .heart-container {
        width: 70px;
        height: 64px;
    }
    
    .heart-container::before,
    .heart-container::after {
        width: 35px;
        height: 56px;
    }
    
    .heart-container::before {
        left: 35px;
    }
    
    .valentines-badge-text {
        font-size: 7.5px;
        margin-top: 4px;
        letter-spacing: 0.2px;
        line-height: 1.4;
    }
}

/* Hover nur auf Desktop */
@media (hover: hover) {
    .heart-container:hover {
        animation: heartbeat-fast 0.6s ease-in-out infinite;
    }
}

@keyframes heartbeat-fast {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Mobile GerÃ¤te (Portrait) - iPhones, kleine Android */
@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem;
        min-height: 100svh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        margin-bottom: 1.5rem;
    }

    .countdown-timer {
        margin-bottom: 1.5rem;
    }

    .info-section,
    .about-section {
        padding: 2rem 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .scroll-hint {
        bottom: 15px;
        font-size: 0.65rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guest-modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
    }
}

/* Smartphones Landscape & kleine Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem;
    }

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

    .hero-content {
        max-width: 700px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 2.5rem 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop & groÃŸe Bildschirme */
@media (min-width: 1025px) {
    .hero {
        padding: 3rem;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sehr groÃŸe Bildschirme */
@media (min-width: 1440px) {
    .hero-content {
        max-width: 1000px;
    }

    .info-wrapper,
    .about-wrapper {
        max-width: 1400px;
    }
}

/* Touch-optimierte GerÃ¤te (Mobile & Tablets) */
@media (hover: none) and (pointer: coarse) {
    .scroll-hint,
    .faq-question,
    .guest-modal-close,
    button {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }

    .scroll-hint:hover {
        color: #999999;
    }
}

/* iOS Safari spezifisch - verhindert Adressleisten-Probleme */
@supports (-webkit-touch-callout: none) {
    .hero,
    .video-section,
    .info-section,
    .about-section {
        min-height: -webkit-fill-available;
    }

    html {
        height: -webkit-fill-available;
    }
}

/* Reduced Motion fÃ¼r Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-snap-type: none;
    }
}

/* High DPI Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .fullscreen-media {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Landscape Orientierung auf Smartphones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .countdown-timer {
        font-size: clamp(1rem, 3vw, 2rem);
    }

    .scroll-hint {
        display: none;
    }
}

/* Print Styles */
@media print {
    .video-section,
    .scroll-hint,
    .guest-modal {
        display: none !important;
    }

    .hero,
    .info-section,
    .about-section {
        page-break-inside: avoid;
        border: none;
    }
}