/* Custom CSS for Workshop Page */

/* Import Bootstrap Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.5/font/bootstrap-icons.min.css");

/* Color Variables */
:root {
    --burnt-orange: #CC5500;
    --burnt-orange-dark: #A74200;
    --burnt-orange-light: #FF8033;
    --accent-color: #FFB347;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--burnt-orange), var(--burnt-orange-dark));
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 5px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header h2 {
    font-weight: 500;
    border-bottom: none;
    font-size: 1.5rem;
}

.event-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.event-details i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Section Headings */
h2 {
    color: var(--burnt-orange);
    border-bottom: 2px solid var(--burnt-orange-light);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h2 i {
    margin-right: 0.5rem;
    color: var(--burnt-orange-dark);
}

h3 {
    color: var(--burnt-orange-dark);
    margin-top: 1.5rem;
    font-weight: 600;
}

h4 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Overview Card */
.overview-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--burnt-orange);
    margin-bottom: 2rem;
}

.overview-card h2 {
    margin-top: 0;
    color: var(--burnt-orange);
    border-bottom: none;
    margin-bottom: 1rem;
}

.overview-card i {
    color: var(--burnt-orange);
    margin-right: 0.5rem;
}

/* Session Styles */
.session {
    background-color: white;
    border-left: 4px solid var(--burnt-orange);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.session:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.session-time {
    color: var(--burnt-orange);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: inline-block;
    background-color: rgba(204, 85, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.session-title {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.session ul {
    margin-bottom: 0;
}

.session ul li {
    margin-bottom: 0.4rem;
}

.session ul ul {
    margin-top: 0.4rem;
}

.session code {
    background-color: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9rem;
    color: var(--burnt-orange-dark);
    display: block;
    margin: 0.5rem 0;
}

/* Activity Cards */
.activity-card {
    background-color: white;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    height: 100%;
}

.activity-card h4 {
    color: var(--burnt-orange-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.activity-steps {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.activity-steps li {
    counter-increment: step-counter;
    margin-bottom: 0.75rem;
    padding-left: 2.2rem;
    position: relative;
}

.activity-steps li::before {
    content: counter(step-counter);
    background-color: var(--burnt-orange);
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Tips Section */
.tip-card {
    background-color: rgba(255, 179, 71, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 0 5px 5px 0;
    height: 100%;
}

.tip-card h4 {
    color: var(--burnt-orange-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tip-card i {
    margin-right: 0.5rem;
}

.tip-card ul {
    padding-left: 1.2rem;
}

.tip-card ul li {
    margin-bottom: 0.5rem;
}

/* Resource Cards */
.resource-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.2s;
    height: 100%;
    border-bottom: 3px solid var(--burnt-orange-light);
}

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

.resource-card h4 {
    color: var(--burnt-orange);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.resource-card i {
    margin-right: 0.5rem;
}

.resource-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    margin-top: 3rem;
}

.footer h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer p {
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 0;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header h2 {
        font-size: 1.3rem;
    }

    .event-details {
        text-align: left;
        margin-top: 1rem;
    }
}