@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --primary-blue: #007AFF;
    --dark-blue: #0051D5;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-color: #e9ecef;
    --success-green: #34C759;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-blue);
}

footer {
    text-align: center;
    padding: 48px 0;
    color: var(--text-light);
    font-size: 14px;
}

footer a {
    color: var(--primary-blue);
    text-decoration: none;
    margin: 0 16px;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* Store badges — shared across marketing pages */
.store-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-badge img {
    height: 54px;
    width: auto;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


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

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
