/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F5F5DC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 245, 220, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(92, 141, 137, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1A1A1A;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #5C8D89;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1A1A1A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #F5F5DC;
    padding-top: 4rem;
    overflow: hidden;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-subtitle {
    color: #5C8D89;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: bold;
    line-height: 1.2;
    color: #1A1A1A;
}

.hero-highlight {
    color: #5C8D89;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.6;
    max-width: 32rem;
}

.hero-summary {
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    background-color: #5C8D89;
    color: white;
}

.btn-primary:hover {
    background-color: rgba(92, 141, 137, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #5C8D89;
    border: 1px solid #5C8D89;
}

.btn-outline:hover {
    background-color: #5C8D89;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

.image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5C8D89, #7FC8A9);
    border-radius: 50%;
    transform: rotate(6deg) scale(1.05);
    opacity: 0.2;
}

.profile-image {
    position: relative;
    z-index: 10;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.decorative-element {
    position: absolute;
    border-radius: 50%;
}

.decorative-1 {
    top: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #5C8D89;
    opacity: 0.6;
}

.decorative-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 3rem;
    height: 3rem;
    background-color: #7FC8A9;
    opacity: 0.4;
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #5C8D89, transparent);
}/* Professio
nal Summary */
.professional-summary {
    padding: 5rem 0;
    background-color: #FEFDFB;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #5C8D89;
    margin: 0.5rem auto 0;
}

.summary-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: #F8F6F1;
    border: 1px solid #EAE8E1;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.07);
}

.stat-icon {
    margin-bottom: 1rem;
    color: #5C8D89;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: #5C8D89;
    margin: 0.25rem 0 0.5rem 0;
}

.stat-description {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

/* Core Competencies */
.core-competencies {
    padding: 5rem 0;
    background-color: #F8F6F1;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.competency-item {
    background-color: #FEFDFB;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid #EAE8E1;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
}

.competency-item::before {
    content: '•';
    color: #5C8D89;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

/* Key Skills */
.key-skills {
    padding: 5rem 0;
    background-color: #F5F5DC;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(92, 141, 137, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5C8D89, #7BA098);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.skill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #5C8D89, #7BA098);
    border-radius: 12px;
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(92, 141, 137, 0.2);
}

.skill-card:hover .skill-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(92, 141, 137, 0.3);
}

.skill-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.3;
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-list li {
    display: flex;
    align-items: flex-start;
    color: rgba(26, 26, 26, 0.75);
    font-size: 0.95rem;
    line-height: 1.4;
}

.skill-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #5C8D89;
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Professional Experience */
.professional-experience {
    padding: 5rem 0;
    background-color: #F5F5DC;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(92, 141, 137, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.experience-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #5C8D89;
    margin-bottom: 0.5rem;
}

.experience-company {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.experience-period {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 1rem;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.experience-content p {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    background-color: rgba(92, 141, 137, 0.1);
    color: #5C8D89;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}/* Conne
ct Section */
.connect-section {
    padding: 5rem 0 0;
    background: #F5F5DC;
}

.connect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Get In Touch Section */
.get-in-touch {
    padding: 0;
}

.contact-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.contact-description {
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(92, 141, 137, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #5C8D89;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-icon {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.whatsapp-icon, .phone-icon {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.website-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.linkedin-icon {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.contact-details h4 {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-details p {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
    transition: color 0.3s ease;
}

.contact-method:hover .contact-details p {
    color: #5C8D89;
}

/* Get Started Section */
.get-started {
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-card {
    background: linear-gradient(135deg, #5C8D89, #7BA098);
    padding: 2.5rem;
    border-radius: 16px;
    color: white;
    width: 100%;
    box-shadow: 0 8px 24px rgba(92, 141, 137, 0.2);
}

.get-started-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.get-started-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-primary {
    background: white;
    color: #5C8D89;
    border: 2px solid white;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.services-available {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.services-available h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.4;
    opacity: 0.9;
}

.services-list li::before {
    content: '•';
    color: white;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(92, 141, 137, 0.2);
}

.footer p {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5DC;
}

::-webkit-scrollbar-thumb {
    background: #5C8D89;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7FC8A9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4rem;
        flex-direction: column;
        background-color: rgba(245, 245, 220, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .connect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .get-started-card {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (min-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}