:root {
    --primary: #2563eb;
    --secondary: #dc2626;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray-light: #f1f5f9;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Gombok */
.btn-secondary {
    background-color: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-secondary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

/* Feature kártyák */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-card-text {
    color: #4b5563;
    text-align: center;
}

/* Back to top gomb aktív állapota - JS-ből adódik hozzá */
#back-to-top.active {
    opacity: 1;
    visibility: visible;
} 