/* RECIPE  ------------------------------------------------------------------ */

@font-face {
    font-family: 'Raleway-Regular';
    src: url('../fonts/Raleway-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('../fonts/Raleway-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('../fonts/Raleway-Medium.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway-SemiBold';
    background: #f0f0f0;
    min-height: 100vh;
    padding-top: 100px;
}

.container {
    display: flex;
    padding: 20px 20px 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.sidebar h2 {
    margin-bottom: 50px;
    text-align: center;
}

.category-btn {
    font-family: 'Raleway-Medium';
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 10px;
    border: none;
    background: #fff1e0;
    color: #333;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;        
}        

.category-btn:hover {
    background: #faa236;
    color: white;
    transform: translateX(5px);
}

.category-btn.active {
    background: #faa236;
    color: white;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 0 30px;
    overflow-y: auto;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.category-title {
    color: #faa236;
    font-size: 18px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 0;
    }
    
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    
    .sidebar h2 {
        margin-bottom: 20px;
    }

    .category-btn {
        display: inline-block;
        width: auto;
        margin-right: 8px;
        margin-bottom: 10px;
        padding: 12px 15px;
        font-size: 14px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .video-title {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .video-description {
        display: none;
    }
    
    .header {
        text-align: center;
        padding: 0px 25px 25px 25px;
    }
    
    body {
        padding-top: 60px;
    }
}

.no-videos {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    color: #666;
    font-size: 18px;
}