cat > src/css/style.css << 'EOF'
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "comic Neue";
    background:linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(234, 213, 245, 1) 50%, rgba(255, 255, 255, 1) 100%);
    min-height: 175vh;
}

header {
    background:linear-gradient(90deg,rgba(142, 100, 181, 1) 0%, rgba(215, 175, 237, 1) 22%, rgba(252, 250, 255, 1) 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(138, 108, 189, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 8px rgba(138, 108, 189, 0.3);
    object-fit: contain;
    background: linear-gradient(90deg,rgba(184, 164, 217, 1) 0%, rgba(163, 82, 235, 1) 51%, rgba(86, 62, 135, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
}
.profile-image img {
        width: 80px;
        height: 80px;
        clip-path: circle(50%);
        }


.site-title {
    font-size: 36px;
    color: #5a3d7f;
    font-weight: 600;
    font-family: "miniver";
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #5a3d7f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #3d2456;
    transform: translateY(-2px);
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(138, 108, 189, 0.15);
    margin-bottom: 30px;
}

h1 {
    color: #5a3d7f;
    margin-bottom: 20px;
    font-size: 38px;
}

p {
    color: #6b5786;
    line-height: 1.6;
    font-size: 20px;
}

p a {
        text-decoration: underline dotted;
        color: #5a3d7f;
        font-weight: 700;
}

p a:hover {
        text-decoration: underline;
        color: black;
}

.gallery-section {
    max-width: 1200px;
    margin: 40px auto 30px;
    padding: 0 20px;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(138, 108, 189, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(138, 108, 189, 0.3);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e9e4f7 0%, #d4c5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

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

.portfolio-item {
    text-decoration: none;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(138, 108, 189, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    object-fit: contain;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(138, 108, 189, 0.3);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e9e4f7 0%, #d4c5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    object-fit: contain;
}

.portfolio-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

.portfolio-caption {
    padding: 20px;
    text-align: center;
}

.portfolio-caption h3 {
    color: #5a3d7f;
    font-size: 20px;
    margin-bottom: 8px;
}

.portfolio-caption p {
    color: #6b5786;
    font-size: 14px;
    margin: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.email-btn {
    background: linear-gradient(135deg, #8a6cbd 0%, #7a5cad 100%);
    color: white;
}

.facebook-btn {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    color: white;
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .social-btn svg {
        width: 26px;
        height: 26px;
    }
}
 footer {
    background:linear-gradient(90deg,rgba(142, 100, 181, 1) 0%, rgba(215, 175, 237, 1) 22%, rgba(252, 250, 255, 1) 100%);
    color: #5a3d7f;
    padding: 30px 20px;
    margin-top: 40px;
    box-shadow: 0 -2px 10px rgba(138, 108, 189, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: #5a3d7f;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #5a3d7f;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3d2456;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    color: #6b5786;
}
.projects-table th, .projects-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(138,108,189,0.2);
}
.projects-table th {
    color: #5a3d7f;
    font-weight: 700;
}
.projects-table tr:last-child td { border-bottom: none; }
.projects-table tbody tr:hover { background: rgba(255,255,255,0.5); }
EOF
