/* ==========================================================================
   CSPHR Netherlands - Main Stylesheet
   
   Contents:
   1. CSS Reset & Variables
   2. Base Styles
   3. Animations
   4. Layout & Containers
   5. Typography
   6. Components
   7. Form Elements
   8. Social Media
   9. Responsive Styles
   ========================================================================== */

/* ==========================================================================
   1. CSS Reset & Variables
   ========================================================================== */
   :root {
    /* Primary Color Palette */
    --primary-color: #dea03b;
    --secondary-color: #67cf1c;
    --text-color: #FFFFFF;
    
    /* Background Colors */
    --bg-dark: #3055ac;
    --bg-darker: #af7b4d;
    --bg-overlay: rgba(0, 0, 0, 0.1);
    
    /* Text Colors */
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-light: rgba(255, 255, 255, 0.9);
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    
    /* Animation & Effects */
    --transition-speed: 0.2s;
    --border-radius: 8px;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Container Widths */
    --container-sm: 768px;
    --container-md: 1024px;
    --container-lg: 1200px;
}

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

/* ==========================================================================
   2. Base Styles
   ========================================================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(
        to right,
        #9d6d5a,
        #78945d,
        #5e7eae,
        #9d65a7,
        #9f5c63
    );
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    line-height: 1.6;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
}

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

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. Animations
   ========================================================================== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   4. Layout & Containers
   ========================================================================== */
.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in;
}

.header {
    padding: var(--spacing-md) 5vw;
    text-align: center;
}

.logo-container {
    margin: 0 auto;
    max-width: 200px;
}

.logo {
    width: 100%;
    height: auto;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw var(--spacing-lg);
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    width: 100%;
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: var(--spacing-md);
    background: var(--bg-overlay);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.coming-soon-text {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.redirect-section {
    margin: var(--spacing-sm) 0 var(--spacing-lg);
}

.coming-soon-image {
    max-width: 500px;
    width: 100%;
}

.promo-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.footer {
    padding: var(--spacing-md) 5vw;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

/* ==========================================================================
   5. Typography
   ========================================================================== */
.gradient-text {
    background: linear-gradient(90deg, #FFFFFF, #A5B4FC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

.offer-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: var(--spacing-md) 0;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: underline;
    transition: color var(--transition-speed) ease;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--text-light);
}

/* ==========================================================================
   6. Components
   ========================================================================== */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--spacing-md);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   7. Form Elements
   ========================================================================== */
.subscribe-form {
    margin: var(--spacing-md) 0;
    width: 100%;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--spacing-xs);
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    min-height: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 16px; /* This is the minimum font size that iOS won't zoom on */
    padding: 12px;   /* Slightly larger touch target */
}

/* ==========================================================================
   8. Social Media
   ========================================================================== */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   9. Responsive Styles
   ========================================================================== */
@media (min-width: 768px) {
    .coming-soon-container {
        flex-direction: row;
        padding: var(--spacing-lg);
    }
    
    .coming-soon-text,
    .coming-soon-image {
        flex: 1;
    }
    
    .gradient-text {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .form-group {
        gap: var(--spacing-sm);
    }
}

@media (max-width: 767px) {
    .coming-soon-image {
        margin-top: var(--spacing-md);
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-top: var(--spacing-xs);
    }
}