/* Master Stylesheet - Kalimatcha */
@import url('tokens.css?v=20260802');
@import url('base.css?v=20260802');
@import url('layout.css?v=20260802');
@import url('components.css?v=20260802');
@import url('animations.css?v=20260802');

/* --- Page Specific Layouts (Kezdőlap, Shop, Blog, Rólunk) --- */

/* Hero Section - Height and alignments are handled in layout.css */


.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129, 155, 125, 0.08) 0%, rgba(251, 250, 247, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--text-main);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.hero-content .lead {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-content .signup-form-wrapper {
    animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.lead {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

/* Recipes Section */
.recipes {
    padding: 50px 0 100px 0;
    background-color: transparent;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

/* Products Section */
.products-section {
    padding: 30px 0 40px 0;
    background-color: transparent;
    border-bottom: none !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px !important;
    margin-top: 40px !important;
    margin-bottom: 50px !important;
}

/* Tablet Layout (3 columns) */
@media (max-width: 1023px) and (min-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 32px 16px !important;
     }
}

/* Mobile Responsive Grid (2 columns for compact viewing) */
@media (max-width: 599px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px 12px !important;
        margin-top: 15px !important;
    }
}
