/* ========================================
   FlexBridge Landing Page Styles
   ======================================== */

/* CSS Variables - Brand Colors */
:root {
    /* Farben (NIEMALS abweichen!) */
    --fb-green: #A8CC70;
    --fb-pink: #E968A2;
    --fb-orange: #FAC685;
    --fb-blue: #6BC5D7;
    --fb-gray-dark: #696A69;
    --fb-gray-medium: #868686;
    --fb-white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'neulis-sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'neulis-neue', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.1rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

body {
    font-family: var(--font-primary);
    color: var(--fb-gray-medium);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Classes */
.text-h1 {
    font-family: var(--font-primary);
   /* font-size: clamp(1.5rem, 3vw, 3rem);*/
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fb-gray-medium);
}

.text-body {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--fb-gray-medium);
    line-height: 1.6;
}

.text-small {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--fb-gray-medium);
}

/* Landing Page Layout */
.landing-page {
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    position: relative;
}

/* Logo Section */
.logo-container {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    z-index: 10;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: var(--spacing-xs);
}

.tagline {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--fb-gray-medium);
    font-weight: 400;
}

/* Hero Section */
.hero {
    max-width: 1280px;
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero h1 {
    margin-bottom: var(--spacing-sm);
}

/* USP Liste */
.usp-list {
    list-style: none;
    margin: var(--spacing-sm) auto;
    display: inline-block;
    text-align: left;
}

.usp-list li {
    /*font-size: clamp(1.3rem, 2vw, 1.125rem);*/
    font-size: clamp(1.5rem, 2.3vw, 1.85rem);
    color: var(--fb-gray-medium);
    margin: var(--spacing-xs) 0;
    font-weight: 500;
}

.usp-list li::before {
    content: "• ";
    color: var(--fb-gray-medium);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Launch Info */
.launch-info {
    /*font-size: clamp(1.3rem, 2vw, 1.125rem);*/
    font-size: clamp(1.5rem, 2.3vw, 1.85rem);
    color: var(--fb-gray-medium);
    margin: 0 0 var(--spacing-sm) 0;
    font-weight: 500;
    text-align: center;
}

/* CTA Group - Gruppiert Text und Button */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--spacing-md) auto;
    padding-bottom: var(--spacing-md);
    width: 90%;
    max-width: 600px;
}

.cta-group p {
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 600;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.btn-reminder {
    background-color: var(--fb-pink);
    color: var(--fb-white);
}

.btn-termin {
    background-color: var(--fb-green);
    color:var(--fb-white);
}

.btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Disabled State für Buttons */
.btn:disabled {
    cursor: not-allowed;
}

.btn:disabled.btn-reminder {
    background-color: rgba(233, 104, 162, 0.75);
    color: var(--fb-white);
}

.btn:disabled.btn-termin {
    background-color: rgba(168, 204, 112, 0.75);
    color:var(--fb-white);
}


.btn-status {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    font-weight: 400;
}

/* Info Text */
.info-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--fb-gray-medium);
    text-align: center;
    line-height: 1.6;
}

/* Decorative Shapes */
.shapes {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: 60vh;
    max-height: 600px;
    max-width: 25%;
}

.shapes-left {
    left: 2rem;
    bottom: 0;
}

.shapes-right {
    right: 2rem;
    bottom: 0;
}

.shapes img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom;
}

/* Responsive Design */
@media (min-width: 768px) {
    .shapes {
        height: 65vh;
        max-height: 700px;
        max-width: 20%;
    }
}

@media (max-width: 767px) {
    .landing-page {
        padding: var(--spacing-sm);
        padding-top: 5vh;
        padding-bottom: 25vh;
    }
    
    .shapes {
        height: 35vh;
        max-height: 320px;
        max-width: 30%;
    }
    
    .cta-group {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
        border-radius: 80px;
        padding: var(--spacing-sm);
    }
    
    .cta-group:last-of-type {
        margin-bottom: var(--spacing-xl);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .shapes {
        display: none;
    }
}

/* ========================================
   Footer Styles
   ======================================== */

.site-footer {
    width: 100%;
    background-color: var(--fb-gray-dark);
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    z-index: 10;
    margin-top: var(--spacing-xl);
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.footer-left h3 {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.footer-left h3:first-child {
    margin-top: 0;
}

.footer-left p {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-left a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-left a:hover {
    opacity: 0.7;
}

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

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #ffffff;
    margin: 0;
}

.designed-by {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #ffffff;
    margin: 0;
}

.designed-by a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.designed-by a:hover {
    opacity: 0.7;
}

/* Footer Responsive */
@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-left h3,
    .footer-left p {
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
        margin-top: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}