body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1524985069026-dd778a71c7b4');
    background-size: cover;
    background-position: center;
}

/* ANİMASYON */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

.fade-in.delay {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HOVER EFEKT */
.hover-zoom {
    transition: 0.3s;
}

.hover-zoom:hover {
    transform: scale(1.03);
}

/* CARD */
.card {
    border-radius: 12px;
}

/* NAV LINK */
.nav-link:hover {
    color: #00adb5 !important;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1 {
        font-size: 2rem;
    }
}