﻿@import url('./fonts.css');

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2e5c8a;
    --accent-color: #4a90e2;
    --success-color: #27ae60;
    --green-color: #2a833d;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-section: #f5f7fa;
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Nimbus Sans', serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--green-color) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background-color: var(--green-color);
    border: none;
    padding: 0.5rem 2rem;
    font-weight: 500;
    border-radius: 6px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary-custom:hover {
    background-color: var(--green-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 131, 61, 0.3);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    width: 100%;
    background-image: url(http://edelmanfinancialengines.com/content/dam/efe/corporate-brand/production-web-assets/wealth-planning/home-page-heros/2025/backgroundImage.jpg);
    background-size: cover;
    background-position: center center;
    padding: 112px;
    box-sizing: border-box;
    min-height: 600px;
}


.hero-title {
    font-family: 'Nimbus Sans', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-top: 100px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--bg-section);
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-title-part-2 {
    font-family: 'Source Serif Pro', serif;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ===== PREVIEW CARDS ===== */
.preview-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--green-color);
}

.preview-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.preview-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.preview-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===== TEAM MEMBERS ===== */
.team-member {
    text-align: center;
    margin-bottom: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--bg-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TEAM MEMBER CARD ===== */
.team-member-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.team-member-details {
    flex-grow: 1;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member-title {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member-achievement {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.team-member-achievement i {
    color: #ffc107;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* ===== CAROUSEL CUSTOMIZATION ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #333 !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Team Member Card Mobile */
    .team-member-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .team-member-avatar {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .team-member-name {
        font-size: 1.25rem;
    }

    .team-member-achievement {
        justify-content: center;
        text-align: left;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 15px;
}

.carousel-control-prev-icon {
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
}

.carousel-control-next-icon {
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
}