/* public/css/style.css */

/* === Couleurs principales inspirées du logo High TechNova === */
:root {
    --primary-color: #002856;
    --secondary-color: #e5e5e5;
    --accent-color: #00b8d4;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
}

/* === Corps général === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* === Navbar === */
.navbar {
    background-color: var(--primary-color) !important;
}
.navbar-brand {
    font-weight: bold;
    color: #fff !important;
}
.nav-link {
    color: #f0f0f0 !important;
    margin-left: 1rem;
}
.nav-link:hover {
    color: var(--accent-color) !important;
}

/* === Header / Hero section === */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-top: -49px;
}
.container .form-label{ color: #000;}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.text-r {margin-right: 150px;}
.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
}
/* === Cards === */
.containers {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
    color: #000;
}
/* === Sections === */
section {
    padding: 60px 0;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

/* === Cards === */
.card {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card-title {
    font-weight: 600;
    color: var(--primary-color);
}

/* === Footer === */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* === Buttons === */
.btn-primary {
    background-color: var(--accent-color);
    border: none;
}
.btn-primary:hover {
    background-color: #009bb5;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}


/* Animation de fade-in */
/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.9s;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1.3s; }
.delay-3 { animation-delay: 2.1s; }
.delay-4 { animation-delay: 2.9s; }
.delay-5 { animation-delay: 3.7s; }
.delay-6 { animation-delay: 4.5s; }

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


form input, form textarea {
    transition: border 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
}

form button:hover {
    background-color: #0b5ed7;
}

