@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --primary: #0f766e;
}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(rgba(15, 118, 110, 0.85), rgba(15, 118, 110, 0.85)),
        url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
}

.nav-link {
    position: relative;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: -4px;
    left: 0;
    background-color: #0f766e;
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.card-hover {
    transition: all 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
}

nav {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    nav .max-w-7xl {
        padding-top: 16px;
        padding-bottom: 16px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .flex.items-center.gap-4 {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
}

.star {
    cursor: pointer;
    transition: all 0.1s;
    color: #d1d5db;
    font-size: 1.8rem;
}

.star:hover {
    transform: scale(1.1);
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* Smooth scroll és navbar eltolás */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}