/* a_Portfolio.css */

/* Basic Reset & Modern Look */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
}

/* Header / Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-weight: 300;
    opacity: 0.9;
}

/* Section Styling */
.section {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

h2 {
    border-left: 5px solid #fff;
    padding-left: 15px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Skills Grid */
.skills-grid {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.skill-category ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-category li {
    background: #e1f5fe;
    color: #0277bd;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Project Cards */
.project-card {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    color: #4ca1af;
    margin-bottom: 10px;
}

.project-card strong {
    color: #666;
    font-size: 0.9rem;
}

/* Download Button */
a[download] {
    display: block;
    width: fit-content;
    margin: 40px auto;
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

a[download]:hover {
    background: #4ca1af;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .skill-category ul { flex-direction: column; }
}
