/* Custom Styles */

/* Roboto - Local Fonts */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
         url('../fonts/Roboto-Regular.woff') format('woff'),
         url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
         url('../fonts/Roboto-Medium.woff') format('woff'),
         url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
         url('../fonts/Roboto-Bold.woff') format('woff'),
         url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --neon-green: #00FF00;
    --dark-bg: #0a0a0a;
    --content-max-width: 1200px;
}

html,
body {
    margin: 0;
    padding: 0;
    background: black;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Navegación */
nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    z-index: 100;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

nav.navbar.scrolled {
    background: rgba(8, 10, 10, 0.78) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

nav .navbar-brand {
    display: inline-block;
    width: 65px;
    height: 85px;
    margin: 0;
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    background: #32ff14 url('../images/mariana-gagliardi-avatar.png') no-repeat center center;
    border-radius: 0;
}

nav .container,
nav .container-fluid {
    align-items: center;
}

@media (min-width: 768px) {
    nav .container {
        min-height: 56px;
    }

    nav .navbar-brand {
        position: static;
        transform: none;
    }

    nav .navbar-collapse {
        justify-content: flex-end !important;
    }
}

nav a {
    color: #b7b7b7 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

nav a:hover {
    color: var(--neon-green) !important;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Secciones */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 60px;
}

section h1 {
    animation: fadeInUp 0.8s ease;
}

section h2 {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Home */
#home {
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.7)), url("../images/Mountains-background.png") center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
    scroll-margin-top: 0;
	opacity: 75%;
}

#home h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

#home .neon {
    color: var(--neon-green);
}

#home .subtitle {
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#home p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--neon-green);
    font-size: 0.95rem;
    margin: 0 0.5rem;
    text-transform: capitalize;
}

.cta-button.primary {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.7), 0 10px 25px rgba(0, 255, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-green);
    box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.2);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: rgba(0, 255, 0, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.3);
}

/* About */
#about {
    background: #0a0a0a;
    text-align: left;
    padding: 4rem 2rem;
}

.about-label {
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left!important;
}

.about-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: left!important;
}

.about-subtitle {
    display: block;
    color: #666;
    font-weight: 400;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;  
    float: left;  
}

.about-text {
    font-size: 16px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.stats-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.stat {
    text-align: left;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--neon-green);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    padding-bottom: 10px;
    margin-bottom: 0;
    line-height: 1.5rem;
}

.stat-label {
    font-size: 16px;
    color: #999;
    text-transform: capitalize;
    margin-top: 0px;
    padding-top: 0;
}

/* Expertise */
#expertise {
    background: #0a0a0a;
    text-align: center;
    padding: 4rem 2rem;
}

.expertise-header {
    margin-bottom: 3rem;
}

.expertise-icon{
    width: 48px;
    height: 48px;
}
.expertise-icon.ux-icon {
    background: url('../images/icons.png') 0 0 no-repeat;
}

.expertise-icon.service-icon {
    background: url('../images/icons.png') -48px 0 no-repeat;
}

.expertise-icon.leadership-icon {
    background: url('../images/icons.png') -96px 0 no-repeat;
}

.expertise-icon.graphic-icon {
    background: url('../images/icons.png') -144px 0 no-repeat;
}

.expertise-icon.chaos-icon {
    background: url('../images/icons.png') -192px 0 no-repeat;
}

.expertise-label {
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.expertise-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin: 0;
}

.expertise-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 255, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--neon-green);
}

.expertise-card:hover::before {
    opacity: 1;
}


.expertise-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 24px;
    text-align: left;
}

.expertise-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Experience */
#experience {
    background: #0a0a0a;
    text-align: left;
}

.experience-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.experience-label {
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.experience-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin: 0;
}

.work-group {
    padding-top: 3rem;
}

.work-group-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.work-group-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 460px;
}

.work-tag {
    display: inline-block;
    border: 1.5px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    margin-bottom: 0.5rem;
}

.work-divider {
    border: none;
    border-top: 1px solid #1e1e1e;
    margin: 2rem 0 0;
}

/* Gallery strip */
.gallery-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: visible;
    padding: 1.5rem 0 1rem;
    justify-content: flex-start;
}

.gallery-strip img {
    flex-shrink: 0;
    height: 130px;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    filter: brightness(0.85);
    transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}

.gallery-strip img:hover {
    filter: brightness(1);
    transform: scale(1.04);
    border-color: var(--neon-green);
    box-shadow: 0 0 14px rgba(0, 255, 0, 0.35);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
}

.lightbox-inner img {
    max-height: 80vh;
    max-width: 80vw;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.25);
    object-fit: contain;
}

.lightbox-caption {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--neon-green);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 0, 0.12);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 10001;
}

.lightbox-arrow.left  { left: 1.5rem; }
.lightbox-arrow.right { right: 1.5rem; }

.lightbox-arrow:hover {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Contact */
#contact {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin: 0 0 2rem 0;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-green);
    cursor: pointer;
    font-size: 1rem;
}

.contact-btn.primary {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.contact-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.7), 0 10px 25px rgba(0, 255, 0, 0.2);
}

.contact-btn.secondary {
    background: transparent;
    color: var(--neon-green);
    box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.2);
}

.contact-btn.secondary:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.contact-info-item {
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item.secondary-info {
    color: #666;
}

.contact-info-item i {
    font-size: 1rem;
}

/* Footer */
footer.footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

footer.footer p {
    margin: 0;
}

.footer-highlight {
    color: var(--neon-green);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    #home h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 2rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .expertise-title {
        font-size: 2rem;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
    }

    .expertise-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        gap: 1rem;
    }

    footer.footer {
        font-size: 0.8rem;
    }
}
