/* Review Index Styles */
.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-card__header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.review-card__author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.author-avatar, .author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.author-avatar-placeholder {
    margin-left: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-rating i {
    font-size: 1.1rem;
}

.rating-value {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #333;
}

.review-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.review-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-title a:hover {
    color: #007bff;
}

.review-summary {
    margin-bottom: 1rem;
    flex: 1;
}

.review-summary p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.review-images-preview {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.preview-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.more-images {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.travel-date i {
    margin-right: 0.25rem;
}

.verified-badge {
    color: #28a745;
    font-weight: 600;
}

.verified-badge i {
    margin-right: 0.25rem;
}

.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.helpful-votes {
    display: flex;
    align-items: center;
}

.helpful-votes .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.helpful-votes .btn:hover {
    color: #007bff;
}

/* Hero Section */
#hero { 
    min-height: 300px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero__content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__content h1 {
        font-size: 2rem;
    }
    
    .hero__content h2 {
        font-size: 1.2rem;
    }
    
    .review-card__header {
        padding: 1rem;
    }
    
    .review-card__content {
        padding: 1rem;
    }
    
    .author-avatar, .author-avatar-placeholder {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .review-title {
        font-size: 1.1rem;
    }
    
    .preview-image, .more-images {
        width: 50px;
        height: 50px;
    }
}
