/* Reset & Base Styles */
:root {
    --bg-color: #FAF7F2;
    --white: #FFFFFF;
    --text-dark: #2F2A26;
    --text-muted: #6E625A;
    --accent-warm: #C88F6A;
    --accent-warm-hover: #b37a55;
    --accent-soft: #D9B8A8;
    --card-bg: #F4EEE8;
    
    --font-serif: 'Georgia', serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-warm);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-warm);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-warm-hover);
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.link-arrow {
    font-weight: bold;
    color: var(--accent-warm);
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

/* Cards */
.card, .season-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.card:hover, .season-card:hover {
    transform: translateY(-5px);
}

.season-card {
    padding: 0;
    overflow: hidden;
}

.season-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.season-card h3, .season-card p, .season-card a {
    padding: 0 20px;
}

.season-card h3 {
    margin-top: 20px;
}

.season-card a {
    display: inline-block;
    margin-bottom: 20px;
}

/* Sections */
.intro-section, .seasons-section, .faq-section {
    padding: 80px 0;
}

/* Editorial Layout & Specifics */
.editorial-hero {
    background-color: var(--accent-soft);
    padding: 60px 0;
}

.editorial-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.editorial-hero-text {
    flex: 1;
}

.editorial-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.editorial-hero-text .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.editorial-hero-image {
    flex: 1;
}

.editorial-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .editorial-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .editorial-hero-text h1 {
        font-size: 2rem;
    }
}

/* Test App UI */
.test-app-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-bottom: 60px;
}

.test-app-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.test-header {
    text-align: center;
    margin-bottom: 30px;
}

.test-header h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.test-progress {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-warm);
    transition: width 0.3s ease;
}

.test-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.test-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.test-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
}

.step-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.option-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.test-option {
    display: block;
    cursor: pointer;
}

.test-option input[type="radio"] {
    display: none;
}

.option-content {
    display: block;
    padding: 20px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.option-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.option-content small {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.test-option:hover .option-content {
    border-color: #ccc;
}

.test-option input[type="radio"]:checked + .option-content {
    border-color: var(--accent-warm);
    background-color: #fffaf5;
}

.test-option input[type="radio"]:checked + .option-content strong {
    color: var(--accent-warm);
}

.test-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.test-actions .btn {
    flex: 1;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Result Panel */
.result-panel .result-content {
    padding: 20px 0;
}

.result-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.result-panel h2 {
    font-size: 2.5rem;
    color: var(--accent-warm);
    margin-bottom: 15px;
}

.result-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.result-colors {
    margin-bottom: 30px;
}

.result-colors h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-muted);
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Editorial Article */
.editorial-article {
    padding: 60px 0;
}

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

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.editorial-article h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.editorial-article h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.editorial-article p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.editorial-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.editorial-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.editorial-divider {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 50px 0;
}

.info-box {
    background: var(--accent-soft);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-box h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Season Cards */
.season-editorial-cards {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.season-card-detail {
    padding: 30px;
    border-radius: 12px;
    background: #f9f9f9;
}

.season-card-detail h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.season-card-detail ul {
    padding-left: 20px;
    margin-top: 15px;
}

.season-card-detail li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.spring-theme { background-color: #fff9f2; border-left: 4px solid #FFB07C; }
.summer-theme { background-color: #f4f7fb; border-left: 4px solid #A2B5CD; }
.autumn-theme { background-color: #fbf6f0; border-left: 4px solid #B7410E; }
.winter-theme { background-color: #f5f5f5; border-left: 4px solid #000080; }

/* FAQ Section */
.editorial-faq {
    background-color: var(--white);
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-warm);
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    background-color: var(--accent-soft);
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb-nav {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.breadcrumb-nav a {
    color: var(--text-muted);
}

.breadcrumb-nav a:hover {
    color: var(--accent-warm);
}

.breadcrumb-nav span[aria-current="page"] {
    color: var(--text-dark);
    font-weight: bold;
}

.test-teaser {
    padding: 80px 0;
    background-color: var(--accent-soft);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

details {
    background-color: var(--white);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin-top: 10px;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.site-footer h4 {
    color: var(--white);
}

.site-footer a {
    color: #ccc;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #999;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none; /* Mobile menu would go here */
    }
}
