/* Container Utama */
.dest-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Montserrat", sans-serif;
    color: #1f2937;
}

/* Bagian Intro */
.dest-header-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.dest-title-main {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    color: #658e38;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.dest-description-intro {
    color: #6b7280;
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
}

/* Featured Card (Post Pertama) */
.dest-featured-item {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    cursor: pointer;
}

.dest-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dest-featured-item:hover .dest-hero-img {
    transform: scale(1.05);
}

.dest-featured-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    color: #ffffff;
    text-align: center;
}

.dest-featured-name {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.dest-featured-text {
    max-width: 600px;
    font-size: 16px;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.5;
}

/* Griddest System */
.dest-responsive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

/* Card Style (Post Selanjutnya) */
.dest-single-card {
    cursor: pointer;
}

.dest-card-media {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

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

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

.dest-card-name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #658e38;
    margin: 0;
    font-weight: 700;
    transition: color 0.3s;
}

.dest-single-card:hover .dest-card-name {
    color: #4e6e2b;
}

.dest-card-summary {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .dest-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dest-responsive-grid {
        grid-template-columns: 1fr;
    }
    .dest-featured-item {
        height: 300px;
    }
    .dest-featured-name {
        font-size: 24px;
    }
    .dest-title-main {
        font-size: 32px;
    }
}