/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    background: url('../images/background_2.jpg');
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p {
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
}

.project-cards {
    display: flex;
    gap: 1rem;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    max-width: 400px;
}

.project-preview {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    width: 180px;
}

.project-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.preview-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-link {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .project-cards {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
    }
}