/* 
   GetFoundByAI.nl - Bootstrap 5 Custom Stylesheet
   Overrides and additions to the Bootstrap 5 framework
*/

/* ===== VARIABLES ===== */
:root {
    /* Colors - Overriding Bootstrap defaults where necessary */
    --bs-primary: #2563eb; 
    --bs-primary-rgb: 37, 99, 235;
    --bs-secondary: #64748b; /* Using text-light as secondary */
    --bs-secondary-rgb: 100, 116, 139;
    --bs-light: #f8fafc; /* Using bg-alt as light */
    --bs-light-rgb: 248, 250, 252;
    --bs-dark: #1e293b; /* Using text-color as dark */
    --bs-dark-rgb: 30, 41, 59;
    --bs-body-color: #1e293b; 
    --bs-body-color-rgb: 30, 41, 59;
    --bs-body-bg: #ffffff;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-link-color: #2563eb;
    --bs-link-color-rgb: 37, 99, 235;
    --bs-link-hover-color: #1d4ed8;
    --bs-link-hover-color-rgb: 29, 78, 216;

    /* Custom Colors */
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent-color: #f97316; 
    --accent-light: #fb923c;
    --accent-dark: #ea580c;
    --text-light: #64748b;
    --bg-alt: #f8fafc;
    --border-color: #e2e8f0;

    /* Typography */
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-body-font-size: 1rem; /* Default is 1rem, adjust if needed */
    --bs-body-line-height: 1.6;
    --bs-border-radius: 8px;
    --bs-border-radius-lg: 12px;
    --bs-border-radius-sm: 4px;
    --bs-box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);

    /* Spacing (Reference, use Bootstrap spacing utilities like m-*, p-*) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Other */
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
body {
    /* Apply padding top to account for fixed navbar */
    /* Adjust value based on actual navbar height if it changes */
    padding-top: 70px;
    font-family: 'Inter', sans-serif; 
}

/* ===== HELPER CLASSES ===== */
.highlight {
    color: var(--bs-primary);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.navbar-brand span {
    color: var(--bs-primary);
}

.navbar .nav-link {
    transition: color 0.3s ease;
}

.navbar .nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
#home {
    background: linear-gradient(135deg, var(--bs-light) 0%, #e0f2fe 100%);
    /* Padding is handled by Bootstrap utilities (py-5 etc.) */
}

.hero-img {
    border-radius: var(--bs-border-radius);
    box-shadow: 0 10px 30px rgba(var(--bs-primary-rgb), 0.2);
    transition: transform 0.5s ease;
    max-width: 450px; /* Limit image size */
    width: 100%;
}

.hero-img:hover {
    transform: scale(1.03);
}

/* ===== SECTIONS ===== */
.section {
    /* Padding is handled by Bootstrap utilities (py-5 etc.) */
}

.section-alt {
    background-color: var(--bs-light);
}

/* ===== ICON CIRCLES (Features, Audience, Services) ===== */
.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.audience-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CARDS ===== */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important; /* Use !important carefully */
}

/* ===== ACCORDION ===== */
.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.accordion-button::after {
    /* Optional: Customize accordion icon */
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--bs-dark);
    color: var(--bs-secondary);
}

#footer h5 {
    color: white;
}

#footer a {
    color: var(--bs-secondary);
    transition: var(--transition);
}

#footer a:hover {
    color: white;
}

#footer .navbar-brand {
    color: white;
}

#footer .navbar-brand span {
    color: var(--primary-light);
}

#footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.form-wrapper label.error {
    color: #e12330;
    font-size: 10px;
    font-weight: 500;
    margin-top: 5px;
}
  /* .form-wrapper label {
    font-family: 'PT Sans', sans-serif;
    color: #454545;
    text-transform: uppercase;
    font-size: .85rem;
    color: #888888;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.3;
    margin-bottom: 6px;
    display: block;
} */

input.error, select.error {
    border: 1px dotted red;
}

input.valid, select.valid {
    /* border: 1px solid rgb(129, 141, 50);
    background-color: rgba(192, 210, 77, 0.5);
    color: rgb(129, 141, 50, 1); */
    border: 1px solid rgb(10, 54, 34);
    background-color: rgb(209, 231, 221);
    color: rgb(10, 54, 34);
}

/* ===== FORM ===== */
/* Add custom form validation styles if needed, Bootstrap handles basics */

/* ===== RESPONSIVE ADJUSTMENTS (If needed beyond Bootstrap) ===== */
@media (max-width: 768px) {
    /* Example: Adjust hero heading size on smaller screens */
    #home h1 {
        font-size: 2.5rem; /* Override Bootstrap's display-4 if needed */
    }
}

