/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-color);
}

.navbar.scrolled {
    background-color: rgba(252, 249, 242, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: #000;
}

.navbar-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar-nav a {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar-nav a:hover {
    color: var(--primary-color);
}

.lang-switch {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.8rem;
    transition: var(--transition);
}

.lang-switch:hover {
    background-color: #000;
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    color: #000;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.skills-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background-color: transparent;
    border: 2px solid #000;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    transition: var(--transition);
}

.skill-tag:hover {
    background-color: #000;
    color: #fff;
}

.photos-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-photo {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: #fff;
    border: 2px solid #000;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.portfolio-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 0 #000;
}

.portfolio-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #eee;
    border-bottom: 2px solid #000;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    color: #000;
}

.portfolio-studio {
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-role {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.portfolio-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border: 1px solid #000;
    border-radius: 2px;
    text-transform: uppercase;
    color: #000;
    background-color: #f0f0f0;
}

.portfolio-desc {

    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    flex: 1;
}

.portfolio-metrics {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.store-link {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: 2px;
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-link:hover {
    background-color: #000;
    color: #fff;
}

.video-link {
    background-color: #ef4444; 
    border-color: #000;
    color: #fff;
}

.video-link:hover {
    background-color: #dc2626;
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 2px solid #000;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer p {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none; /* Mobile menu needed but keeping it simple for now */
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

