/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    min-height: 100vh;
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 4rem;
}

/* Content sectie */
.content {
    flex: 1;
    max-width: 500px;
    padding-right: 2rem;
}

/* Logo sectie */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.app-icon {
    position: relative;
}


.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.app-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #778E64;
    margin: 0;
}

/* Hero sectie */
.hero-section {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 450px;
}

/* Form sectie */
.form-section {
    margin-bottom: 0;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
}

.input-group.name-row {
    display: flex;
    gap: 1rem;
}

.input-group.name-row .input-group {
    flex: 1;
}

.waitlist-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.waitlist-form input:focus {
    outline: none;
    border-color: #778E64;
    box-shadow: 0 0 0 3px rgba(119, 142, 100, 0.1);
    transform: translateY(-1px);
}

.waitlist-form input::placeholder {
    color: #94a3b8;
}

.submit-btn {
    background: linear-gradient(135deg, #778E64, #9CB686);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(119, 142, 100, 0.3);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(119, 142, 100, 0.4);
}

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

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(2px);
}

.privacy-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.privacy-link {
    color: #778E64;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
    color: #5f6b4f;
}

/* Privacy Section Styling */
.privacy-section {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}

/* Custom Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
    padding: 0.1rem 0;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 3px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: #778E64;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #778E64;
    border-color: #778E64;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.checkbox-text {
    color: #2c3e50;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(119, 142, 100, 0.2);
    border-radius: 25px;
    color: #778E64;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-link:hover {
    background: rgba(119, 142, 100, 0.1);
    border-color: #778E64;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}



/* App screenshot sectie */
.app-preview-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 450px;
    padding-top: 2rem;
    background: transparent !important;
}

.app-screenshot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    -webkit-background-composite: clear;
    background-blend-mode: normal;
    isolation: isolate;
}

/* Browser-specifieke fixes */
.app-screenshot-container::before,
.app-screenshot-container::after {
    content: none !important;
}

/* Force transparantie op alle child elementen */
.app-screenshot-container * {
    background: transparent !important;
    background-color: transparent !important;
}

.app-screenshot {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: none !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    isolation: isolate;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-background-composite: clear;
    mix-blend-mode: normal;
    filter: none;
}

.app-screenshot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    -webkit-background-composite: clear;
    background-blend-mode: normal;
    isolation: isolate;
}

/* Browser-specifieke fixes */
.app-screenshot-container::before,
.app-screenshot-container::after {
    content: none !important;
}

/* Force transparantie op alle child elementen */
.app-screenshot-container * {
    background: transparent !important;
    background-color: transparent !important;
}

.app-screenshot:hover {
    transform: translateY(-3px);
}

/* Alternatieve transparantie methoden */
.app-screenshot-alt {
    background-image: url('mockup-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 600px;
    background-color: transparent !important;
}

/* CSS filter methode */
.app-screenshot-filter {
    filter: 
        drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1))
        brightness(1)
        contrast(1);
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 2rem;
        justify-content: flex-start;
        padding-top: 3rem;
    }
    
    .content {
        max-width: 600px;
        padding-right: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .app-preview-section {
        max-width: none;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
    }
    
    .app-screenshot {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .app-name {
        font-size: 2rem;
    }
    
    .icon-background {
        width: 50px;
        height: 50px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .app-screenshot {
        max-width: 250px;
    }
}

/* Loading en success states */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: linear-gradient(135deg, #d1fae5, #ecfccb);
    border: 1px solid #4ade80;
    color: #166534;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}