@charset "utf-8";
/* CSS Document */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("/mouse\ icon/cursor.png"),auto !important;
}

:root {
    --background: hsl(220, 35%, 6%);
    --foreground: hsl(0, 0%, 88%);
    --card: hsl(220, 30%, 8%);
    --card-foreground: hsl(0, 0%, 88%);
    --primary: hsl(190, 100%, 50%);
    --secondary: hsl(320, 100%, 50%);
    --muted: hsl(220, 20%, 15%);
    --muted-foreground: hsl(0, 0%, 63%);
    --border: hsl(220, 20%, 20%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.neon-glow {
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.glow-border {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.glow-card {
    background: rgba(var(--card), 0.5);
    border: 1px solid var(--muted);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glow-card:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.gradient-button {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gradient-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 48px;
}

.center {
    text-align: center;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 15, 28, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, var(--card) 100%);
}

.floating-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
}

.floating-1 {
    top: 80px;
    left: 80px;
    width: 128px;
    height: 128px;
    background: var(--primary);
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 240px;
    right: 128px;
    width: 96px;
    height: 96px;
    background: var(--secondary);
    animation: float 6s ease-in-out infinite 2s;
}

.floating-3 {
    bottom: 160px;
    left: 33%;
    width: 160px;
    height: 160px;
    background: var(--primary);
    animation: float 6s ease-in-out infinite 4s;
    opacity: 0.05;
    filter: blur(80px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeIn 0.6s ease-out;
}

.hero-title {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(var(--card), 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 520px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(255, 0, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.emoji {
    font-size: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.skill-card {
    padding: 32px 24px;
    text-align: center;
    background: rgba(var(--card), 0.5);
    border: 1px solid var(--muted);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.skill-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-title {
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.skill-description {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: rgba(var(--card), 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.portfolio-item {
    min-height: 300px;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--card), 0.5);
    border: 1px solid var(--muted);
}

.portfolio-item:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.photoshop-bg {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.2), rgba(255, 192, 203, 0.2));
}

.illustrator-bg {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 0, 0, 0.2));
}

.figma-bg {
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.2), rgba(0, 128, 128, 0.2));
}

.maya-bg {
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
}

.portfolio-content {
    text-align: center;
}

.portfolio-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-title {
    text-shadow: 0 0 10px white;
}

.portfolio-subtitle {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
}




/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--card);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--blog-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-preview {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.blog-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.blog-read-more::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.blog-read-more:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: rgba(var(--background), 0.95);
    margin: 5% auto;
    padding: 32px;
    width: 90%;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: var(--foreground);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: var(--primary);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 16px;
    padding: 16px;
}

.gallery-image {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.1);
}



/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 24px;
    background: rgba(var(--card), 0.5);
    border: 1px solid var(--muted);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(0, 229, 255, 0.5);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--muted-foreground);
}

.contact-form-container {
    padding: 24px;
    background: rgba(var(--card), 0.5);
    border: 1px solid var(--muted);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input, .form-textarea {
    background: rgba(var(--background), 0.5);
    border: 1px solid var(--muted);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.full-width {
    width: 100%;
    padding: 24px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: rgba(var(--background), 0.95);
    border-top: 1px solid var(--muted);
    padding: 32px 0;
}

.footer-text {
    text-align: center;
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section,
    .skills-section,
    .portfolio-section,
    .contact-section {
        padding: 60px 0;
    }
}

.socials-link {
    padding: 1em;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .gradient-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .modal-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
}

