/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --bg-dark: #2d3748;
    --bg-card: #3d4a5c;
    --accent-peach: #f6ad55;
    --accent-peach-light: #fbd38d;
    --text-white: #ffffff;
    --text-light: #cbd5e0;
    --text-muted: #a0aec0;
    --border-color: #4a5568;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    min-height: 100vh;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-peach);
    color: var(--bg-dark);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Header */
header {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    text-align: left;
    flex: 1;
}

.site-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-light);
}

.tagline {
    display: none;
}

header .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

header .social-link:hover {
    color: var(--accent-peach);
    transform: scale(1.1);
}

header .social-link:active {
    transform: scale(1);
}

header .social-link:focus {
    outline: 2px solid var(--accent-peach);
    outline-offset: 4px;
    border-radius: 4px;
}

header .social-link:focus:not(:focus-visible) {
    outline: none;
}

header .social-link:focus-visible {
    outline: 2px solid var(--accent-peach);
    outline-offset: 4px;
    border-radius: 4px;
}

header .linkedin-icon {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    background-color: var(--bg-dark);
    padding: 3rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subheading {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-align: center;
    cursor: pointer;
}

.button.primary {
    background-color: var(--accent-peach);
    color: var(--bg-dark);
    border: 2px solid var(--accent-peach);
}

.button.primary:hover {
    background-color: var(--accent-peach-light);
    border-color: var(--accent-peach-light);
    transform: translateY(-2px);
}

.button.primary:active {
    transform: translateY(0);
}

.button.secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.button.secondary:hover {
    border-color: var(--text-light);
    color: var(--text-white);
    transform: translateY(-2px);
}

.button.secondary:active {
    transform: translateY(0);
}

.button:focus-visible {
    outline: 3px solid var(--accent-peach);
    outline-offset: 2px;
}

/* Services Section */
.services {
    padding: 2rem 0;
}

.services > .container > h2 {
    font-size: 2.5rem;
    color: var(--text-muted););
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
}

/* Service Cards Container */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Individual Service Card */
.service-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--text-muted);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(246, 173, 85, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-peach);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-peach);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--accent-peach);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    margin: 0;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.service-card li:last-child {
    margin-bottom: 0;
}

.service-card p.engagement-type  {
   
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin: -1rem 0 1rem 0;
}

/* Work With Me Section */
.work-with-me {
    padding: 0;;
}

.work-with-me-inner {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
}

.work-with-me-inner h2 {
    font-size: 2.5rem;
    color:var(--text-muted);;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: transparent;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(246, 173, 85, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    border: 2px solid var(--accent-peach);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-peach);
}

.stat-card h3 {
    font-size: 1.5rem;
    color: var(--accent-peach);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact / Let's Talk Section */
.contact {
    padding: 2rem 0;
    background-color: var(--bg-dark);
    
}

.contact > .container > h2 {
    font-size: 2.5rem;
    color: var(--text-muted);;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
}

.contact-cards {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background-color: transparent;
    border-radius: 12px;
    padding: 2rem;
    background-color: none;
    border: none ;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    border-color: var(--text-muted);
}

.contact-card h3 {
    font-size: 2.25rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-card .button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.contact-card .button.primary {
    background-color: var(--accent-peach);
    color: var(--bg-dark);
    border: 2px solid var(--accent-peach);
}

.contact-card .button.secondary {
    background-color: transparent;
    color: var(--accent-peach);
    border: 2px solid var(--accent-peach);
}

.contact-card .button.secondary:hover {
    background-color: rgba(246, 173, 85, 0.1);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    text-align: left;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

footer p {
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-cards,
    .stats-cards,
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .services,
    .contact {
        padding: 3rem 0;
    }

    .work-with-me-inner {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    header {
        padding: 1rem 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero h1 br {
        display: none;
    }

    .subheading {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
        max-width: 280px;
    }

    .services > .container > h2,
    .work-with-me > .container > h2,
    .contact > .container > h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .service-card,
    .contact-card {
        padding: 1.5rem;
    }

    .service-card h3,
    .stat-card h3,
    .contact-card h3 {
        font-size: 1.15rem;
    }

    .work-with-me-inner {
        padding: 2rem 1rem;
    }

    footer {
        padding: 1.5rem 0;
    }

    footer p {
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .site-title {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .service-card,
    .contact-card {
        padding: 1.25rem;
    }

    .service-icon,
    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon svg,
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .work-with-me-inner {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    header {
        padding: 0.75rem 0;
    }

    .hero,
    .services,
    .work-with-me,
    .contact {
        padding: 1.5rem 0;
    }
}
