* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #C9CBD1;
    background: #0B0B0D;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img {
    height: 150px;
    width: auto;
    filter: invert(40%) sepia(90%) saturate(800%) hue-rotate(210deg) brightness(90%);
}

.logo span {
    color: #4C5FD5;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.logo span strong {
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #C9CBD1;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #C9CBD1;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #1A1A1E;
        transition: right 0.3s ease;
        gap: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
    }
}

/* Hero Section */
header {
    background: #0B0B0D;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #C9CBD1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #F4F5F7;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #4C5FD5;
    color: #F4F5F7;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 95, 213, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: #0B0B0D;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F4F5F7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 0 1 300px;
    background: #1A1A1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #F4F5F7;
}

.service-card p {
    color: #C9CBD1;
}

/* About Jamey Section */
.about-jamey {
    padding: 5rem 5%;
    background: #1A1A1E;
    color: #C9CBD1;
}

.about-jamey-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.jamey-headshot {
    flex-shrink: 0;
}

.jamey-headshot img {
    width: 425px !important;
    height: 320px !important;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.jamey-text {
    text-align: left;
}

.jamey-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #F4F5F7;
}

.jamey-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-jamey-container {
        flex-direction: column;
        text-align: center;
    }
    
    .jamey-text {
        text-align: center;
    }
    
    .jamey-headshot img {
        width: 200px;
        height: 200px;
    }
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: #1A1A1E;
    color: #C9CBD1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F4F5F7;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #0B0B0D;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F4F5F7;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item strong {
    display: block;
    color: #F4F5F7;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #C9CBD1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: #1A1A1E;
    border: 1px solid #2a2a2e;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #C9CBD1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4C5FD5;
}

.contact-form button {
    background: #4C5FD5;
    color: #F4F5F7;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #3a4bb0;
}

/* Footer */
footer {
    background: #1A1A1E;
    color: #C9CBD1;
    text-align: center;
    padding: 2rem;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}
