/* ========================================
   Bibbibo - Coming Soon Landing Page
   Professional, Trust-Building Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Professional & Trustworthy */
    --color-navy: #1a365d;
    --color-navy-light: #2c5282;
    --color-slate: #475569;
    --color-slate-light: #64748b;
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    --color-border: #e2e8f0;
    --color-gold: #b7934c;
    --color-gold-light: #d4a853;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-slate);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page Layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-navy);
}

.logo-img {
    height: 60px;
    width: auto;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

/* Hero Section */
.hero {
    max-width: 700px;
    margin-bottom: var(--spacing-2xl);
}

.badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
}

.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.125rem;
    color: var(--color-slate-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Product Focus Section */
.product-focus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    width: 100%;
    margin-bottom: var(--spacing-2xl);
}

.focus-item {
    padding: var(--spacing-lg);
    background: var(--color-off-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.focus-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.08);
}

.focus-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 10px;
    margin: 0 auto var(--spacing-sm);
}

.focus-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-xs);
}

.focus-item p {
    font-size: 0.875rem;
    color: var(--color-slate-light);
    line-height: 1.6;
}

/* Origin Badge */
.origin {
    margin-bottom: var(--spacing-xl);
}

.canada-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate);
}

.maple {
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: var(--spacing-lg);
    text-align: center;
    border-top: 1px solid var(--color-border);
    background: var(--color-off-white);
}

.notify-section {
    margin-bottom: var(--spacing-md);
}

.notify-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.notify-form {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    font-family: var(--font-family);
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    outline: none;
    transition: var(--transition-fast);
}

.notify-input:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.notify-input::placeholder {
    color: var(--color-slate-light);
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: var(--spacing-xs) 0;
}

.notify-button {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25);
}

.notify-success {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gold);
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-slate-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .main-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .product-focus {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .focus-item {
        padding: var(--spacing-md);
    }

    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1rem;
    }
}

/* Subtle Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: fadeIn 0.6s ease-out;
}

.product-focus {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.origin {
    animation: fadeIn 0.6s ease-out 0.4s both;
}