/* --- HOMEPAGE SPECIFIC STYLES --- */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%; 
    box-sizing: border-box;
    padding: 20px 5%;
    
    position: fixed;
    top: 0;
    left: 0;
    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: 'Inter';
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;

    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.nav-links a.active {
    border-bottom: 2px solid black;
    padding-bottom: 4px;
    color: black;
}

.nav-links a:hover {
    border-bottom: 2px solid black;
    padding-bottom: 4px;
    color: black;
}

/* Hero Section */
.home-container {
    max-width: 1100px;
    margin: 150px auto 0;
    padding: 0 20px;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 150px;
}

.headshot-img {
    width: 350px;
    height: auto;
    border-radius: 12px;
    border: 4px solid var(--primary-black);
    box-shadow: 12px 12px 0px var(--accent-blue);
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.intro-blurb {
    font-family: 'Inter', sans-serif;
    line-height: 150%;
    font-size: 1.2rem;
    color: var(--secondary-gray);
    max-width: 400px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-black);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

/* Project Grid */

.card-title {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin: 10px 0;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.section-label {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-black);
    display: inline-block;
    margin-bottom: 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    text-decoration: none;
    color: inherit;
}

.project-img-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.4s;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    object-position: center top;
}

.project-card:hover .project-img-container {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.project-info h3 {
    font-size: 1.5rem;
    margin: 0;
}

.project-info p {
    color: var(--secondary-gray);
    font-size: 0.9rem;
}

.site-footer {
    background-color: var(--primary-black);
    padding: 60px 20px;
    margin-top: 100px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 1.5rem;
    color: blue;
    text-decoration: underline;
    font-weight: 600;
    display: block;
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsiveness */
@media (max-width: 850px) {
    .hero-section { flex-direction: column; text-align: center; }
    .hero-title { font-size: 3rem; }
    .intro-blurb { margin: 0 auto 30px; }
}