/*
 Theme Name:   Twenty Twenty-Five Child
 Theme URI:    https://channelingjulius.com
 Description:  Child theme for Twenty Twenty-Five
 Author:       Jaesi
 Author URI:   https://channelingjulius.com
 Template:     twentytwentyfive
 Version:      1.0.1
 Text Domain:  twentytwentyfive-child
*/
@import url("../twentytwentyfive/style.css");

.workshops-library {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.workshops-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-button {
    padding: 10px 20px;
    background: #e0e0e0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.filter-button.active {
    background: #efada9;
    color: #fff;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px; /* Added padding for all grids except Live Workshops */
}

.workshop-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

.workshop-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.workshop-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.workshop-card p {
    margin: 5px 0;
}

.workshop-card .button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.workshop-card .button.upgrade {
    background: #efada9;
}

.advance-badge {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    margin-top: 10px;
}

.welcome-message {
    text-align: center; /* Center the welcome message */
    margin-bottom: 20px; /* Add spacing below */
    font-size: 18px;
    color: #333;
}

/* Styles for updated layout */
.workshops-library {
    background: #f9f9f9; /* Light background for Workshops Library */
}

#activations-library {
    background: #f0f4f8; /* Light blue-gray for Activations Library */
}

.content-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 2px solid #0073aa;
    border-radius: 5px;
    text-align: center;
}

.content-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #555;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cta-banner {
    background: url('/wp-content/uploads/2025/03/blue-energy-bg.jpg') no-repeat center/cover;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

#activations-library .cta-banner {
    background: url('/wp-content/uploads/2025/03/teal-energy-bg.jpg') no-repeat center/cover;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-banner .button {
    margin: 0 10px;
    padding: 12px 24px;
    background: #efada9;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

#live-workshops .workshops-grid {
    grid-template-columns: repeat(2, 1fr); /* 2-column for 2 workshops */
    max-width: 800px; /* Narrower for focus */
    margin: 0 auto;
    padding: 0; /* Override padding for Live Workshops */
}

#live-workshops .workshop-card .button {
    background: #ff8f00; /* Warm orange for "Join Live" */
}

@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .workshops-filters {
        flex-direction: column;
        align-items: center;
    }
    .filter-button {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    #live-workshops .workshops-grid {
        grid-template-columns: 1fr; /* 1-column for mobile */
    }
}

@media (max-width: 480px) {
    .workshops-grid {
        grid-template-columns: 1fr;
    }
}
