:root {
    --text-color: #ffffff;
    --grey: #1a1a1a;
    --background-color: #2c003e;
    --yellow: #FFD700;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

body {
    background: var(--background-color); 
    background-attachment: fixed;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background: var(--grey);
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--grey);
    color: var(--yellow);
    border-radius: 10px;
}

h2 {
    padding-top: 0.5rem;
    color: var(--yellow);
}

header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

header p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
}

section {
    backdrop-filter: blur(10px);
    background: var(--grey);
    border-radius: 10px;
}

.about {
    padding-left: 1rem;
    padding-bottom: 0.25rem; 
}


.about p {
    padding-left: 1rem;
}


.projects h2{
    padding-left: 1rem;
}


.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.project-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0);
    display: flex;
    flex-direction: column; 
    gap: 1rem;
    align-items: center;
}

.project-image {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    height: 100%;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    display: block
}

.project-content h3 {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.project-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--yellow); 
    color: var(--grey);
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px #000000;
}

.contact-info{
    padding-top: 0rem;
    padding-bottom: 0.25rem;
}

.contact-info h2 {
    padding-left: 1rem
}

.contact-info p {
    padding-left: 1rem;
}

.contact-info a {
    color: var(--yellow);
    text-decoration: none;
}

.contact-info a:hover {
    color: #daa520;
    text-decoration: underline;
}


