/* Say Again Press - Shared Styles */

:root {
    --navy: #0c1829;
    --navy-light: #162033;
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --copper: #c9956c;
    --copper-light: #d4a67d;
    --text-light: #e8e4dc;
    --text-muted: #9ca3af;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: var(--navy);
}

nav.scrolled {
    background: rgba(12, 24, 41, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
}

nav.transparent {
    background: transparent;
}

nav.transparent.scrolled {
    background: rgba(12, 24, 41, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cream);
}

.logo-icon-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-icon-img.large {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.nav-cta {
    background: var(--copper);
    color: var(--navy) !important;
    padding: 10px 22px;
    border-radius: 4px;
    opacity: 1 !important;
    transition: background 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--copper-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 8px;
}

/* Page Header */
.page-header {
    background: var(--navy);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(201, 149, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 149, 108, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section.cream {
    background: var(--cream);
}

.section.cream-dark {
    background: var(--cream-dark);
}

.section.white {
    background: white;
}

.section.navy {
    background: var(--navy);
}

.section-label {
    display: inline-block;
    color: var(--copper);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--copper);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(232, 228, 220, 0.3);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(232, 228, 220, 0.1);
    border-color: rgba(232, 228, 220, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--copper);
    color: var(--copper);
}

.btn-outline:hover {
    background: var(--copper);
    color: var(--navy);
}

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(12, 24, 41, 0.06);
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(12, 24, 41, 0.08);
}

/* Team Cards */
.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--copper);
    font-weight: 500;
}

.team-avatar.large {
    width: 160px;
    height: 160px;
    font-size: 2.5rem;
}

.team-card h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.team-bio {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(201, 149, 108, 0.1);
    padding: 64px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--copper);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--copper);
    color: var(--navy);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Prose Content */
.prose {
    max-width: 720px;
}

.prose p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.prose h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
}

/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid rgba(12, 24, 41, 0.1);
    padding: 24px 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(12, 24, 41, 0.1);
}

.faq-question {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--copper);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Book Grid */
.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.book-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(12, 24, 41, 0.06);
    transition: all 0.3s ease;
}

.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(12, 24, 41, 0.1);
}

.book-cover {
    aspect-ratio: 3/4;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-cover-placeholder {
    text-align: center;
    padding: 32px;
}

.book-cover-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--copper);
    opacity: 0.5;
    margin-bottom: 16px;
}

.book-cover-placeholder span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.book-info {
    padding: 24px;
}

.book-info h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.book-info .author {
    color: var(--copper);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.book-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.book-tag {
    display: inline-block;
    background: rgba(201, 149, 108, 0.1);
    color: var(--copper);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .book-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .book-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}
