/* Footer Styles */
footer {
    background-color: #2d3436;
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: #b2bec3;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.link-section a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
    color: #b2bec3;
}

/* Recent Sites Styles */
.recent-site-item {
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.recent-site-item:hover {
    transform: translateY(-2px);
}

.site-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    text-decoration: none;
    color: #b2bec3;
    gap: 1rem;
}

.site-domain {
    flex: 1;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-score {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.site-score.high {
    background: rgba(0, 184, 148, 0.2);
    color: #00b894;
}

.site-score.medium {
    background: rgba(253, 203, 110, 0.2);
    color: #fdcb6e;
}

.site-score.low {
    background: rgba(255, 118, 117, 0.2);
    color: #ff7675;
}

.site-date {
    font-size: 0.8rem;
    color: #636e72;
}

/* Recent Reviews Styles */
.recent-review-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.recent-review-item:hover {
    transform: translateY(-2px);
}

.review-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #b2bec3;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-domain {
    font-weight: 500;
    color: var(--secondary-color);
}

.review-rating {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-rating.high {
    color: #00b894;
}

.review-rating.medium {
    color: #fdcb6e;
}

.review-rating.low {
    color: #ff7675;
}

.review-content {
    font-size: 0.9rem;
}

.review-text {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #636e72;
}

.reviewer-name {
    font-style: italic;
}

/* Score Section Styles */
.score-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 10px;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.score-circle.good {
    background-color: #00b894;
}

.score-circle.medium {
    background-color: #fdcb6e;
}

.score-circle.bad {
    background-color: #ff7675;
}

.score-label {
    display: flex;
    flex-direction: column;
}

.score-rating {
    font-size: 1.5rem;
    font-weight: 600;
}

.score-summary {
    flex: 1;
    padding-left: 2rem;
    border-left: 1px solid #dfe6e9;
}

/* Report Details Styles */
.report-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-section {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 10px;
}

.detail-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.detail-section ul {
    list-style-position: inside;
}

.detail-section li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

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

.tech-item {
    margin-bottom: 0.8rem;
}

.tech-label {
    font-weight: 600;
    color: var(--primary-color);
}

/* Reviews Section Styles */
.reviews-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #dfe6e9;
}

.reviews-section h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.reviews-summary {
    margin-bottom: 2rem;
}

.avg-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars {
    font-size: 1.5rem;
    color: #dfe6e9;
}

.star.filled {
    color: #fdcb6e;
}

.total-reviews {
    color: var(--light-text);
    margin-left: 1rem;
}

.reviews-list {
    margin-bottom: 3rem;
}

.review-item {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.review-item .review-header {
    margin-bottom: 1rem;
}

.review-item .reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-item .review-rating {
    color: #dfe6e9;
}

.review-item .review-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.review-item .review-content {
    line-height: 1.6;
}

.submit-review {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 10px;
}

.submit-review h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.8rem;
    color: #dfe6e9;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #fdcb6e;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .score-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .score-summary {
        padding-left: 0;
        border-left: none;
        padding-top: 1.5rem;
        border-top: 1px solid #dfe6e9;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
} 