/* Creative Designer Portfolio Styles */

/* CSS Variables - Design System */
:root {
    /* Core Background & Text */
	 --background: hsl(220, 15%, 6%);
		--foreground: hsl(210, 40%, 98%);

    /* Card System */
    --card: hsl(220, 15%, 9%);
    --card-foreground: hsl(210, 40%, 98%);

    /* Brand Colors */
    --primary: hsl(260, 84%, 65%);
    --primary-foreground: hsl(210, 40%, 98%);
    --primary-glow: hsl(280, 85%, 75%);

    /* Secondary Brand Colors */
    --secondary: hsl(220, 15%, 12%);
    --secondary-foreground: hsl(210, 40%, 98%);

    /* Muted System */
    --muted: hsl(220, 15%, 12%);
    --muted-foreground: hsl(215, 20%, 65%);

    /* Accent System */
    --accent: hsl(240, 85%, 70%);
    --accent-foreground: hsl(210, 40%, 98%);

    /* Status Colors */
    --success: hsl(142, 71%, 55%);
    --warning: hsl(45, 93%, 58%);

    /* UI Elements */
    --border: hsl(220, 15%, 15%);
    --input: hsl(220, 15%, 12%);

    /* Design System Variables */
    --radius: 0.75rem;

    /* Custom Brand Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(260, 84%, 65%), hsl(240, 85%, 70%));
    --gradient-secondary: linear-gradient(135deg, hsl(280, 85%, 75%), hsl(260, 84%, 65%));
    --gradient-hero: linear-gradient(135deg, hsl(260, 84%, 65%) 0%, hsl(240, 85%, 70%) 50%, hsl(280, 85%, 75%) 100%);

    /* Shadows */
    --shadow-glow: 0 0 40px hsla(260, 84%, 65%, 0.3);
    --shadow-card: 0 10px 30px -10px hsla(220, 15%, 0%, 0.5);
    --shadow-elevated: 0 20px 60px -10px hsla(260, 84%, 65%, 0.2);

    /* Glass Morphism */
    --glass-bg: hsla(220, 15%, 12%, 0.8);
    --glass-border: hsla(210, 40%, 98%, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--background) 0%, hsl(230, 15%, 8%) 100%);
    color: var(--foreground);
    line-height: 1.6;
}

/* Typography */
.font-display, h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.text-foreground {
    color: var(--foreground);
}

.text-success {
    color: var(--success);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glow {
    box-shadow: var(--shadow-glow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Background Blur Effects */
.background-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
}

.blur-1 {
    top: 2.5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.blur-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 15rem;
    height: 15rem;
    background: var(--gradient-secondary);
    opacity: 0.1;
}

.blur-left-contact {
    top: 5rem;
    left: 2.5rem;
    width: 20rem;
    height: 20rem;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.blur-right-contact {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--gradient-secondary);
    opacity: 0.1;
}

.blur-footer-left {
    top: 0;
    left: 33%;
    width: 24rem;
    height: 24rem;
    background: var(--gradient-primary);
    opacity: 0.05;
}

.blur-footer-right {
    bottom: 0;
    right: 33%;
    width: 20rem;
    height: 20rem;
    background: var(--gradient-secondary);
    opacity: 0.05;
}

/* Section Headers */
.section-label {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.2;
}

.section-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.section-center-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.btn i {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.btn:last-child i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.btn-hero {
    background: var(--gradient-hero);
    color: white;
    border: 1px solid hsla(210, 40%, 98%, 0.2);
    box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.btn-ghost {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--foreground);
}

.btn-ghost:hover {
    background: hsla(260, 84%, 65%, 0.1);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        hsla(220, 15%, 6%, 0.95) 0%, 
        hsla(220, 15%, 6%, 0.8) 50%, 
        hsla(220, 15%, 6%, 0.95) 100%);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.floating-2 {
    bottom: 8rem;
    right: 4rem;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-secondary);
    opacity: 0.1;
    animation-delay: 1s;
}

.floating-3 {
    top: 50%;
    left: 5rem;
    width: 4rem;
    height: 4rem;
    background: hsla(240, 85%, 70%, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.welcome-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(210, 40%, 98%, 0.8);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 24rem;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(260, 84%, 65%, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    space-y: 2rem;
}

.section-header {
    margin-bottom: 2rem;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.highlight-content h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 0.125rem;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--primary));
    opacity: 0.5;
}

.timeline-items {
    space-y: 3rem;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-dot {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    color: white;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.timeline-content:hover {
    box-shadow: var(--shadow-elevated);
}

.timeline-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.timeline-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover .timeline-info h3 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.timeline-institution {
    color: var(--primary);
    font-weight: 500;
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: hsla(260, 84%, 65%, 0.1);
    color: var(--primary);
    border-radius: 9999px;
    margin-top: 0.5rem;
    display: inline-block;
}

.timeline-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--success);
    border-radius: 50%;
}

.timeline-status span {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 500;
}

.education-footer {
    margin-top: 4rem;
    text-align: center;
}

.education-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    color: var(--foreground);
    font-weight: 500;
}

.education-badge i {
    color: var(--primary);
}
/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.skill-category {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-category:hover {
    box-shadow: var(--shadow-elevated);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-icon {
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-glow);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
}

.skills-list {
    space-y: 1.5rem;
}

.skill-item {
    space-y: 0.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-info span:first-child {
    font-weight: 500;
    color: var(--foreground);
}

.skill-percentage {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: bold;
}

.skill-bar {
    position: relative;
    height: 0.5rem;
    background: var(--muted);
    border-radius: 9999px;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 9999px;
    transition: transform 1s ease-out;
}

.skills-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-card:hover {
    box-shadow: var(--shadow-glow);
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-value {
    transform: scale(1.1);
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}


/* Profile Section */
.profile-section {
    position: relative;
}

.profile-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.profile-decoration {
    position: absolute;
    border-radius: 50%;
}

.decoration-1 {
    top: -2.5rem;
    right: -2.5rem;
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: glow-pulse 2s ease-in-out infinite;
}

.decoration-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-secondary);
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.profile-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elevated);
    position: relative;
    z-index: 10;
}

.profile-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    position: relative;
    background: var(--gradient-hero);
    box-shadow: var(--shadow-glow);
    animation: glow-pulse 2s ease-in-out infinite;
    overflow: hidden;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.profile-details {
    space-y: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.detail-row span:last-child {
    color: var(--foreground);
    font-weight: 500;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-info {
    space-y: 2rem;
}

.contact-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-header p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(0.5rem);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.contact-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-content h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(260, 84%, 65%, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    space-y: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 20rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    space-y: 0.5rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-column ul li:not(a) {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow-pulse {
    0%, 100% { 
        box-shadow: var(--shadow-glow);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 60px hsla(260, 84%, 65%, 0.5);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-30px);
    }
    70% {
        transform: translateX(-50%) translateY(-15px);
    }
    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links 
	{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Portfolio Section Styles */
.blur-portfolio-left {
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    opacity: 0.1;
}

.blur-portfolio-right {
    bottom: 20%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: var(--accent);
    opacity: 0.1;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.filter-btn:hover {
    background: hsla(260, 84%, 65%, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.portfolio-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        column-count: 3;
    }
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.portfolio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--primary-glow);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        hsla(220, 15%, 6%, 0.8) 0%, 
        transparent 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-buttons {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.portfolio-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--foreground);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.portfolio-btn-icon {
    padding: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-btn-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.portfolio-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-header h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-icon {
    opacity: 1;
}

.portfolio-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: hsla(260, 84%, 65%, 0.1);
    color: var(--primary);
    border-radius: 9999px;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-card {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    max-width: 32rem;
}

.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}