/* מערכת ניהול אולפן הקלטות - עיצוב ראשי */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Discovery_Fs', 'Arial', sans-serif;
    direction: rtl;
    background-color: #f8f8f8;
    color: #742551;
}

/* Font Faces - Discovery_Fs */
@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 100;
    src: url('../fonts/Discovery_Fs-Ultra-light.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Ultra-light.woff') format('woff');
}

@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 300;
    src: url('../fonts/Discovery_Fs-Light.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Light.woff') format('woff');
}

@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 400;
    src: url('../fonts/Discovery_Fs-Regular.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 500;
    src: url('../fonts/Discovery_Fs-Medium.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 600;
    src: url('../fonts/Discovery_Fs-Demi-bold.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Demi-bold.woff') format('woff');
}

@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 700;
    src: url('../fonts/Discovery_Fs-Bold.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Discovery_Fs';
    font-weight: 900;
    src: url('../fonts/Discovery_Fs-Black.woff2') format('woff2'),
         url('../fonts/Discovery_Fs-Black.woff') format('woff');
}

/* Color Variables */
:root {
    --primary-purple: #742551;
    --primary-teal: #215f66;
    --primary-orange: #ffbf66;
    --primary-orange-light: #ffc97f;
    --gray-light: #f8f8f8;
    --gray-medium: #f7f7f7;
    --gray-border: #b5b5b5;
    --gray-input: #e5e5e5;
    --white: #ffffff;
    --red: #ee0004;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-white {
    color: var(--white);
}

.text-purple {
    color: var(--primary-purple);
}

.text-teal {
    color: var(--primary-teal);
}

.bg-white {
    background-color: var(--white);
}

.bg-purple {
    background-color: var(--primary-purple);
}

.bg-teal {
    background-color: var(--primary-teal);
}

.bg-orange {
    background-color: var(--primary-orange);
}

.rounded {
    border-radius: 30px;
}

.rounded-small {
    border-radius: 20px;
}

.shadow {
    box-shadow: 0px 4px 14.9px 0px var(--primary-orange-light);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Discovery_Fs', sans-serif;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-orange);
    color: var(--primary-purple);
}

.btn-outline {
    background-color: transparent;
    border: 3px solid var(--primary-orange-light);
    color: var(--white);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    background-color: var(--gray-input);
    font-family: 'Discovery_Fs', sans-serif;
    font-size: 20px;
    color: var(--primary-purple);
    direction: rtl;
}

input:focus,
textarea:focus {
    outline: none;
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    height: 110px;
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 85px;
    width: 140px;
}

/* Sidebar */
.sidebar {
    background-color: #672148;
    width: 264px;
    border-radius: 30px 0 0 30px;
    padding: 34px 32px;
}

.sidebar-item {
    display: block;
    background-color: #742551;
    height: 57px;
    border-radius: 30px 0 0 30px;
    margin-bottom: 7px;
    padding: 9px 0;
    text-decoration: none;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background-color: var(--white);
    color: var(--primary-purple);
}

.sidebar-item:hover {
    opacity: 0.9;
}

.sidebar-item-icon {
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

/* Main Content */
.main-content {
    background-color: var(--white);
    border-radius: 30px;
    padding: 32px 24px;
    min-height: calc(100vh - 150px);
}

/* Table */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-header {
    background-color: var(--gray-medium);
    height: 64px;
    border-radius: 30px;
    padding: 22px 25px;
}

.table-row {
    border: 1px solid var(--gray-border);
    height: 64px;
    border-radius: 30px;
    margin-bottom: 12px;
    padding: 11px 20px;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0px 4px 14.9px 0px rgba(0, 0, 0, 0.1);
}

/* Gradients */
.gradient-purple-teal {
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
}

.gradient-overlay {
    background: linear-gradient(180deg, rgba(116, 37, 81, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .sidebar {
        width: 100%;
        border-radius: 0;
    }
}

