/* Printables Page Specific Styles */

.printables-page {
    background: linear-gradient(
        180deg,
        #e8d5f2 0%,
        #f5e6f8 15%,
        #fde8e9 30%,
        #ffe4cc 50%,
        #fff4d6 70%,
        #ffebb3 85%,
        #ffd966 100%
    );
    min-height: 100vh;
    padding: 40px 0 80px;
    animation: pageLoad 0.8s ease-out;
}

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    text-align: center;
    margin: 60px 0 80px;
    animation: fadeIn 0.8s ease-out;
}

.page-icon {
    margin: 0 auto 20px;
    display: block;
    animation: bounce 2s infinite;
}

.page-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(251, 191, 36, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Styling */
.printable-section {
    margin-bottom: 100px;
    animation: slideInUp 0.8s ease-out;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #c084fc, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Coloring Pages Grid */
.coloring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.coloring-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease-out;
}

.coloring-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.coloring-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f3f4f6;
}

.coloring-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coloring-card:hover .coloring-image img {
    transform: scale(1.1);
}

.coloring-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: #c084fc;
    margin-bottom: 10px;
}

.coloring-description {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-download-full {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-download-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-download-full svg {
    stroke: white;
}

/* Bookmark Section */
.bookmark-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.bookmark-large-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInScale 0.8s ease-out;
}

.bookmark-image-large {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bookmark-image-large:hover {
    transform: scale(1.05);
}

.bookmark-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.bookmark-info {
    text-align: left;
}

.bookmark-title-large {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: #c084fc;
    margin-bottom: 15px;
}

.bookmark-description-large {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bookmark-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bookmark-features li {
    color: #6b7280;
    font-size: 1rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.btn-download-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-download-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.btn-download-large svg {
    stroke: white;
}

.print-tip {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #78350f;
}

/* Coming Soon Box */
.coming-soon-box {
    background: rgba(255, 255, 255, 0.7);
    border: 3px dashed #c084fc;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.coming-soon-box svg {
    margin-bottom: 20px;
}

.coming-soon-box h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: #c084fc;
    margin-bottom: 15px;
}

.coming-soon-box p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Back to Home */
.back-to-home {
    text-align: center;
    margin: 80px 0 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c084fc, #9333ea);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(192, 132, 252, 0.3);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 132, 252, 0.4);
}

.btn-back svg {
    stroke: white;
}

/* Footer */
.printables-footer {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    margin-top: 60px;
}

.printables-footer p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 8px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .coloring-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bookmark-large-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
        text-align: center;
    }

    .bookmark-image-large {
        max-width: 250px;
        margin: 0 auto;
    }

    .bookmark-info {
        text-align: center;
    }

    .bookmark-title-large {
        font-size: 1.6rem;
    }

    .btn-download-large {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .coming-soon-box {
        padding: 60px 30px;
    }

    .coming-soon-box h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .coloring-title {
        font-size: 1.3rem;
    }

    .bookmark-large-card {
        padding: 25px;
    }

    .btn-download-full,
    .btn-download-large,
    .btn-back {
        font-size: 0.95rem;
        padding: 12px 25px;
    }

    .coming-soon-box {
        padding: 40px 20px;
    }

    .coming-soon-box h3 {
        font-size: 1.4rem;
    }

    .coming-soon-box p {
        font-size: 1rem;
    }
}
