/* assets/css/style.css */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Space Grotesk', sans-serif; background: #0a0e1a; color: #f1f5f9; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }

/* ===== GOLD RING ===== */
.gold-ring {
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24, #f59e0b);
    background-size: 300% 300%;
    animation: goldShine 3s ease infinite;
    display: inline-block;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}
@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.profile-media {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #0a0e1a;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 3rem;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(120deg, #00669b, #2271b1);
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.hero-name {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #60a5fa, #c084fc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}
.hero-title {
    font-size: 1.3rem;
    color: #94a3b8;
    margin: 0.3rem 0 1rem;
}
.typing-wrapper {
    border-right: 3px solid #3b82f6;
    padding-right: 6px;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink {
    50% { border-color: transparent; }
}
.hero-bio {
    color: #cbd5e1;
    max-width: 600px;
    font-size: 1.05rem;
}

/* Sections */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    border-left: 5px solid #3b82f6;
    padding-left: 1.2rem;
}

/* Skills */
.skills-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.skill-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(71, 85, 105, 0.5);
    transition: all 0.3s;
}
.skill-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}
.skill-icon { font-size: 2.2rem; display: block; margin-bottom: 0.5rem; }
.skill-name { font-weight: 600; font-size: 1.1rem; }
.skill-desc { font-size: 0.85rem; color: #94a3b8; }
.skill-bar {
    height: 6px;
    background: #1e293b;
    border-radius: 10px;
    margin-top: 0.8rem;
    overflow: hidden;
}
.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #a78bfa);
    border-radius: 10px;
    transition: width 1.2s ease;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.project-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(71, 85, 105, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}
.project-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
}
.project-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: #1e293b;
}
.project-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.3rem; }
.project-desc { color: #94a3b8; font-size: 0.95rem; }
.project-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
.tech-tag {
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid #334155;
}
.click-hint { display: block; font-size: 0.7rem; color: #6b7280; margin-top: 0.8rem; }

/* Project Details */
.project-details {
    display: none;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.project-details.active { display: block; }
.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.details-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.close-details {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}
.close-details:hover { color: #f87171; transform: rotate(90deg); }
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.details-item {
    background: rgba(0,0,0,0.3);
    border-radius: 1rem;
    padding: 1rem;
}
.details-item h4 { color: #94a3b8; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.details-item p { color: #e2e8f0; }
.details-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.details-tech .tech-tag { background: rgba(59, 130, 246, 0.2); border-color: #3b82f6; }

/* Testimonial */
.testimonial-slider {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1.8rem;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}
.testimonial-text { font-size: 1.1rem; font-style: italic; margin-bottom: 0.8rem; }
.testimonial-author { color: #94a3b8; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.dot {
    width: 10px;
    height: 10px;
    background: #4b5563;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    background: #3b82f6;
    width: 24px;
    border-radius: 10px;
}

/* Contact Form */
.contact-form {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1.8rem;
    padding: 2rem;
    margin: 1.5rem 0;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; color: #94a3b8; margin-bottom: 0.3rem; font-size: 0.9rem; }
.required { color: #ef4444; }
input, textarea, select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid #334155;
    border-radius: 1.2rem;
    color: #f1f5f9;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.submit-btn:hover { transform: scale(1.03); box-shadow: 0 0 25px rgba(59, 130, 246, 0.4); }
.form-status { margin-top: 1rem; font-size: 0.9rem; color: #94a3b8; }

/* Social */
.social-links { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.social-btn {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 0.7rem 1.5rem;
    border-radius: 60px;
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    border: 1px solid #334155;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.social-btn:hover { background: #1e293b; border-color: #3b82f6; transform: translateY(-3px); }

footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.8rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 1.5rem; }
    .hero-name { font-size: 2.2rem; }
    .hero-title { font-size: 1.1rem; }
    .section-title { font-size: 1.5rem; }
    .details-grid { grid-template-columns: 1fr; }
    .skills-showcase { grid-template-columns: repeat(2, 1fr); }
    .gold-ring .profile-media { width: 120px; height: 120px; }
}
@media (max-width: 480px) {
    .skills-showcase { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .skill-card { padding: 1rem; }
    .projects-grid { grid-template-columns: 1fr; }
}