﻿/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

/* Basic styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

header {
    background: #c9fcff;
    color: #333;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #333 3px solid;
}

header a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

h1, h2, h3 {
    font-weight: 600;
}

/* Header content styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 24px;
    margin-left: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0077B5; /* LinkedIn blue */
}

.social-icons a:last-child:hover {
    color: #211F1F; /* GitHub dark */
}

/* Navigation */
nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #0077B5;
}

/* Sections */
section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    animation: fadeIn 1s ease-in;
}

/* Projects */
.project {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.project h3 {
    margin-top: 0;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    color: #0077B5;
    text-decoration: none;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Responsive design */
@media(max-width: 768px) {
    .container {
        width: 95%;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}