:root {
    --primary-color: #d63384; /* Pink */
    --secondary-color: #f8d7da; /* Light Pink */
    --text-color: #333;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #fffafb;
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

h1 {
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 2px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1490750967868-58cb75079ed6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content {
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.skill-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: -50px; /* Overlap hero */
    position: relative;
    text-align: center;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    color: #888;
    font-size: 0.9rem;
}
