/* HERO SECTION */
.review-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    
}

.review-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/review1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /*Parallax effect*/
    opacity: 0.9; 
    z-index: -2;
}

.review-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: -1;
}

.hero-content {
    color: #fff;
    padding: 20px;
}

.hero-logo {
    width: 1000%;
    max-width: 600px;
    height: auto;
}



/* REVIEWS SECTION */


.reviews-section {
    height: 100vh; 
    padding: 40px 5%;
    background-color: #ec3c20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
    color: #000;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #444;
}

.stars i {
    color: #f5c518;
    margin-right: 2px;
}
