/* ================================================== */
/* Creativity Jungle Custom Styles                     */
/* ================================================== */

/* Status Badges */
.badge-cj {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-cj-active {
    background-color: #354e33;
    color: #fff;
}

.badge-cj-progress {
    background-color: #798d7a;
    color: #fff;
}

.badge-cj-soon {
    background-color: #E1EBE2;
    color: #354e33;
}

/* Aspect Cards */
.aspect-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E1EBE2;
    height: 100%;
}

.aspect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(53, 78, 51, 0.12);
}

.aspect-card .aspect-icon {
    font-size: 48px;
    color: #354e33;
    margin-bottom: 20px;
    display: block;
}

.aspect-card h4 {
    margin-bottom: 10px;
}

.aspect-card .badge-cj {
    margin-bottom: 15px;
}

.aspect-card p {
    margin-bottom: 20px;
}

/* Aspect Card Dark Variant (for dark bg sections) */
.aspect-card-dark {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    color: #fff;
}

.aspect-card-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.aspect-card-dark .aspect-icon {
    font-size: 48px;
    color: #798d7a;
    margin-bottom: 20px;
    display: block;
}

/* Feature Grid (SaaS landing) */
.feature-grid-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-grid-item .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #E1EBE2;
    color: #354e33;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-grid-item:hover .feature-icon {
    background: #354e33;
    color: #fff;
}

/* Embedded Player Container */
.player-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #E1EBE2;
}

.player-container iframe {
    border-radius: 8px;
    width: 100%;
}

/* Genre Card */
.genre-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E1EBE2;
    transition: all 0.3s ease;
}

.genre-card:hover {
    box-shadow: 0 10px 30px rgba(53, 78, 51, 0.1);
}

.genre-card .genre-header {
    background: #354e33;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.genre-card .genre-header i {
    font-size: 28px;
}

.genre-card .genre-body {
    padding: 25px;
}

/* Book Card */
.book-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #E1EBE2;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(53, 78, 51, 0.12);
}

.book-card .book-icon {
    font-size: 64px;
    color: #354e33;
    margin-bottom: 20px;
}

.book-card .book-content {
    flex: 1;
}

.book-card .book-actions {
    margin-top: auto;
    padding-top: 15px;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #354e33;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step .step-icon {
    font-size: 40px;
    color: #354e33;
    margin-bottom: 15px;
}

/* Project Portfolio Card */
.portfolio-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E1EBE2;
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(53, 78, 51, 0.12);
}

.portfolio-card .portfolio-icon {
    background: #354e33;
    color: #fff;
    padding: 40px;
    text-align: center;
    font-size: 64px;
}

.portfolio-card .portfolio-body {
    padding: 30px;
}

.portfolio-card .portfolio-body h4 {
    margin-bottom: 10px;
}

/* Tech Badge */
.tech-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: #E1EBE2;
    color: #354e33;
    margin: 4px;
}

/* Coming Soon Page */
.coming-soon-icon {
    font-size: 80px;
    color: #354e33;
    margin-bottom: 30px;
}

.coming-soon-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

/* Game Mechanic Card */
.mechanic-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #E1EBE2;
    height: 100%;
    transition: all 0.3s ease;
}

.mechanic-card:hover {
    border-color: #354e33;
}

.mechanic-card i {
    font-size: 36px;
    color: #354e33;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form .form-control {
    border: 1px solid #E1EBE2;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #354e33;
    box-shadow: 0 0 0 0.2rem rgba(53, 78, 51, 0.15);
}

.contact-form .form-select {
    border: 1px solid #E1EBE2;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
}

/* Expansion Pack Card */
.expansion-card {
    background: linear-gradient(135deg, #354e33 0%, #2a3e28 100%);
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.expansion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(53, 78, 51, 0.3);
}

.expansion-card i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Product Category Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #E1EBE2;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(53, 78, 51, 0.12);
}

.product-card .product-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #E1EBE2;
    color: #354e33;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: #354e33;
    color: #fff;
}

/* Aspect Overview Grid (About page) */
.aspect-mini {
    text-align: center;
    padding: 20px 15px;
    transition: all 0.3s ease;
}

.aspect-mini:hover {
    transform: translateY(-3px);
}

.aspect-mini i {
    font-size: 36px;
    color: #354e33;
    margin-bottom: 10px;
    display: block;
}

.aspect-mini h6 {
    font-weight: 600;
    margin: 0;
}

/* Link Reset for cards */
a.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.card-link:hover {
    color: inherit;
}
