/*
Theme Name:   Astra Child
Description:  Astra Child Theme
Author:       Your Name
Author URI:   http://yourwebsite.com
Template:     astra
Version:      1.0.0
Text Domain:  astra-child
*/

/* --- Add Your Custom CSS Below --- */


/* --- Styles for "Ask Free Question" Section on Landing Page --- */

#ask-free-question {
    /* Assuming dark background is desired for this section */
    background-color: #0F0F1A;
    padding: 80px 20px; /* Added horizontal padding */
    text-align: center;
    overflow: hidden; /* Contain potential box shadows */
    color: #E0E0E0; /* Default light text color for section */
}

#ask-free-question h2 {
    font-family: 'Cinzel', serif; /* Example font */
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

#ask-free-question .subheading {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

/* Choices Layout */
.choices-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1140px; /* Limit width of wrapper */
    margin-left: auto;
    margin-right: auto;
}

/* Choice Card Link Styling */
a.choice-card-link {
    display: block;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(160, 112, 255, 0.2); /* Subtle border */
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease-in-out,
                border-color 0.3s ease-in-out,
                box-shadow 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    color: inherit; /* Use section's text color */
}

/* Styles for the content *inside* the card link */
.choice-card-link .icon {
    font-size: 3rem;
    color: #A070FF; /* Accent color */
    margin-bottom: 25px;
    line-height: 1;
}

.choice-card-link h3 {
    font-family: 'Lato', sans-serif; /* Example font */
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

.choice-card-link p {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin-bottom: 0;
}

/* Card Link Hover Animation */
a.choice-card-link:hover {
    transform: translateY(-8px);
    border-color: #A070FF; /* Accent color */
    box-shadow: 0px 10px 30px -5px rgba(160, 112, 255, 0.3); /* Subtle glow */
}

/* Responsive adjustments for landing page section */
@media (max-width: 768px) {
    #ask-free-question h2 { font-size: 2.5rem; }
    .choices-wrapper { gap: 25px; }
     a.choice-card-link { min-width: 260px; }
}

@media (max-width: 480px) {
    #ask-free-question h2 { font-size: 2rem; }
    #ask-free-question { padding: 60px 15px; }
     a.choice-card-link { min-width: 90%; flex-basis: 90%; }
     a.choice-card-link h3 { font-size: 1.4rem; }
     a.choice-card-link p { font-size: 0.9rem; }
}

/* --- End "Ask Free Question" Section Styles --- */