.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Images/banner/banner-home.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: contrast(80%) brightness(40%);
    z-index: -1;
}

.banner-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: fadeInUp 1s ease;
    max-width: 900px;
    z-index: 1;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: var(--book-btn-bg);
    color: var(--white);
}

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

.btn-large {
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
}

/* Features Section */
.must-sees {
    padding: 4rem 0;
    background: white;
}

.must-sees-title{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hidden-gems {
    padding: 4rem 0;
    background: var(--bg-section);
}

.hidden-gems-title{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.feature-card {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 0.75;
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0 6rem 0;
    background: var(--white);
}

.reviews-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.reviews-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.review-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.review-link:hover {
    color: var(--accent-color);
}

.carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0 2rem 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
}

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

.review-author-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin: 0;
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    margin-top: 0.2rem;
}

.stars {
    display: flex;
    justify-content: flex-start;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star {
    width: 18px;
    height: 18px;
    fill: #d03c3c;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .review-card {
        width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .banner-bg {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        height: 300px;
    }

    .carousel {
        padding: 0;
    }
    
    .review-card {
        width: 100%;
        padding: 1.5rem 1rem;
        min-height: 250px;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}