/* ==========================================================================
   PINK VIKING - MAIN STYLESHEET
   Aesthetics: Futuristic Dark Tech, Glassmorphism, Neon Pink Accents
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    --bg-dark: #070709;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.06);
    --color-pink: #FF007F;
    --color-pink-soft: #FF4DA6;
    --color-pink-gradient: linear-gradient(135deg, #FF007F 0%, #FF66B2 100%);
    --color-white: #FFFFFF;
    --color-grey: #A0A0B0;
    --color-dark-grey: #1a1a24;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-pink-glow: 0 8px 32px 0 rgba(255, 0, 127, 0.15);
    --shadow-card-glow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-max-width: 1200px;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-grey);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.max-w-xl {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-md {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- Animated Gradient Orbs --- */
.orb-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    transition: var(--transition-smooth);
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-pink) 0%, rgba(0,0,0,0) 70%);
    top: -10%;
    right: -10%;
    animation: floatOrb1 25s infinite ease-in-out alternate;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #5b11ff 0%, rgba(0,0,0,0) 70%);
    bottom: 10%;
    left: -5%;
    animation: floatOrb2 20s infinite ease-in-out alternate;
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, 15%) scale(1.1); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, -10%) scale(1.2); }
}

/* --- Navigation Header --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
}

.logo-pink {
    color: var(--color-pink);
    margin-right: 0.1rem;
}

.logo-white {
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-grey);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-pink);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* --- Button Styling --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-pink-gradient);
    color: var(--color-white);
    border: none;
    box-shadow: var(--shadow-pink-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 0, 127, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-pink);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    background: var(--color-pink-gradient);
    color: var(--color-white);
    border: none;
}

.btn-nav:hover {
    box-shadow: var(--shadow-pink-glow);
    transform: translateY(-1px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.2);
    color: var(--color-pink-soft);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.subtitle-badge {
    display: inline-block;
    color: var(--color-pink);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

/* --- Hero Section --- */
.hero-section {
    padding: 6rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
}

.text-gradient {
    background: var(--color-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-grey);
    margin-bottom: 2.5rem;
    max-w-xl: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-graphic {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card-glow);
    background: rgba(0, 0, 0, 0.3);
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .img-responsive {
    transform: scale(1.02);
}

/* --- Section Formatting --- */
.section {
    padding: 8rem 0;
    border-top: 1px solid var(--border-glass);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-grey);
}

/* --- Glassmorphism Cards --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card-glow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 0, 127, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-pink-glow), var(--shadow-card-glow);
}

/* --- Crisis / Stats Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: var(--color-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--color-grey);
}

/* --- Tech Section --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tech-icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-icon-svg {
    transform: scale(1.1) rotate(2deg);
    color: var(--color-pink-soft);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--color-grey);
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden; /* Clip avatar image to circle */
    background: var(--color-pink-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
    border: 2px solid var(--color-pink);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--color-pink);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.social-link {
    color: var(--color-grey);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-link:hover {
    color: var(--color-pink-soft);
    transform: scale(1.1);
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FOUNDER BIO STYLE INSTRUCTIONS
   
   To add descriptions/biographies for the founders (Jan and Léo):
   1. Open index.html.
   2. Locate the <p class="team-bio"></p> tag under each founder's name.
   3. Add your content inside this tag (e.g. <p class="team-bio">Biography content...</p>).
   4. Customize the styles below (font size, margin, text alignment) to style it.
   ========================================================================== */
.team-bio {
    font-size: 0.95rem;
    color: var(--color-grey);
    margin-top: 1rem;
    line-height: 1.5;
    text-align: center;
    max-width: 320px;
}

/* --- Careers Section (Notice Card) --- */
.careers-notice-card {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.careers-notice-card .tech-icon-svg {
    color: var(--color-pink-soft);
}

.careers-notice-card:hover .tech-icon-svg {
    transform: scale(1.1) translateY(-2px);
}

.notice-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.notice-desc {
    font-size: 1.05rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notice-action {
    display: flex;
    justify-content: center;
}

/* --- Contact Section --- */
.form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* --- Footer --- */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-white);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Layout */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-card-glow);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .btn-nav {
        width: 80%;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .careers-notice-card {
        padding: 2rem 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
