/**
 * Layout Styles - Clean, minimal page structure
 * Single Responsibility: Page layout and structure
 */

/* Header - Minimal and clean */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover {
    color: #1a1a1a;
}

/* Hero - Clean and minimal */
.hero {
    background: #f8f8f8;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

/* Sections - Clean spacing */
.features,
.api-section,
.examples-section,
.test-section,
.recipe-explorer {
    padding: 4rem 0;
}

.api-section,
.test-section {
    background: #fafafa;
}

.section-description {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Feature Grid - Simple cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* API Methods - Clean list */
.api-methods {
    display: grid;
    gap: 1.5rem;
}

.api-group h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Footer - Minimal */
.footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.875rem;
}

/* Recipe Explorer - Clean layout */
.recipe-explorer {
    background: #fafafa;
}

.recipe-explorer h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
