@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Tailwind configuration is typically handled in a script snippet with CDN, 
   but since we are using class abstraction directly, let's keep the custom styling here */

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: #0c0f4a;
    background-color: #ffffff;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: max(100vh, 600px);
    min-width: max(177.77vh, 1066.66px);
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 4px 4px;
    background-color: rgba(0, 0, 0, 0.5);
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

.btn-primary {
    background-color: #0eae88;
    color: white;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.btn-primary:hover {
    background-color: rgba(14, 174, 136, 0.9);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    border-width: 2px;
    border-color: white;
    color: white;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.btn-secondary:hover {
    background-color: white;
    color: #0c0f4a;
}

.btn-secondary:active {
    transform: scale(0.95);
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    border-width: 1px;
    border-color: rgba(12, 15, 74, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Animations that were handled by framer-motion in React */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}