* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #faf3f5, #f5f5f7);
    min-height: 100vh;
}

/* Navigation Styles */
.nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.logo span {
    color: #e9b7ce;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e9b7ce;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #e9b7ce;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Projects container styles */
.projects-container {
    max-width: 1200px;
    margin: 100px auto 50px;
}
.projects-header {
    text-align: center;
    padding: 3rem 0;
    background: rgba(233, 183, 206, 0.1);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.projects-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2c3e50, #e9b7ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-subtitle {
    color: #5d6d7e;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Project grid and cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9b7ce;
    display: inline-block;
}

.project-content p {
    color: #666;
    margin-bottom: 1rem;
}

.project-details ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.project-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.project-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
    transition: background-color 0.3s ease;
}

.tech-tag:hover {
    background: #e0e0e0;
}

/* Footer styles */
.footer-content {
    text-align: center;
    padding: 2rem;
    background: white;
    margin-top: 2rem;
}

.social-links {
    margin: 1rem 0;
}

.social-icon {
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

