/* ============================================
   PRIVATE PABLO PAGE STYLES
   ============================================ */

.private-main {
    min-height: 100vh;
    padding-top: 100px;
}

.private-hero {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.private-title {
    font-size: 64px;
    font-weight: 400;
    margin: 0 0 60px 0;
    color: var(--text-primary);
}

.private-profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.private-profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

.private-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 60px 0;
    color: var(--text-primary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-container.dark-container {
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-radius: 20px;
}

/* ============================================
   BOOKMARKED SECTION (BounceCards)
   ============================================ */

.bookmarked-section {
    background-color: var(--bg-color);
}

#bounceCards {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bounce-card {
    position: absolute;
    width: 200px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ============================================
   FIT SECTION (Masonry)
   ============================================ */

.fit-section {
    background-color: var(--bg-color);
}

#masonry {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 1000px;
}

.masonry-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: scale(0.95);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ============================================
   NEXT TO LEARN SECTION (CircularGallery)
   ============================================ */

.next-to-learn-section {
    background-color: var(--bg-color);
}

.circular-gallery-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    position: relative;
}

.circular-gallery-item {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.circular-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.circular-gallery-item p {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 60px 0;
}

#testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-color);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 2px solid var(--border-color);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-primary);
}

.testimonial-handle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .private-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .private-profile-image img {
        width: 150px;
        height: 150px;
    }

    #bounceCards {
        height: 250px;
    }

    .bounce-card {
        width: 150px;
        height: 200px;
    }

    .circular-gallery-wrapper {
        height: 400px;
    }

    .bookmarked-section,
    .fit-section,
    .next-to-learn-section {
        margin: 20px 10px;
        padding: 40px 10px;
    }

    #testimonials {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

