/* PSU Reviews Page Specific Styles */

.psu-reviews-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5em;
    color: #1d2127;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header .lead {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.reviews-intro {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-intro p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Reviews Grid */
.four-columns {
    margin-bottom: 60px;
}

.responsive-slick-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsive-slick-slider li {
    margin: 0;
}

.box {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.box .img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.box:hover .img img {
    transform: scale(1.05);
}

.box .text {
    padding: 25px;
}

.box .text h3 {
    font-size: 1.3em;
    color: #1d2127;
    margin-bottom: 10px;
    font-weight: 600;
}

.box .text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.box .text p:first-of-type {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tutorials Section */
.tutorials-section {
    background: #fff;
    padding: 60px 0;
    margin-top: 60px;
}

.tutorials-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #1d2127;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-lead {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #0088cf;
    transition: all 0.3s ease;
}

.guide-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.guide-card h3 {
    margin-bottom: 15px;
}

.guide-card h3 a {
    color: #1d2127;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guide-card h3 a:hover {
    color: #0088cf;
}

.guide-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }
    
    .responsive-slick-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tutorials-section {
        padding: 40px 0;
    }
    
    .tutorials-section h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8em;
    }
    
    .box .text {
        padding: 20px;
    }
    
    .guide-card {
        padding: 20px;
    }
}

/* Loading Animation */
.box {
    animation: fadeInUp 0.6s ease-out;
}

.box:nth-child(1) { animation-delay: 0.1s; }
.box:nth-child(2) { animation-delay: 0.2s; }
.box:nth-child(3) { animation-delay: 0.3s; }
.box:nth-child(4) { animation-delay: 0.4s; }
.box:nth-child(5) { animation-delay: 0.5s; }
.box:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Guide Cards Animation */
.guide-card {
    animation: slideInLeft 0.6s ease-out;
}

.guide-card:nth-child(1) { animation-delay: 0.1s; }
.guide-card:nth-child(2) { animation-delay: 0.2s; }
.guide-card:nth-child(3) { animation-delay: 0.3s; }
.guide-card:nth-child(4) { animation-delay: 0.4s; }
.guide-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
