/* Bedrock LABS Holding Page Styles */

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

:root {
    --navy-dark: #132332;
    --navy-medium: #0f2744;
    --coral-orange: #ff6b4a;
    --coral-gradient: linear-gradient(135deg, #ff6b4a 0%, #ff8c66 100%);
    --white: #ffffff;
    --gray-light: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1rem;
}

.logo-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    animation: fadeInDown 1s ease-out;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.25rem;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--coral-gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }
    
    .logo-container {
        max-width: 400px;
    }
    
    .logo-image {
        max-height: 250px;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .footer {
        font-size: 0.8rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    .logo-container {
        max-width: 300px;
    }
    
    .logo-image {
        max-height: 190px;
    }
    
    .headline {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .footer {
        font-size: 0.75rem;
        bottom: 1rem;
        padding: 0 1rem;
    }
}

/* Dark mode enhancement */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--navy-dark);
    }
}