/* Color Scheme */
:root {
  --primary: #22d3ee;      /* Electric cyan (highlights) */
  --secondary: #a855f7;    /* Purple pop (accent) */
  --accent: #10b981;       /* Green for positivity */
  --dark: #0a0a0a;         /* True black (depth) */
  --light: #e2e8f0;        /* Light gray (text) */
  --gray: #475569;         /* Muted gray */
}

/* Body Background */
body {
    background-color: var(--dark);
    color: var(--light);
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Headers - Poppins Bold/SemiBold */
h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Buttons & Links - Inter Medium */
a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Header Styling - Hero Section with Artwork */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    gap: 30px;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(123, 219, 234, 0.651);
    background-image: url("cinematic-art-petals-on-water-desktop-wallpaper.jpg");
    background-size: fill;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: all;
    position: relative;
    min-height: 180px;
}

/* Overlay for text readability */
.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    z-index: 0;
}

.top-header > * {
    position: relative;
    z-index: 1;
}

.header-social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}


.logo {
    font-size: 50px;
}

.app-name {
    margin: 0;
    flex: 1;
    text-align: center;
}

.app-name h1 {
    margin: 0 0 8px 0;
    font-size: 44px;
    font-weight: 700;
    color: var(--light);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.name-icon {
    font-size: 48px;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
    }
    50% {
        text-shadow: 0 0 20px rgba(34, 211, 238, 0.9);
    }
}

.tagline {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

/* Intro Section - Visual Hero */
.intro-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-direction: row;
}

.intro-left {
    flex-shrink: 0;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-right h2 {
    font-size: 48px;
    margin: 0;
    color: var(--light);
    line-height: 1.2;
}

.intro-image-wrapper {
    background-size: top;
    background-position: top;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.intro-image {
    width: 300px;
    height: 500px;
    border-radius: 20px;
    border: 3px solid var(--primary);
    object-fit: cover;
    object-position: top;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
}

.pill-badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.15);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-description {
    font-size: 16px;
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    margin-top: 10px;
    padding: 14px 40px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.intro-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.intro-text h2 {
    font-size: 48px;
    margin: 0;
    color: var(--light);
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-container {
        gap: 30px;
    }

    .intro-image {
        width: 250px;
        height: 400px;
    }

    .intro-text h2 {
        font-size: 32px;
    }

    .circular-badge {
        width: 80px;
        height: 80px;
        top: -20px;
        left: -20px;
        font-size: 10px;
    }
}

/* Skills in Progress Section */
.skills-in-progress {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.skills-in-progress h2 {
    font-size: 36px;
    text-align: center;
    margin: 0 0 40px 0;
    color: var(--light);
}

.progress-skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-skill-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(34, 211, 238, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.progress-skill-item:hover {
    background: rgba(34, 211, 238, 0.1);
    padding-left: 25px;
}

.progress-skill-icon {
    font-size: 32px;
    flex-shrink: 0;
    display: block;
}

.skill-content h4 {
    font-size: 18px;
    color: var(--light);
    margin: 0 0 8px 0;
}

.skill-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}


/* About Me Section - New Format */
.about-me-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.about-me-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(34, 211, 238, 0.05) 100%);
    pointer-events: none;
}

.about-badge {
    display: inline-block;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
    position: relative;
    z-index: 1;
}

.about-me-section h2 {
    font-size: 32px;
    color: var(--light);
    margin: 10px 0 20px 0;
    position: relative;
    z-index: 1;
}

.about-me-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light);
    margin: 15px 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Featured Works Section */
.featured-works {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.featured-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.featured-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}

.featured-works h2 {
    font-size: 36px;
    margin: 0;
    color: var(--light);
}

.featured-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin: 10px 0 30px 0;
    line-height: 1.6;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.featured-card {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.featured-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.card-meta {
    padding: 0 25px;
    margin-top: 15px;
}

.card-date {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--light);
    margin: 25px 25px 8px 25px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin: 0 20px;
}

.card-description {
    font-size: 14px;
    color: var(--light);
    line-height: 1.5;
    margin: 10px 20px;
    flex: 1;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin: 0 20px 20px 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--light);
    gap: 5px;
}

/* Older Works Section */
.older-works {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.older-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.older-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}

.older-works h2 {
    font-size: 36px;
    margin: 0;
    color: var(--light);
}

.older-description {
    font-size: 16px;
    color: var(--gray);
    margin: 15px 0 40px 0;
    line-height: 1.6;
    max-width: 700px;
}

.older-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.older-card {
    background: rgba(34, 211, 238, 0.03);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.older-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.older-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--light);
    margin: 0 0 8px 0;
}

.older-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.older-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.older-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.older-card-link:hover {
    color: var(--light);
}


/* Info Section - Side by Side */
.info-section {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-block {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    color: var(--primary);
    font-size: 20px;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.info-block p {
    color: var(--light);
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.6;
}

/* Skills Section - Grid of Cards */
.skills-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.skills-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.skill-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    width: 200px;
    height: 200px;
    flex-basis: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* First 3 cards in top row */
.skill-card:nth-child(1),
.skill-card:nth-child(2),
.skill-card:nth-child(3) {
    margin-bottom: 20px;
}

/* 4th and 5th cards - bottom row, side by side */
.skill-card:nth-child(4),
.skill-card:nth-child(5) {
    margin-top: 20px;
}

.skill-card:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5), 0 0 20px rgba(34, 211, 238, 0.3);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
    transition: all 0.3s;
}

.skill-card:hover .skill-icon {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    transform: scale(1.1);
}

.skill-card h4 {
    color: var(--primary);
    font-size: 18px;
    margin: 8px 0 3px 0;
}

.skill-card p {
    color: var(--gray);
    font-size: 12px;
    margin: 0;
}

/* Footer Styling */
.footer {
    border-top: 2px solid var(--primary);
    padding: 50px 20px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
    background-image: url("cinematic-art-petals-on-water-desktop-wallpaper.jpg");
    background-size: fill;
    background-repeat: no-repeat;
    background-position: bottom;
    background-attachment: all;
    position: relative;
}

/* Overlay for text readability */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    z-index: 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-size: 28px;
    color: var(--primary);
    margin: 0 0 20px 0;
    text-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    font-weight: 700;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.footer-nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 10px;
}

.footer-nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.footer-message {
    margin: 20px 0;
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}
