/* ===== JOURNAL PAGE STYLES ===== */

/* ===== JOURNAL HERO ===== */
.journal-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.journal-hero-content {
    position: relative;
    z-index: 1;
}

.journal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== JOURNAL QUOTE SECTION ===== */
.journal-quote-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.journal-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
}

.quote-text em {
    color: var(--text-dark);
}

/* ===== JOURNAL SHOWCASE ===== */
.journal-showcase {
    background: var(--bg-white);
    padding: 80px 0;
}

.journal-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.journal-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.journal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journal-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.check-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    background: rgba(139, 21, 56, 0.1);
    border-radius: 50%;
    padding: 6px;
    flex-shrink: 0;
}

/* Journal Book Visual */
.journal-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.journal-book {
    position: relative;
    width: 320px;
    height: 420px;
    perspective: 1000px;
}

.book-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 8px;
    box-shadow: 
        -10px 10px 30px rgba(0, 0, 0, 0.3),
        -20px 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: rotateY(-5deg);
    transition: var(--transition);
}

.book-cover::before {
    content: 'GETTIN GRITTY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: 2px;
}

.book-cover::after {
    content: 'with Dr. J';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.journal-book:hover .book-cover {
    transform: rotateY(0deg);
}

/* Journal CTA Center */
.journal-cta-center {
    text-align: center;
}

.buy-journal-link {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 4px;
}

.buy-journal-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.journal-price {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== JOURNAL BENEFITS ===== */
.journal-benefits {
    background: var(--bg-light);
    padding: 100px 0;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.benefits-intro p {
    font-size: 20px;
    color: var(--text-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Quote Card */
.quote-card {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-color);
    position: relative;
    text-align: center;
}

.quote-card blockquote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 32px;
}

.quote-logo {
    display: flex;
    justify-content: center;
    opacity: 0.8;
}

.quote-logo img {
    width: 60px;
    height: auto;
}

/* Benefits Content */
.benefits-content h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.benefits-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 28px;
}

.benefits-list li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.benefits-list strong {
    color: var(--text-dark);
    font-weight: 700;
}

.benefits-callout {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefits-tagline {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* ===== ORDER SECTION ===== */
.journal-order {
    background: var(--bg-white);
    padding: 100px 0;
}

.order-content {
    text-align: center;
}

.order-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.order-content > p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.order-option {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.order-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.order-option.featured {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(139, 21, 56, 0.1) 100%);
    border: 3px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.option-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.order-option h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.option-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.option-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.option-button {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.option-button:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.option-button.primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.option-button.primary:hover {
    background: var(--primary-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .journal-showcase-content,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .order-options {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .benefits-visual {
        order: 2;
    }
    
    .benefits-content {
        order: 1;
    }
}

@media (max-width: 640px) {
    .journal-hero {
        padding: 120px 0 60px;
    }
    
    .journal-book {
        width: 240px;
        height: 320px;
    }
    
    .book-cover::before {
        font-size: 24px;
    }
    
    .book-cover::after {
        font-size: 14px;
    }
    
    .quote-card {
        padding: 40px 24px;
    }
}
