/* Custom CSS for Kevin Baker Personal Branding Website - Redesigned */

/* Clean Color Palette - Professional with Warm Accents */
:root {
    /* Primary Color Palette */
    --seashell: #FBEFEBff;      /* Warm accent for subtle highlights */
    --tiffany-blue: #00ACC1ff;  /* Sophisticated teal accent */
    --licorice: #201713ff;      /* Deep charcoal text */
    --coquelicot: #F24D1Dff;    /* Vibrant coral for accent sections */
    --timberwolf: #D0C3BEff;    /* Warm gray neutral */
    
    /* Extended Color System */
    --bg-primary: #ffffff;      /* Clean white background */
    --bg-secondary: #f8f9faff;  /* Light gray background */
    --bg-accent: #FBEFEBff;     /* Subtle seashell for accent areas */
    --bg-coral: #F24D1Dff;      /* Coral for breakout sections */
    
    /* Text Hierarchy */
    --text-primary: #201713ff;   /* Main text (licorice) */
    --text-secondary: #4A3F3Bff; /* Secondary text (darker timberwolf) */
    --text-muted: #8B7D78ff;     /* Muted text (lighter licorice) */
    --text-light: #ffffff;       /* White text on dark backgrounds */
    
    /* Accent Colors */
    --accent-primary: #7FD6DBff; /* Tiffany blue for primary actions */
    --accent-secondary: #F24D1Dff; /* Coral for highlights and CTAs */
    --accent-warm: #E8A87Cff;    /* Warm orange variant */
    --accent-cool: #5BC0C5ff;    /* Darker tiffany blue */
    
    /* Interactive States */
    --hover-primary: #6BC4C9ff;  /* Darker tiffany blue on hover */
    --hover-secondary: #E03D0Dff; /* Darker coral on hover */
    --focus-ring: #7FD6DBff;     /* Focus state color */
    
    /* Border & Shadow */
    --border-light: #e9ecef;     /* Light gray borders */
    --border-medium: #dee2e6;    /* Medium gray borders */
    --shadow-sm: 0 1px 2px 0 rgba(32, 23, 19, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(32, 23, 19, 0.1), 0 2px 4px -1px rgba(32, 23, 19, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(32, 23, 19, 0.1), 0 4px 6px -2px rgba(32, 23, 19, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(32, 23, 19, 0.1), 0 10px 10px -5px rgba(32, 23, 19, 0.04);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-accent: linear-gradient(135deg, var(--tiffany-blue) 0%, var(--accent-cool) 100%);
    --gradient-warm: linear-gradient(135deg, var(--coquelicot) 0%, var(--accent-warm) 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Typography - Modern, clean, professional */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.display-4 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lead {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Custom Navigation - Modern, minimal */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--coquelicot) !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coquelicot) !important;
    background-color: var(--bg-secondary);
}

/* Custom Buttons - Modern, sophisticated */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--hover-primary) 0%, var(--tiffany-blue) 100%);
}

.btn-outline-primary {
    background: transparent;
    color: var(--tiffany-blue);
    border: 2px solid var(--tiffany-blue);
}

.btn-outline-primary:hover {
    background: var(--tiffany-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Coquelicot outline button */
.btn-outline-coquelicot {
    background: transparent;
    color: var(--coquelicot);
    border: 2px solid var(--coquelicot);
}

.btn-outline-coquelicot:hover {
    background: var(--coquelicot);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Coral accent button for navigation */
.btn-coral {
    background: var(--coquelicot);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-coral:hover {
    background: var(--hover-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Light button with coquelicot text on hover */
.btn-light {
    background: white;
    color: var(--text-primary);
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: white;
    color: var(--coquelicot);
    border-color: var(--coquelicot);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Enhanced Hero Section with clean patterns */
.hero-section {
    background: var(--gradient-hero);
    padding: 140px 0 50px 0;
    position: relative;
    overflow: hidden;
    max-height: 900px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(127, 214, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 77, 29, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4ADFE8 0%, #4DD0E1ff 50%, #00ACC1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px rgba(32, 23, 19, 0.1);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hero-content .lead {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 7rem;
    margin-top: 3.5rem;
    line-height: 1.6;
    max-width: 600px;
    position: relative;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image {
    position: relative;
    z-index: 2;
    margin-top: -150px;
}

.hero-image img {
    border: 12px solid var(--seashell);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-light);
    border-radius: 32px;
    max-width: 450px;
    width: 100%;
    position: relative;
}

/* Enhanced Hero Credentials */
.hero-credentials {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 24px;
    border-left: 8px solid var(--tiffany-blue);
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-credentials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(40px, -40px);
}

.hero-credentials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--coquelicot);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-20px, 20px);
}

.hero-credentials p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-credentials p:first-child {
    font-size: 1.2rem;
    color: var(--tiffany-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Services Section */
.services-section {
    padding: 120px 0;
    background: var(--seashell);
    position: relative;
}

.services-section .h2 {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--coquelicot);
    position: relative;
}

.services-section .h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(242, 77, 29, 0.5);
    border-radius: 2px;
}

.services-section .lead {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 7rem 5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.service-icon {
    margin-bottom: 2.5rem;
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--coquelicot);
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.icon-circle-speaking {
    width: 120px;
    height: 120px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: white;
    color: var(--coquelicot);
    border: 6px solid var(--coquelicot);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
}

.service-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--licorice);
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--coquelicot);
    border-radius: 2px;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.service-card ul {
    margin-bottom: 2.5rem;
}

.service-card ul li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card .btn {
    background: transparent;
    color: var(--coquelicot);
    border: 2px solid var(--coquelicot);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    background: var(--coquelicot);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Impact Section with Coral Accent */
.impact-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.impact-section .h2 {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--coquelicot);
    position: relative;
}

.impact-section .h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(242, 77, 29, 0.5);
    border-radius: 2px;
}

.impact-section .lead {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: var(--licorice);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stat {
    background: rgba(251, 239, 235, 0.4);
    padding: 3.5rem 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.impact-stat h3 {
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--licorice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.impact-stat h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--coquelicot);
    border-radius: 2px;
}

.impact-stat p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive adjustments for bold design */
@media (max-width: 768px) {
    .hero-section {
        max-height: none;
    }

    .hero-image {
        margin-top: 0rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .lead {
        font-size: 1.25rem;
    }
    
    .services-section .h2,
    .impact-section .h2 {
        font-size: 2.5rem;
    }
    
    .impact-stat h3 {
        font-size: 3rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        max-height: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-image {
        margin-top: 0rem;
    }

    .btn {
        width: 100%;
    }
}

/* Page Headers - Modern, clean */
.page-header {
    background: var(--gradient-hero);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(127, 214, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 77, 29, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #4ADFE8 0%, #4DD0E1ff 50%, #00ACC1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(32, 23, 19, 0.1);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Sections */
.bg-light {
    background-color: var(--bg-secondary) !important;
}

.bg-primary {
    background: var(--gradient-accent) !important;
}

/* Footer - Modern, clean */
footer {
    background-color: var(--bg-primary) !important;
    color: var(--text-muted);
    border-top: 1px solid var(--border-medium);
}

footer a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--accent-cool);
}

/* Badges - Modern styling */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.bg-primary {
    background: var(--gradient-accent) !important;
}

.bg-secondary {
    background: var(--text-light) !important;
}

.bg-success {
    background: var(--coquelicot) !important;
}

/* Modal - Modern styling */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 2rem 1rem;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 1rem 2rem 2rem;
}

/* Animation Classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(127, 214, 219, 0.2);
    outline: none;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
} 

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.highlight-item i {
    display: flex;
    align-items: center;
    line-height: 1;
    padding-top: 7px;
    color: var(--coquelicot);
} 

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-option i {
    display: flex;
    align-items: center;
    line-height: 1;
    padding-top: 7px;
    color: var(--coquelicot);
} 