@font-face {
    font-family: "Hatsch";
    src: url(./fonts/hatsch_sans/HatschSans_PERSONAL_USE_ONLY.otf) format("truetype");
}

body{
    margin:0;
    font-family: "Hatsch", Arial, sans-serif;
    background-color:#f2f6fb;
}

.header{
    position:relative;
    height:400px;
}

.header img{ 
    height:100%;
    width: 100%;
    object-fit:cover;
}

.header::after{
    content:"";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
}

.header-title{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:white;
    font-size:70px;
    letter-spacing: 3px;
    text-align: center;
    z-index:2;
    font-weight:bold;
    text-shadow:0 0 10px rgba(0,0,0,0.7);
}

.cards{
    display:flex;
    justify-content: center;
    gap:50px;
    padding:70px 40px;
    flex-wrap:wrap;
}

.card{
    width:400px;
    background:white;
    border: radius 14px;
    overflow:hidden;
    text-decoration: none;
    color:black;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition:all 0.2s ease;
}

.card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card img{
    width:80px;
    height:80px;
    margin-bottom: 20px;
    transition:transform 0.3s;
}

.card:hover img{
    transform:scale(1.15) rotate(5deg);
}


.card-title{
    font-size: 26px;
    letter-spacing:1px;
    text-align: center;
    font-weight:bold;
}

footer{
    background: #111;
    color: white;
    text-align: center;
    padding: 35px 20px;
    margin-top: 30px;
}

.footer-top{
    font-size: 18px;
    margin-bottom: 10px;
}

footer a{
    color: white;
    text-decoration: none;
    margin: 0 6px;
    transition: 0.2s;
}

footer a:hover{
    color: #4da3ff;
}

.footer-links{
    font-size:18px;
}