/* 
 * Creation Station styles for VonHoltenCodes site
 * Contains styles for the creation tools list layout and components
 */

/* Creation station intro section */
.creation-intro {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0 2rem 0;
    position: relative;
    border-left: 4px solid #ff8c00; /* Bright Orange for creation section */
    transition: border-left-color 0.3s ease;
}

body.night-mode .creation-intro {
    border-left-color: #00ff00;
}

.creation-intro h2 {
    color: #ff8c00;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    transition: color 0.3s ease;
}

body.night-mode .creation-intro h2 {
    color: #00ff00;
}

.creation-intro p {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Creation station container */
.creation-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0;
}

/* Vertical links layout */
.creation-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.creation-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid #ff8c00; /* Bright Orange for creation section */
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.creation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff8c00, transparent);
    transition: background 0.3s ease;
}

.creation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    background-color: rgba(255, 140, 0, 0.1);
}

.creation-card:active {
    transform: translateY(1px);
}

.creation-card .icon-container {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.creation-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.creation-card .card-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.creation-card .card-description {
    font-size: 14px;
    opacity: 0.8;
}

/* Night mode styles */
body.night-mode .creation-card {
    border-color: #00ff00;
}

body.night-mode .creation-card::before {
    background: linear-gradient(to right, transparent, #00ff00, transparent);
}

body.night-mode .creation-card:hover {
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    background-color: rgba(0, 255, 0, 0.1);
}

/* SVG icon styles */
.svg-icon {
    width: 40px;
    height: 40px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.creation-card:hover .svg-icon {
    fill: #ff8c00;
}

body.night-mode .creation-card:hover .svg-icon {
    fill: #00ff00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .creation-container {
        padding: 0 15px;
    }
    
    .creation-card {
        padding: 12px;
    }
    
    .creation-card .icon-container {
        width: 48px;
        height: 48px;
    }
    
    .creation-card .card-title {
        font-size: 16px;
    }
    
    .creation-card .card-description {
        font-size: 12px;
    }
}