/* Set the default font family for the body to 'Roboto' */
body {
    font-family: 'Roboto', sans-serif;
}

/* Set the font family for all h2 elements to 'Montserrat' */
h2 {
    font-family: 'Montserrat', sans-serif;
}

/* Target h3 elements within elements that have both #pricing and .relative classes */
#pricing .relative h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Utility class to apply 'Montserrat' font family */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Define keyframes for a pulsing glow animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px 5px rgba(128, 90, 213, 0.7);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(128, 90, 213, 1);
    }
}

/* Apply the pulseGlow animation to elements with the .video-pulse-glow class */
.video-pulse-glow {
    animation: pulseGlow 2s infinite;
}

/* Define keyframes for a fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.floating-navbar {
    animation: fadeIn 1s ease-in-out;
}

/* Glow effect for feature cards */
.feature-card {
    background-color: #2D3748;
    /* bg-gray-800 */
    padding: 1.5rem;
    /* p-6 */
    border-radius: 0.5rem;
    /* rounded-lg */
    box-shadow: 0 0 0px rgba(107, 70, 193, 0.5);
    /* Initial glow */
    transition: transform 0.3s, box-shadow 0.3s;
    /* Smooth transition */
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(107, 70, 193, 0.8);
    /* Stronger glow on hover */
}

/* Ensure the background image covers the header */
.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

/* Ensure the header covers the full viewport height */
.min-h-screen {
    min-height: 100vh;
}

/* Pricing card styles */
#pricing .relative {
    height: auto;
    padding: 2rem;
    /* Increased padding for better content containment */
    border-radius: 0.75rem;
    /* Slightly larger rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
    /* Smooth transition */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* Prevent content overflow */
}

#pricing .relative:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    /* Stronger shadow on hover */
}

/* List item styling */
#pricing ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    /* Slightly smaller text for cleaner look */
}

#pricing ul li svg {
    flex-shrink: 0;
}

/* Button styles */
#pricing a {
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    /* Smooth transition */
}

#pricing a:hover {
    transform: scale(1.05);
    /* Slight scale on hover */
    background-color: #553C9A;
    /* Tailwind purple-700 */
}

/* Responsive adjustments */
/* @media (min-width: 768px) {
    #pricing .flex {
        flex-direction: row;
    }
} */

/* Accent borders for better visual hierarchy */
#monthly-card {
    border-top: 4px solid #9F7AEA;
    /* Tailwind purple-400 */
}

#lifetime-card {
    border-top: 4px solid #805AD5;
    /* Tailwind purple-500 */
}