/* Brand Colors - Based on #fe8d00 */
:root {
    --brand-primary: #fe8d00;
    --brand-primary-light: #ffa533;
    --brand-primary-dark: #e67d00;
    --brand-primary-tint: #fff4e6;
    --brand-primary-shade: #cc7000;
}

/* Typography */
body {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Brand Color Utilities */
.text-brand {
    color: var(--brand-primary) !important;
}

.bg-brand {
    background-color: var(--brand-primary);
}

.bg-brand-tint {
    background-color: var(--brand-primary-tint);
}

.text-brand-dark {
    color: var(--brand-primary-dark) !important;
}

.border-brand {
    border-color: var(--brand-primary) !important;
}

.btn-brand {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    font-weight: 500;
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 141, 0, 0.3);
}

.btn-outline-brand {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    font-weight: 500;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    transform: translateY(-1px);
}

/* Link Colors */
a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--brand-primary-dark);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.navbar-brand:hover {
    color: var(--brand-primary-dark) !important;
}

.nav-link {
    color: #495057 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--brand-primary) !important;
}

.nav-link.active {
    color: var(--brand-primary) !important;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background-image: url('/img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 244, 230, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%),
        radial-gradient(circle at 20% 50%, rgba(254, 141, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(254, 141, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.min-vh-75 {
    min-height: 75vh;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
}

/* Section Spacing */
.section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--brand-primary);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
}

/* Summary Cards */
.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-primary-tint);
    border-radius: 12px;
}

/* Experience Cards */
.experience-card-modern {
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--brand-primary);
    transition: all 0.3s ease;
}

.experience-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    border-left-color: var(--brand-primary-dark);
}

.experience-list {
    color: #495057;
}

.experience-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.experience-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.experience-list li:last-child {
    margin-bottom: 0;
}

/* Skills Badges */
.skill-badge {
    background-color: var(--brand-primary-tint);
    color: var(--brand-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(254, 141, 0, 0.2);
    transition: all 0.2s;
}

.skill-badge:hover {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
    transform: translateY(-1px);
}

/* Education Card */
.icon-wrapper-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-primary-tint);
    border-radius: 16px;
}

/* Contact Section */
.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-primary-tint);
    border-radius: 12px;
    flex-shrink: 0;
}

/* Cards */
.card {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

.bg-brand-tint {
    background-color: var(--brand-primary-tint) !important;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.fw-semibold {
    font-weight: 600;
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
}
