
/* Creative Suite Styles */

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.studio-card {
    cursor: pointer;
    text-align: center;
    padding: 3rem 2rem;
}

.card-icon-lg {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Editor Layouts */
.editor-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px); /* Adjust for navbar */
    background: #1a1a2e;
    color: white;
    overflow: hidden;
    margin-top: 70px;
}

.editor-toolbar {
    height: 50px;
    background: #0f172a;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.editor-workspace {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.editor-sidebar {
    width: 250px;
    background: #0f172a;
    border-right: 1px solid #334155;
    display: flex;
    flex-direction: column;
}

.sidebar-panel {
    padding: 1rem;
    border-bottom: 1px solid #334155;
}

.panel-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.editor-main {
    flex: 1;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.editor-timeline {
    height: 250px;
    background: #1e293b;
    border-top: 1px solid #334155;
    display: flex;
    flex-direction: column;
}

/* Tools */
.tool-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #cbd5e1;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tool-btn.active {
    background: var(--phoenix-purple);
    color: white;
}

/* Inputs */
.control-group {
    margin-bottom: 1rem;
}

.control-label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.control-input {
    width: 100%;
    background: #334155;
    border: 1px solid #475569;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.canvas-wrapper {
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    background-image:
      linear-gradient(45deg, #222 25%, transparent 25%),
      linear-gradient(-45deg, #222 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #222 75%),
      linear-gradient(-45deg, transparent 75%, #222 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #333;
}

/* Layers */
.layer-item {
    padding: 0.5rem;
    background: #334155;
    margin-bottom: 2px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layer-item.active {
    border: 1px solid var(--phoenix-cyan);
}

.track-lane {
    height: 50px;
    background: #0f172a;
    border-bottom: 1px solid #334155;
    position: relative;
    margin-bottom: 1px;
}

.track-clip {
    position: absolute;
    height: 40px;
    top: 5px;
    background: var(--phoenix-purple);
    border-radius: 4px;
    overflow: hidden;
    cursor: grab;
    border: 1px solid rgba(255,255,255,0.2);
}

.track-clip.selected {
    border: 2px solid white;
}
