/* Cabin 1A - Premium Styling */

:root {
    --navy: #1a1f36;
    --gold: #c9a227;
    --cream: #faf9f7;
    --text: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
}

/* Navigation */
.nav {
    background: var(--navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero */
.hero {
    background: var(--navy);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-eyebrow {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Featured Section */
.featured h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.featured-card {
    grid-column: 1 / -1;
    background: var(--navy);
    color: var(--white);
}

.featured-card h3 a {
    color: var(--white);
}

.featured-card p {
    color: rgba(255,255,255,0.8);
}

.featured-card .card-tag {
    background: var(--gold);
    color: var(--navy);
}

.card-tag {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-card h3 a {
    color: var(--navy);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--gold);
}

.article-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-time {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* About Section */
.about {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.about p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer .logo {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* Article Page Styles */
.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-eyebrow {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.article-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-meta .separator {
    margin: 0 0.5rem;
}

/* Disclosure Box */
.disclosure-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #92400e;
}

.disclosure-box a {
    color: #b45309;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content .lead {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--navy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
}

/* Card Recommendations */
.card-recommendation {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.rank-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.card-recommendation h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.card-highlight {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.card-verdict {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-cta {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.card-cta:hover {
    background: #2d3748;
}

/* Honorable Mentions */
.honorable-mentions {
    list-style: none;
    padding: 0;
}

.honorable-mentions li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.honorable-mentions li:last-child {
    border-bottom: none;
}

/* Strategy List */
.strategy-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.strategy-list li {
    margin-bottom: 0.75rem;
}

/* Article CTA Box */
.article-cta-box {
    background: var(--navy);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.article-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-cta-box a {
    color: var(--gold);
}

/* CTA Box (inline) */
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3748 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.cta-box .cta-button {
    margin: 0.5rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.cta-button.secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Affiliate disclosure inline */
.affiliate-disclosure {
    background: #f7fafc;
    border-left: 4px solid var(--gold);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.affiliate-disclosure a {
    color: var(--text);
}

/* Footer extras */
.affiliate-footer {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-column: 1;
    }
    
    .article-page h1 {
        font-size: 2rem;
    }
    
    .card-recommendation {
        padding: 1.5rem;
    }
}
