@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --accent: #d0b89f;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    background-color: #f8f5f1;
    color: #2c2722;
}

.heading-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.1;
}

.section-header {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 700;
}

.nav-link {
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--accent);
}

.modern-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.project-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover img {
    transform: scale(1.08);
}

.premium-btn {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.premium-btn:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.6s;
}
.premium-btn:hover:after {
    left: 150%;
}