/* Variables */
:root {
    --primary-color: #1e1e2f;
    --accent-color: #ff4081;
    --text-color: #e0e0e0;
    --hover-color: #ff80ab;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
header {
    background-color: #121212;
    padding: 20px 0;
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 10px;
}

/* Main Content */
main {
    padding: 20px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.project-card {
    background-color: #2c2c3e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 15px;
}

.project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-redirect {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-redirect:hover {
    background-color: var(--hover-color);
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Footer */
footer {
    background-color: #121212;
    color: var(--text-color);
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
