/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0f14;
    color: #d0ffd6;
    line-height: 1.6;
    overflow-x: hidden;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: rgba(10, 15, 20, 0.95);
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('./images/IMG-20250726-WA0037.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 80px 0 #00ffae33 inset;
    border-bottom: 2px solid #00ffae44;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 20, 0.45); /* Lower opacity for Matrix effect */
    z-index: 1;
    border-bottom: 2px solid #00ffae44;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #d0ffd6;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.2s cubic-bezier(.77,0,.18,1) 0.3s forwards;
    text-shadow: 0 0 12px #00ffae99, 0 0 2px #000;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: #00ffae;
    text-shadow: 0 0 18px #00ffae, 0 0 2px #000;
    transition: color 0.3s;
}
.hero-title:hover {
    color: #fff;
    text-shadow: 0 0 24px #00ffae, 0 0 8px #00ffae;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: #d0ffd6;
    text-shadow: 0 0 8px #00ffae99;
    letter-spacing: 0.02em;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00ffae;
    text-align: center;
    letter-spacing: 0.04em;
    text-shadow: 0 0 16px #00ffae99, 0 0 2px #000;
    position: relative;
    transition: color 0.3s, text-shadow 0.3s;
    cursor: pointer;
}
.section-title:hover {
    color: #fff;
    text-shadow: 0 0 32px #00ffae, 0 0 8px #00ffae;
}

/* Section Background Overlays for Matrix Visibility */
.about, .skills, .vision, .contact {
    background: rgba(10, 15, 20, 0.60); /* Consistent low opacity for Matrix effect */
    border-top: 2px solid #00ffae44;
    border-bottom: 2px solid #00ffae44;
}

.hero-overlay {
    background: rgba(10, 15, 20, 0.45); /* Lower opacity for Matrix effect */
    z-index: 1;
    border-bottom: 2px solid #00ffae44;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(.77,0,.18,1);
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    box-shadow: 0 0 24px #00ffae22;
    padding: 2rem 1.5rem;
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0ffd6;
    font-weight: 400;
    text-shadow: 0 0 4px #00ffae33;
}

/* Skills Section */
.skills {
    background: #10181f;
    border-top: 2px solid #00ffae44;
    border-bottom: 2px solid #00ffae44;
}
.skills-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(.77,0,.18,1);
    background: rgba(0,0,0,0.18);
    border-radius: 12px;
    box-shadow: 0 0 24px #00ffae22;
    padding: 2rem 1.5rem;
}
.skills-content.animate {
    opacity: 1;
    transform: translateY(0);
}
.skills-main {
    color: #00ffae;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px #00ffae99;
    font-weight: 500;
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.skills-list li {
    background: rgba(0,255,174,0.08);
    color: #00ffae;
    border: 1.5px solid #00ffae55;
    border-radius: 8px;
    padding: 0.7rem 1.3rem;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 0 8px #00ffae33;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    text-shadow: 0 0 6px #00ffae44;
    position: relative;
    overflow: hidden;
}
.skills-list li:hover {
    background: #00ffae;
    color: #10181f;
    box-shadow: 0 0 24px #00ffae, 0 0 8px #00ffae;
    transform: scale(1.08) rotate(-2deg);
}

/* Vision Section */
.vision {
    background: #0a0f14;
    border-top: 2px solid #00ffae44;
    border-bottom: 2px solid #00ffae44;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(.77,0,.18,1);
    background: rgba(0,0,0,0.18);
    border-radius: 12px;
    box-shadow: 0 0 24px #00ffae22;
    padding: 2rem 1.5rem;
}

.vision-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0ffd6;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 0 4px #00ffae33;
}

/* Contact Section */
.contact {
    background: #10181f;
    border-top: 2px solid #00ffae44;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(.77,0,.18,1);
    background: rgba(0,0,0,0.18);
    border-radius: 12px;
    box-shadow: 0 0 24px #00ffae22;
    padding: 2rem 1.5rem;
}

.contact-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.contact-link {
    color: #00ffae;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 8px #00ffae99;
    position: relative;
}
.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 24px #00ffae, 0 0 8px #00ffae;
}
/* Icon Improvements */
.contact-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,255,174,0.10);
    color: #00ffae;
    font-size: 1.5rem;
    box-shadow: 0 0 12px #00ffae55, 0 0 2px #000;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    border: 2px solid #00ffae99;
    text-shadow: 0 0 8px #00ffae99;
    position: relative;
    overflow: hidden;
}
.contact-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}
.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 60%, #00ffae 100%);
    color: #fff;
    border: 2px solid #25D366;
    box-shadow: 0 0 18px #25D36699, 0 0 2px #000;
}
.contact-icon.instagram {
    background: linear-gradient(135deg, #405DE6 0%, #5851DB 40%, #833AB4 70%, #C13584 90%, #E1306C 100%);
    color: #fff;
    border: 2px solid #C13584;
    box-shadow: 0 0 18px #C1358499, 0 0 2px #000;
}
.contact-icon:hover {
    background: #00ffae;
    color: #10181f;
    box-shadow: 0 0 32px #00ffae, 0 0 12px #00ffae;
    transform: scale(1.12) rotate(-2deg);
}
.contact-icon.whatsapp:hover {
    background: linear-gradient(135deg, #00ffae 60%, #25D366 100%);
    color: #10181f;
    border-color: #00ffae;
    box-shadow: 0 0 32px #25D366, 0 0 12px #00ffae;
}
.contact-icon.instagram:hover {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 40%, #833AB4 70%, #405DE6 100%);
    color: #10181f;
    border-color: #E1306C;
    box-shadow: 0 0 32px #C13584, 0 0 12px #E1306C;
}
.contact-info {
    margin-top: 1.2rem;
    color: #d0ffd6;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-info strong {
    color: #00ffae;
    font-weight: 600;
}

/* WhatsApp Button (no longer floating) */
.whatsapp-btn {
    display: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .skills-list {
        gap: 0.7rem;
    }
    .skills-list li {
        padding: 0.6rem 1rem;
        font-size: 0.98rem;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-text,
    .vision-text,
    .contact-text {
        font-size: 1rem;
    }
    .container {
        padding: 0 1rem;
    }
    section {
        padding: 4rem 0;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .skills-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .skills-list li {
        width: 100%;
        text-align: center;
    }
    .contact-info {
        font-size: 0.95rem;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
} 