/* Custom styles for Nick Warner Freelance site */

body {
    padding-top: 72px; /* offset for fixed navbar */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.display-3, .display-5 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #38bdf8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Diagonal section dividers */
.section-skew-top {
    position: relative;
    margin-top: -40px;
    padding-top: 80px !important;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

/* Tech badges */
.tech-badge {
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.tech-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

/* Testimonial cards */
.testimonial {
    background: #fff;
    border-radius: 0.5rem;
    border-left: 4px solid #ffc107;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial .blockquote-footer {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Card overrides for dark section */
.card.bg-secondary {
    background: linear-gradient(135deg, #1d6fa5 0%, #2e8bc7 100%) !important;
    transition: transform 0.2s ease;
}

.card.bg-secondary:hover {
    transform: translateY(-4px);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Adjust display sizes on small screens */
@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.5rem;
    }
    .display-5 {
        font-size: 2rem;
    }
    .section-skew-top {
        clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    }
}


.service-marker {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.work-section {
    background: linear-gradient(135deg, #d97706 0%, #ffc107 50%, #fde047 100%);
}

    .work-section h2,
    .work-section .lead {
        color: #1f1f1f !important;
    }

.navbar-brand
{
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    font-size: 2rem;
}