/* 1. Tavallinen teksti (Regular) */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight-v9-latin-regular.woff2') format('woff2');
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-display: swap;
}

/* 2. font weight 500 */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight-v9-latin-500.woff2') format('woff2');
    font-weight: 500;
    /* Bold */
    font-style: normal;
    font-display: swap;
}

/* 3. font weight 600 */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight-v9-latin-600.woff2') format('woff2');
    font-weight: 600;
    /* Bold */
    font-style: normal;
    font-display: swap;
}

/* 4. font weight 700 */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight-v9-latin-700.woff2') format('woff2');
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-display: swap;
}

/* 5. font weight 800 */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight-v9-latin-800.woff2') format('woff2');
    font-weight: 800;
    /* Bold */
    font-style: normal;
    font-display: swap;
}

/* 6. font weight 900 */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight-v9-latin-900.woff2') format('woff2');
    font-weight: 900;
    /* Bold */
    font-style: normal;
    font-display: swap;
}


/* 2. Yleiset tyylit */
body {
    font-family: 'Inter Tight', sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: #fdfdfd;
}

/* 3. Hero-osio */
.hero-section {
    background: #fdfdfd;
    padding: 180px 0 120px;
}

/* 4. Komponentit */
.btn-primary {
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}



.service-card {
    transition: all 0.3s ease;
    background: #ffffff;
    /* border-radius is handled by utility class rounded-4 in HTML */
}

.service-card:hover {
    transform: translateY(-5px);
    /* Matching shadow-lg roughly or slightly enhanced */
}

/* 5. Responsiivisuus */
@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
    }
}

/* 6. Footer */
.footer-section {
    background-color: #000000;
    /* Matches main text color */
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}