/* HOME PAGE STYLES */

/* Hero Section */
.hero {
    padding: 2rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.profile-image {
    width: 199.5px;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.profile-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

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

/* About Section */
.about {
    margin-bottom: 2.5rem;
    padding: 0px 15px 0px 0px;
}

.about p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.projects-link a {
    text-decoration: none;
    font-weight: 700;
    color: inherit;
    position: relative;
}

.projects-link a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding-top: 1rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a1a1a, #666);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: #1a1a1a;
}

.social-links a:hover::before {
    width: 100%;
}

/* Divider */
.divider {
    height: 1px;
    background: #e5e5e5;
    margin: 3rem 0;
}

/* Featured Work Section */
.featured {
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
}

/* Featured Projects - Single Column Layout */
.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Featured Project Cards (Dark Theme - Full Width) */
.featured-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
    pointer-events: none;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-card-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-card-right {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.featured-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-card-right img {
    transform: scale(1.05);
}

.featured-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.featured-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.featured-description {
    font-size: 1rem;
    color: #d4d4d4;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.featured-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.featured-tech-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.featured-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.featured-link:hover {
    gap: 0.8rem;
}

.featured-link:hover::after {
    transform: translateX(4px);
}

/* View All Link */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: gap 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
}

.view-all-link:hover {
    gap: 0.8rem;
    border-color: #1a1a1a;
}

/* Status Banner */
.status {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.status-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.status-text p {
    font-size: 0.9rem;
    color: #d4d4d4;
}

.cta-button {
    background: white;
    color: #1a1a1a;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 1rem 0 2rem;
    }

    .profile-image {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 1;
        align-self: center;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .featured-card {
        padding: 1.5rem;
    }

    .featured-title {
        font-size: 1.3rem;
    }

    .featured-card-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-card-right {
        width: 100%;
        height: 180px;
        order: -1;
    }

    .status {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .featured-card {
        padding: 1.25rem;
    }

    .featured-tech-stack {
        gap: 0.4rem;
    }

    .featured-card-right {
        height: 160px;
    }
}