/* ===== SZÍNVÁLTOZÓK A LOGÓ ALAPJÁN ===== */
:root {
    --bg-main: #1c1815;
    --bg-card: #27221e;
    --bg-card-hover: #322b26;
    --accent-gold: #c29b68;
    --accent-gold-bright: #e5be8a;
    --accent-gold-dark: #8c6a3f;
    --text-primary: #ede8e3;
    --text-secondary: #baada3;
    --border-color: #423933;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* RESET & BASIC STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 24, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.brand-name span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold-bright);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 10rem 2rem 6rem;
    text-align: center;
    background: radial-gradient(circle at center, #362e28 0%, #1c1815 70%);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 1.5rem;
}

.hero-logo {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(194, 155, 104, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #120e0c;
}

.btn-primary:hover {
    background-color: var(--accent-gold-bright);
    box-shadow: 0 0 20px rgba(229, 190, 138, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold-bright);
    transform: translateY(-2px);
}

/* MAIN CONTENT */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-gold-bright);
    margin-bottom: 0.5rem;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent-gold);
    margin: 0.8rem auto 1.2rem;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* GRID LAYOUT */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

/* CARD STYLES */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-bright));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.card:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--accent-gold-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
    text-align: justify;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    background-color: rgba(194, 155, 104, 0.1);
    color: var(--accent-gold-bright);
    border: 1px solid rgba(194, 155, 104, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background-color: #14110f;
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #7a6e65;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for small screens */
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
}
