/* General Layout */
body {
    font-family: 'Roboto', sans-serif; /* Use a clean, modern font */
    color: #eaeaea; /* Light gray text color */
    background-color: #1e1e1e; /* Dark background color */
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3 {
    color: #ffcc00; /* Bright gold color for headings */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    background-color: #ffcc00; /* Gold button background */
    color: #1e1e1e; /* Dark text color for contrast */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #ffc107; /* Slightly brighter gold on hover */
}

/* Forms */
input[type="text"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444; /* Darker border for contrast */
    border-radius: 5px;
    background-color: #2b2b2b; /* Slightly lighter background */
    color: #eaeaea; /* Light text color */
    font-size: 1em;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #ffcc00; /* Gold border on focus */
}

/* Tutorial List */
.tutorial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Center tutorials */
    padding: 20px;
}
.tutorial-item {
    background-color: #2b2b2b; /* Slightly lighter background for cards */
    padding: 15px;
    border: 1px solid #444; /* Dark border for separation */
    border-radius: 5px;
    width: calc(33.333% - 20px); /* Three items per row with spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tutorial-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow on hover */
}
.tutorial-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffcc00; /* Match heading color */
}
.tutorial-item p {
    font-size: 1em;
    color: #ccc; /* Slightly lighter text color */
    margin-bottom: 15px;
}
.tutorial-item video {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #444; /* Dark border around video */
}

/* Responsive Design */
@media (max-width: 768px) {
    .tutorial-item {
        width: calc(50% - 20px); /* Two items per row for smaller screens */
    }
}

@media (max-width: 480px) {
    .tutorial-item {
        width: 100%; /* Full width for mobile */
    }
}
