/* Bricklair Frontend Theme Styles */

/* General Styles */
body {
    background-color: #f8f9fa;
    padding-top: 56px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 2rem 0;
}

footer {
    margin-top: auto;
    padding: 1rem 0;
    background-color: #343a40;
    color: #fff;
}

/* Page Headers */
.page-header {
    padding: 3rem 0;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

/* Error Pages */
.error-page {
    padding: 40px 0;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Feature Icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
}

.feature-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s;
}

.pricing-card.featured {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
}

/* FAQ Page */
.faq-category-list {
    position: sticky;
    top: 2rem;
}

.sticky-top-offset {
    top: 2rem;
}

/* Map iframe styles */
.map-container {
    max-height: 400px;
}

.map-iframe {
    border: 0;
}

/* Form Elements */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Auth Pages */
.auth-card {
    max-width: 450px;
    margin: 0 auto;
}

/* Login Box */
.login-box {
    max-width: 400px;
    margin: 80px auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.login-box-msg {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.login-card-body {
    padding: 2rem;
}

.captcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Registration Box */
.register-box {
    max-width: 400px;
    margin: 80px auto;
}

.register-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.register-box-msg {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .login-box, .register-box {
        margin: 30px auto;
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Light/Dark Mode Support - Default Light Theme */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --card-bg: #ffffff;
    --border-color: #dee2e6;
}

/* Custom styles for specific components */
.hero-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
}

.features-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}