﻿@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Geist:wght@100..900&display=swap');

body {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    color: #1b1b1b;
    background-color: #F5F5F5
}

p {
    font-size: 1.25rem;
    font-weight: 300;
}

.dark-bg {
    background-color: #1c1e2f
}

.TSblue {
   color:#1c1e2f
}

.orange {
    color: #FFA500
}


.navbar {
    background-color: #1c1e2f
}

.navbar-toggler {
    background-color: #FFA500;
}


    .navbar .nav-link, .navbar .navbar-brand {
        margin-right: 10px;
        font-weight: bold;
        color: white;
    }

.letsTalk {
    display: inline-block;
    border-radius: .3rem;
    padding:0.5rem;
    background-color: #FFA500;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    color: black !important;
}



.hero-intro {
    padding: 5rem 0 8rem 0;
    color: white;
    /* Background image for hero section (optional) */
    background-image: url('/media/assets/backgorund.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Keep a solid fallback colour for browsers that don't show the image */
    background-color: #1c1e2f;
    /* Make room for an absolutely-positioned canvas */
    position: relative;
    overflow: hidden;
}

/* Ensure the canvas sits behind content and doesn't interfere with pointer events */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* let clicks pass through */
}

/* Ensure content sits above the canvas */
.hero-intro > .container {
    position: relative;
    z-index: 1;
}

.hero-intro h1 {
    font-weight: 700;
    font-size: 3.5rem;
}

.hero-intro p {
    padding-top: 1rem;
    font-weight: 200;
    font-size: 1.3rem;
}

.intro-section {
    padding: 3rem 0;
}


.intro-text h2 {
    font-size: 4rem;
    font-weight: 800
}

.christophe {
    max-width: 50% !important;
}

.services {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.service2 {padding-top:2rem
}

.service-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 1rem
}

.techStack {
    border-radius: 0.75rem;
    overflow: hidden; /* clip inner content (images etc.) to the rounded corners */
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    background-color: #ffffff;
    padding:1rem 0 1rem 0
}


.techStack h2 {margin-top:2rem
}

.bold {font-weight:bold
}




footer {
    background-color: #1C1E2F;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #777;
}




@media (max-width: 900px)  {
    .hero-intro h1 {
          font-size: 2.5rem;
    }
    .intro-text h2 {
        font-size:2.5rem;
        font-weight: 800;
        margin-bottom:1rem
    }
}