/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
    gap: 3rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-image img {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}


.btn-primary, .btn-secondary {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #2c3e50;
    color: white !important;
}

.btn-secondary {
    border: 1px solid #dee2e6;
    color: #495057 !important;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

/* Focus Grid Items */
.focus-item {
    padding: 1.5rem;
    background: #fdfdfd;
    border: 1px solid #efefef;
    border-radius: 12px;
}

.focus-methods {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #888;
    margin-top: 1rem;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image img {
        width: 200px;
        height: 200px;
    }
}

/* Project Card Styling */
.project-card {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.project-card img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Crops the GIF slightly to fit the box */
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--focus-card-border);
    transition: transform 0.2s ease;
}

.project-card img:hover {
    transform: scale(1.02); /* Subtle zoom on hover */
    cursor: pointer;
}

.project-card b, .project-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
}

.project-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

[data-mode="dark"] .project-card p {
    color: #aaa;
}