


/* Global Styles */
body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: url('../img/thoughtful-businessman-sitting-with-open-laptop-computer-looking-worried-while-thinking-about-planning-top-view.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.708);
    z-index: -1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideIn 1s ease-out;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.btn-custom {
    background-color: #00bf2d;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background-color: #00b362;
}

.btn-outline-light {
    border-radius: 10px; /* Rounded corners */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: #00bf2d;
}

/* Info Section */
.info-section h2 {
    color: #00bf2d;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}
.info-section .card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.card{
cursor: pointer;
}

@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}




/* Style du footer */
footer {
background-color: #333;
padding: 20px 0;
text-align: center;
color: #6c757d;
font-size: 14px;
border-top: 1px solid #e1e1e1;
}

footer .container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}

footer .footer-links a {
color: #ffff;
text-decoration: none;
font-weight: 500;
margin: 0 10px;
}

footer .footer-links a:hover {
color: #0056b3;
text-decoration: underline;
}

/* Réactivité */
@media (max-width: 768px) {
footer p {
font-size: 12px;
}

footer .footer-links {
display: block;
margin-top: 10px;
}

footer .footer-links a {
display: block;
margin-bottom: 5px;
}
}


/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* Logo Animation */
.hero-logo {
    width: 200px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

/* Container principal */
.pricing-table {
    padding: 80px 0;
}

.pricing-table h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    
}

/* Card de tarification */
.pricing-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card h4 {
    font-size: 1.8rem;
    color: #2d3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #00bf2d;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.pricing-card .btn {
    background-color: #00bf2d;
    color: white;
    padding: 10px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #333;
}

/* Responsive Grid Layout */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Style du bouton de retour en haut */
.scroll-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background-color: #00bf2d;
color: white;
font-size: 24px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: opacity 0.3s ease, transform 0.3s ease;
z-index: 999;
text-decoration: none;
}

.scroll-to-top:hover {
background-color: #0056b3;
transform: scale(1.1);
}

.scroll-to-top i {
pointer-events: none;
}

.scroll-to-top.hidden {
opacity: 0;
pointer-events: none;
}



/* Lorsque la page est en haut, cacher le bouton */
@media (max-width: 768px) {
.scroll-to-top {
bottom: 20px;
right: 20px;
}
}

.btn-primary{
background-color: #00bf2d;
}


/* Style par défaut (PC) */
.margtop {
margin-top: 10%;
}

/* Style pour tablette (768px et moins) */
@media screen and (max-width: 768px) {
.margtop {
margin-top: 25%;
}
}

/* Optionnel : style pour mobile (576px et moins) */
@media screen and (max-width: 576px) {
.margtop {
margin-top: 25%;
}
}

.is-invalid {
border-color: red;
}

.text-danger {
color: red !important;
}

