/* CWO Review Page Styling - ENLARGED VERSION */

/* Review Container */
.review-container {
    background: white;
    margin: 20px 0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
    font-size: 1.1rem; /* Base font size increased */
}

/* Review Header */
.review-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 3px solid var(--primary);
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.05), rgba(220, 20, 60, 0.05));
    border-radius: 8px;
}

.review-header h1 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 3.2rem; /* Increased from 2.5rem */
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: normal;
}

.review-header h2 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.8rem; /* Increased from 1.3rem */
    color: var(--dark);
    margin: 12px 0;
    font-weight: 500;
}

.review-header h3 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.4rem; /* Increased from 1.1rem */
    color: #666;
    margin: 8px 0;
    font-weight: normal;
}

/* Review Content Layout */
.review-content {
    margin-top: 40px;
}

.review-ratings {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ratings-column {
    flex: 1;
}

/* Host Profile Cards */
.host-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(178, 34, 34, 0.02);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.host-avatar {
    width: 80px; /* Increased from 60px */
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.host-info h4 {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.3rem; /* Increased */
}

.host-info .host-title {
    font-size: 1.1rem; /* Increased from 0.9rem */
    color: #666;
    margin: 0;
}

/* Rating Cards */
.rating-card {
    background: white;
    border: 2px solid rgba(178, 34, 34, 0.1);
    border-radius: 8px;
    padding: 25px; /* Increased from 20px */
    margin-bottom: 25px;
    text-align: center;
    transition: var(--transition);
}

.rating-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(178, 34, 34, 0.3);
}

.rating-card h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.5rem; /* Increased from 1.2rem */
    font-weight: normal;
    border-bottom: 2px solid rgba(178, 34, 34, 0.1);
    padding-bottom: 10px;
}

.rating-card p {
    font-size: 1.4rem; /* Increased from 1.1rem */
    font-weight: 600;
    margin: 0;
}

/* Synopsis Cards */
.synopsis-card {
    background: rgba(178, 34, 34, 0.05);
    border: 2px solid rgba(178, 34, 34, 0.1);
    border-radius: 8px;
    padding: 25px; /* Increased from 20px */
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.synopsis-card h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.5rem; /* Increased from 1.2rem */
    font-weight: normal;
}

.synopsis-card p {
    line-height: 1.6;
    color: var(--dark);
    text-align: left;
    font-size: 1.1rem; /* Added explicit size */
}

/* Vote Color Classes */
.thumbs-up, .text-success {
    color: var(--success) !important;
    font-weight: 700;
}

.sideways, .text-warning {
    color: var(--warning) !important;
    font-weight: 700;
}

.thumbs-down, .text-danger {
    color: var(--danger) !important;
    font-weight: 700;
}

.na, .text-muted {
    color: #6c757d !important;
    font-style: italic;
}

/* Podcast Links */
.podcast-links {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(178, 34, 34, 0.05);
    border-radius: 8px;
    border: 2px solid rgba(178, 34, 34, 0.1);
}

.podcast-links h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.podcast-link {
    display: inline-block;
    margin: 0 20px;
    transition: var(--transition);
}

.podcast-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.podcast-icon {
    width: 80px; /* Increased from 60px */
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.podcast-icon:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px; /* Increased padding */
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: var(--transition);
    font-size: 1.1rem; /* Added explicit size */
}

.back-link:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.back-link i {
    margin-right: 10px;
}

/* User Rating Section */
.user-rating-section {
    background: white;
    border: 2px solid rgba(178, 34, 34, 0.1);
    border-radius: 8px;
    padding: 30px; /* Increased from 25px */
    margin: 25px 0;
    text-align: center;
}

.user-rating-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
    font-size: 1.4rem; /* Added explicit size */
}

.star-rating {
    display: inline-flex;
    gap: 8px; /* Increased from 5px */
    cursor: pointer;
}

.star-rating .star {
    font-size: 36px; /* Increased from 28px */
    color: #ddd;
    transition: color 0.2s;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #FFD700;
}

/* Comment Section Enhancements */
.comment-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(178, 34, 34, 0.1);
}

.comment-section h2 {
    font-size: 2rem; /* Increased */
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary);
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

.comment-form-container h3 {
    font-size: 1.3rem; /* Added */
    color: var(--primary);
    margin-bottom: 15px;
}

.comments-controls {
    margin: 25px 0;
    padding: 25px;
    background-color: var(--light);
    border-radius: 8px;
    border: 1px solid rgba(178, 34, 34, 0.1);
}

.comments-controls label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: var(--dark);
    font-size: 1.1rem; /* Added */
}

.comments-controls select {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px; /* Increased padding */
    background: white;
    color: var(--dark);
    font-size: 1rem; /* Added */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .review-container {
        padding: 25px;
        font-size: 1rem; /* Smaller base on mobile */
    }
    
    .review-ratings {
        flex-direction: column;
        gap: 25px;
    }
    
    .review-header {
        padding: 25px 15px;
    }
    
    .review-header h1 {
        font-size: 2.5rem; /* Reduced for mobile */
    }
    
    .review-header h2 {
        font-size: 1.4rem;
    }
    
    .review-header h3 {
        font-size: 1.2rem;
    }
    
    .host-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .host-avatar {
        width: 70px;
        height: 70px;
    }
    
    .rating-card,
    .synopsis-card {
        padding: 20px;
    }
    
    .podcast-links {
        padding: 25px 15px;
    }
    
    .podcast-link {
        margin: 15px;
    }
    
    .podcast-icon {
        width: 70px;
        height: 70px;
    }
    
    .star-rating .star {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .review-container {
        padding: 20px;
        margin: 15px 0;
    }
    
    .review-header h1 {
        font-size: 2.2rem;
    }
    
    .host-avatar {
        width: 60px;
        height: 60px;
    }
    
    .star-rating .star {
        font-size: 28px;
    }
    
    .podcast-icon {
        width: 60px;
        height: 60px;
    }
}
/* Community Thumbs Voting Styles */
.community-thumbs-section {
    background: #f8f9fa;
    border: 2px solid rgba(178, 34, 34, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
}

.community-thumbs-section h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Coolvetica', sans-serif;
}

.community-thumbs-section h5 {
    color: var(--dark);
    margin-top: 5px;
    font-size: 1rem;
}

.vote-totals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.vote-total-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.vote-total-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.vote-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.vote-count {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary);
    background: rgba(178, 34, 34, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    min-width: 30px;
}

.total-community-votes {
    font-size: 1.1rem;
    color: var(--dark);
    padding: 15px;
    background: rgba(178, 34, 34, 0.05);
    border-radius: 8px;
}

.user-thumbs-voting {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.thumbs-voting-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.thumbs-vote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.thumbs-vote-btn:hover {
    border-color: var(--primary);
    background: rgba(178, 34, 34, 0.05);
    transform: scale(1.05);
}

.thumbs-vote-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.thumbs-vote-btn img {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
}

.thumbs-vote-btn.active img {
    filter: brightness(0) invert(1);
}

.thumbs-vote-btn span {
    font-size: 0.8rem;
    font-weight: 600;
}

.current-vote-display {
    margin-top: 15px;
    padding: 10px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 6px;
}

.vote-prompt {
    margin-top: 10px;
    color: #666;
    font-style: italic;
}

/* Additional Coolvetica font applications for consistency */
.aggregate-rating-display h4,
.user-rating-section h4,
.comment-section h2,
.comment-form-container h3,
.podcast-links h4 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

/* Community thumbs section headings */
.community-thumbs-section h4,
.community-thumbs-section h5 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

/* Ensure aggregate rating heading is properly sized */
.aggregate-rating-display h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* User rating section heading */
.user-rating-section h4 {
    font-size: 1.4rem;
}

/* Comment section main heading */
.comment-section h2 {
    font-size: 2.2rem;
}

/* Podcast links heading */
.podcast-links h4 {
    font-size: 1.6rem;
}