/* Color scheme from Woodbine Media Logo */
:root {
    --primary-teal: #4a7c7e;
    --secondary-teal: #5a9a9d;
    --accent-gold: #d4a574;
    --dark-charcoal: #3d5a5c;
    --light-cream: #f8f5f0;
    --text-dark: #2c4446;
    --palm-green: #6b9e4d;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 126, 0.03) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-bottom: 3px solid var(--accent-gold);
    padding: 60px 20px;
}

.logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(74, 124, 126, 0.2));
    transition: all 0.4s ease;
    animation: fadeInScale 0.8s ease-out;
}

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

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 70px rgba(74, 124, 126, 0.25));
}

main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-in;
}

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

.product-section {
    width: 100%;
    max-width: 1400px;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 60px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 60px rgba(74, 124, 126, 0.08);
    border: 3px solid var(--accent-gold);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(74, 124, 126, 0.15);
    border-color: var(--primary-teal);
}

.product-card h2 {
    font-size: 3.5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #e0b886);
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.app-store-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
    cursor: not-allowed;
}

.store-badge:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.store-badge svg {
    display: block;
}

footer {
    width: 100%;
    background: linear-gradient(to top, rgba(74, 124, 126, 0.03), transparent);
    border-top: 3px solid var(--accent-gold);
    padding: 50px 40px 30px;
    text-align: center;
}

.footer-links {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.footer-links a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.separator {
    color: var(--accent-gold);
    padding: 0 8px;
    font-weight: 300;
}

.contact {
    margin: 25px 0;
}

.contact p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.contact a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.copyright {
    color: var(--dark-charcoal);
    font-size: 0.95rem;
    margin-top: 20px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 40px 20px;
    }

    .logo {
        max-width: 400px;
    }

    .product-section {
        padding: 60px 20px;
    }

    .product-card {
        padding: 40px 30px;
    }

    .product-card h2 {
        font-size: 2.5rem;
    }

    .app-store-badges {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .logo {
        max-width: 300px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-card h2 {
        font-size: 2rem;
    }

    .coming-soon {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .app-store-badges {
        flex-direction: column;
        gap: 15px;
    }

    .store-badge svg {
        width: 150px;
        height: auto;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }

    footer {
        padding: 40px 20px 25px;
    }
}
