/* Global Styles */
:root {
    --primary-color: #5D50C4; /* Deep Purple */
    --secondary-color: #E6E0F8; /* Light Lavender */
    --accent-color: #FF5A5F; /* Coral Red for accents/buttons */
    --text-color: #333333;
    --background-color: #f7f7f7;
    --card-background: #ffffff;
    --border-radius: 12px; /* Slightly larger radius for softer look */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    background: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #ddd;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: white;
}

section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #aaa;
    margin-top: 40px;
}

/* Clickable-text */
.clickable-text {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}
