html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: linear-gradient(to bottom, #ffffff, #e6f0ff); /* Gradient from white to light blue */
    background-attachment: fixed; /* Ensures the background stays fixed during scrolling */
    color: #333; /* Text color for contrast */
    min-height: 100vh; /* Ensures the gradient covers the full viewport height */
}

footer {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    text-align: center;
}
.navbar {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa) !important; /* Dégradé du blanc pur vers un blanc légèrement gris */
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Optionnel : ajoute une ligne subtile pour la séparation */
}


.navbar-brand {
    font-size: 1.8rem; /* Increase font size */
    font-weight: 700; /* Make it bold */
    color: #333333; /* Professional dark color */
    text-transform: uppercase; /* Uppercase for a bold statement */
    letter-spacing: 1px; /* Add spacing between letters */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
    text-decoration: none; /* Remove underline */
}

    .navbar-brand:hover {
        color: #007bff; /* Change color on hover */
        transform: scale(1.1); /* Slightly enlarge on hover */
        text-decoration: none; /* Ensure underline stays removed */
    }

    .navbar-brand::after {
        content: ''; /* Add a bottom border effect */
        display: block;
        width: 0;
        height: 2px;
        background: #007bff;
        transition: width 0.3s ease;
        margin: 0 auto;
    }

    .navbar-brand:hover::after {
        width: 100%; /* Expand underline on hover */
    }


.nav-link {
    color: #6B7280 !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #4169E1 !important;
    }

    .nav-link.active {
        color: #4169E1 !important;
    }

.contact-button {
    background: linear-gradient(to right, #F15A2B, #D64A1F); /* Dégradé de l'orange vif vers une teinte plus foncée */
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background 0.3s ease; /* Transition pour le changement de fond */
    border: none; /* Assure un style épuré */
}



.hero-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tag-container {
    margin-bottom: 2rem;
}

.business-tag {
    background-color: rgba(241, 90, 43, 0.1);
    color: #F15A2B;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
}

    .hero-title h1 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .hero-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1.5rem;
    }

.highlight {
    color: #F15A2B;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: #6B7280;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
}

    .feature-list li {
        margin: 1rem 0;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .feature-list strong {
        color: #333;
    }

.cta-button {
    background-color: #4169E1;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #3154b3;
        color: white;
        text-decoration: none;
    }

.dashboard-preview {
    margin-top: 2rem;
}

.dashboard-image {
    max-width: 80%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
}

    .service-header h2 {
        margin: 0;
        font-size: 1.5rem;
        color: #333;
    }

.expand-btn {
    background: #4169E1;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease;
}

    .expand-btn:hover {
        background-color: #3154b3;
    }

.plus-icon {
    transition: transform 0.3s ease;
}

.service-content {
    display: none;
    padding: 1rem 0;
}

.service-item.active .service-content {
    display: block;
}

.service-item.active .plus-icon {
    transform: rotate(45deg);
}
.service-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

    .service-images img {
        width: 500px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.demo-cta {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.demo-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.demo-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #4169E1;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(65, 105, 225, 0.2);
}

    .demo-button:hover {
        background-color: #3154b3;
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(65, 105, 225, 0.3);
    }

.calendar-icon {
    display: flex;
    align-items: center;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
.service-images img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .service-images img:hover {
        transform: scale(1.05);
    }

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

    .modal.active {
        display: flex;
    }

.modal-content {
    max-width: 90%;
    max-height: 90vh;
}

    .modal-content img {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
    }

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}
/* occupe l'espace restant */
footer {
    margin-top: auto;
}
/* colle le footer en bas */
.hero-carousel {
    max-width: 900px;
}