/* Utility Classes */
.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.font-bold {
    font-weight: bold;
}

.font-extrabold {
    font-weight: 900;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Hero Section */
.creatorClubPage {
    width: 100%;
    overflow: hidden;
}

.hero-section {
    background-color: #FFEB3B;
    position: relative;
    padding: 80px 4% 10% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.hero-title {
    font-size: 3.2em;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #000;
}

.hero-image {
    width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4%;
}

/* .hero-image img {
    width: 100%;
    object-fit: contain;
} */

/* Perks Section */
.perks-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #673AB7;
    color: white;
}

.perk-item {
    flex: 1 1 30%;
    min-width: 280px;
    padding: 5% 5% 40px;
    box-sizing: border-box;
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    min-height: 600px;
    color: #F9FF0D;
}

/* 三个模块使用不同颜色，由浅入深 */
.perk-item:nth-child(1) {
    background: #B500FF;
}

.perk-item:nth-child(2) {
    background: #7800B8;
}

.perk-item:nth-child(3) {
    background: #3C005C;
}

.perk-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.icon-img {
    width: 170px;
    height: 170px;
    margin-bottom: 60px;
}

.icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.small-title {
    font-size: 1.2em;
    text-transform: uppercase;
}

.perk-title {
    font-size: 2em;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.perk-description {
    font-size: 1em;
}

/* Who Can Join Section */
.who-can-join-section {
    background-color: #F9FF0D;
    padding: 80px 20px;
    color: #333;
    text-align: center;
    min-height: 824px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.who-can-join-title {
    font-size: 3.4em;
    font-weight: normal;
    margin-bottom: 1em;
    color: #000;
}

.section-description {
    font-size: 1.4em;
    margin-bottom: 2em;
    color: #000;
    margin-left: auto;
    margin-right: auto;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
}

.requirements-list li {
    margin-bottom: 30px;
    font-size: 1.1em;
    position: relative;
    padding-left: 25px;
}

.requirements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-size: 1.2em;
    line-height: 1;
}

/* Meet The Creators Section */
.creators-section {
    background: linear-gradient(to right, #FF00A9, #FF5722);
    padding: 50px 0 0;
    color: white;
}

.creators-section .creators-section-header {
    text-align: center;
    padding: 0 20px 40px;
}

.creators-title {
    font-size: 3em;
    font-weight: normal;
    margin-bottom: 20px;
    color: #FFEB3B;
}

.creators-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #FFEB3B;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.creator-item {
    aspect-ratio: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 620px;
    width: 100%;
}

.creator-item .imgCont {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #fff;
}

.creator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.3s ease;

}

.creator-item .detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    color: #fff;
    font-size: 1.2em;
    opacity: 0;
    height: 140px;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
}

.creator-item:hover .detail {
    opacity: 1;
    transform: translateY(0);
}

.creator-item .titleCon p {
    font-weight: bold;
    font-size: 1em;
}

/* Testimonial Sections */
.testimonial-section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    color: #F9FF0D;
}

.testimonial-section .icon-img {
    width: 420px;
    height: auto;
    margin-bottom: 5em;
}

.testimonial-1 {
    background: linear-gradient(to right, #F06292, #FF5722);
}

.testimonial-2 {
    background-color: #7800B8;
}

.testimonial-section-details {
    position: relative;
}

.quote-text {
    font-size: 3.2em;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 800px;
}

.quote-author {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 60%;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .creator-item {
        height: 520px;
    }

    .creator-item .detail {
        opacity: 1;
        height: auto;
        transform: translateY(0%);
        padding: 25px 20px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3em;
    }

    .hero-image {
        height: 80%;
    }


}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        margin-bottom: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.5em;
        max-width: 100%;
    }

    .hero-image {
        position: relative;
        height: auto;
        width: 80%;
        max-width: 400px;
        right: auto;
        bottom: auto;
    }

    .perks-section {
        flex-direction: column;
    }

    .perk-item {
        flex: 1 1 100%;
        min-width: auto;
        padding: 50px 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        min-height: 500px;
    }

    .perk-item .icon-img {
        width: 150px;
        height: 150px;
    }

    .who-can-join-section,
    .testimonial-section {
        padding: 40px 20px;
        min-height: 500px;
    }

    .creators-section {
        padding: 60px 0;
    }

    .who-can-join-title,
    .creators-title {
        font-size: 2em;
    }

    .requirements-list {
        max-width: 100%;
        padding: 0 20px;
    }

    .creator-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .creator-item {
        width: 100%;
    }



    .testimonial-section .icon-img {
        margin-top: 1.5em;
        width: 120px;
        margin-bottom: 1.4em;
    }

    .testimonial-section .quote-text {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 15px;
        min-height: 350px;
        flex-direction: column-reverse;
    }

    .hero-title {
        font-size: 1.8em;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 0.8em;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
    }

    .perk-item {
        padding: 40px 20px;
    }



    .perk-title {
        font-size: 1.2em;
    }

    .perk-description {
        font-size: 0.9em;
    }

    .who-can-join-section,
    .testimonial-section {
        padding: 40px 15px;
    }

    .creators-section {
        padding: 40px 0 0;
    }

    .who-can-join-title,
    .creators-title {
        font-size: 1.6em;
    }

    .section-description {
        font-size: 1em;
    }

    .requirements-list {
        padding: 0 10px;
    }

    .requirements-list li {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    .creator-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .creator-item .detail {
        font-size: 0.8em;
    }


    .quote-author {
        font-size: 0.9em;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6em;
    }

    .creator-grid {
        grid-template-columns: 1fr;
    }

    .creator-item {
        height: 300px;
    }
}