/* ==================== INTRO HERO ==================== */
.intro-hero {
    background: linear-gradient(135deg, #f5f9f3 0%, rgba(232, 240, 228, 0.5) 100%);
    padding: 100px 80px;
    margin: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.intro-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-hero-tag {
    display: inline-block;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 8px 18px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.intro-hero-content {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-hero-left {
    flex: 1;
    padding-right: 40px;
}

.intro-hero-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.intro-hero-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.intro-hero-right {
    flex: 1;
    text-align: center;
}

.intro-hero-right img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.2);
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    margin: 80px 0;
}

.gallery-header {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.gallery-info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(45, 90, 39, 0.12);
    flex: 0 0 300px;
    border: 2px solid rgba(232, 240, 228, 0.5);
    transition: all 0.3s ease;
}

.gallery-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.2);
}

.info-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.info-card-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.location {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-light);
    font-weight: 500;
}

.gallery-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-title h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-title p {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* ==================== CAROUSEL GRID ==================== */
.gallery-carousel-grid {
    margin-bottom: 30px;
}

.carousel-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.carousel-grid-slide {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-grid-slide:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 55px rgba(45, 90, 39, 0.25);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.2);
}

.carousel-nav-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(45, 90, 39, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-hero {
        padding: 80px 50px;
    }

    .intro-hero-content {
        gap: 40px;
    }

    .intro-hero-left {
        padding-right: 20px;
    }

    .intro-hero-left h1 {
        font-size: 2.4rem;
    }

    .gallery-header {
        flex-direction: column;
        gap: 30px;
    }

    .gallery-info-card {
        flex: 1;
    }

    .carousel-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .carousel-grid-slide {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .intro-hero {
        padding: 50px 0;
    }

    .intro-hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .intro-hero-left h1 {
        font-size: 2rem;
    }

    .intro-hero-left p {
        font-size: 1rem;
    }

    .gallery-header {
        flex-direction: column;
    }

    .gallery-info-card {
        flex: 1 1 100%;
    }

    .carousel-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .carousel-grid-slide {
        height: 180px;
    }
}

@media (max-width: 640px) {
    .intro-hero-left h1 {
        font-size: 1.6rem;
    }

    .intro-hero-left p {
        font-size: 0.95rem;
    }

    .gallery-title h2 {
        font-size: 1.8rem;
    }

    .carousel-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .carousel-grid-slide {
        height: 140px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
