:root {
    --brand-2: #f07a2b;
    --brand-3: #ffe1cd;
    --accent: #FF7A59;
    --muted: #1a1a1a;
    --radius: 6px;
}

body {
    font-family: "Roboto", sans-serif;
}

/* HEADER intégré dans la bannière */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-header.scrolled {
    position: fixed;
    background: white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-header .nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-header.scrolled .nav-link {
    color: #333;
    /* couleur quand sticky */
}

.hero-header .navbar-brand strong,
.hero-header small {
    color: white;
    transition: color 0.3s ease;
}

.hero-header.scrolled .navbar-brand strong,
.hero-header.scrolled small {
    color: var(--muted);
}

.nav-link.active {
    color: var(--accent) !important;
}

/* HERO */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #111;
}

.hero .bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=60');
    background-size: cover;
    background-position: center;
    filter: grayscale(.05) contrast(.95) brightness(.9);
}

.hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(178deg, rgb(31 31 31 / 75%), rgba(255, 255, 255, .05));
    backdrop-filter: blur(6px);
}

.hero .content {
    z-index: 2;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent), #f07a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.15rem;
}

.mission-card {
    background: transparent;
    border-radius: 15px;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /* background: var(--accent); */
    /* cercle léger */
    margin: 0 auto;
    /* pour centrer */
    transition: all 0.3s ease;
}



.reservation {
    color: black !important;
    position: relative;
    overflow: hidden;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.reservation .container {
    position: relative;
    z-index: 2;
}

.card-reservation {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    /* max-width: 450px; */
    margin: 0 auto;
}

.card-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.card-reservation:hover::before {
    left: 100%;
}

.card-reservation:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); */
}

.icon-circle {
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--brand-2), var(--accent)) !important;
}

.card-reservation:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.btn-custom {
    border-radius: var(--radius);
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-2), var(--accent));
    border: none;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 122, 43, 0.3);
}

.contact {
    background: linear-gradient(135deg, var(--muted), #2a2a2a);
    position: relative;
}

.contact-card {
    background: white;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-btn.linkedin::before {
    background: #0077b5;
}

.social-btn.instagram::before {
    background: linear-gradient(45deg, var(--brand-2), var(--accent));
}

.social-btn.facebook::before {
    background: #1877f2;
}

.social-btn:hover {
    transform: scale(1.1);
    border-color: transparent;
}

.social-btn:hover i {
    color: white !important;
    z-index: 2;
    position: relative;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-2), var(--accent));
    border-radius: var(--radius);
}

.horaires {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.contact-info {
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-2), var(--accent));
    border-radius: var(--radius);
}
.iti{
    display: block !important;
}
.bg-waring{
    background-color: rgb(250 138 53) !important;
}
.text-warning{
    color: rgb(250 138 53) !important;
}
/* ====== EXTRA PETITS ÉCRANS ====== */
/* ≤ 992px : tablettes paysage / petits laptops */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.1rem !important;
    }
    .hero-header .nav-link {
        font-size: 1rem !important;
    }

}
/* ≤ 768px : tablettes portrait */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
    .lead {
        font-size: 1.05rem !important;
    }
    .btn-custom {
        padding: 14px 30px;
    }
    .hero-header .nav-link {
        padding: 8px 12px;
    }

}
/* ≤ 567px : grands smartphones/phablets */
@media (max-width: 567px) {
    .hero {
        min-height: 65vh;
        padding: 0 15px;
        text-align: center;
    }
    .hero .content {
        width: 100%;
    }
    .hero-header .nav-link {
        font-size: 0.95rem !important;
    }
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}
/* ≤ 460px : smartphones standards */
@media (max-width: 460px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    .lead {
        font-size: 1rem !important;
    }
    .btn-custom {
        padding: 12px 26px;
        font-size: 0.9rem !important;
    }
    .hero-header .navbar-brand strong {
        font-size: 1.2rem !important;
    }

}
/* ≤ 360px : petits smartphones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    .lead {
        font-size: 0.9rem !important;
    }
    .btn-custom {
        padding: 12px 22px;
    }
    .hero-header .nav-link {
        font-size: 0.85rem !important;
    }
}
/* ≤ 300px : téléphones très petits */
@media (max-width: 300px) {
    .hero-title {
        font-size: 0.9rem !important;
    }
    .lead {
        font-size: 0.60rem !important;
    }
    .btn-custom {
        padding: 10px 18px;
        font-size: 0.5rem !important;
    }

    .hero {
        min-height: 60vh;
    }
    .letter_logo{
        width: 37px;
        height: 37px;
        font-size: .9rem;
    }
    .hero-header .navbar-brand strong {
        font-size: .7rem !important;
    }
    .hero-header .navbar-brand small{
        font-size: .5rem !important;
    }
    .navbar-toggler-icon{
        width: 0.7em;
        height: 0.7em;
    }
}



.app-toast {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 9999;
  pointer-events: auto;
  max-width: 360px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.9,.2,1);
  box-shadow: 0 8px 30px rgba(16,24,40,.12);
  border-radius: 12px;
  overflow: hidden;
}

/* visible state */
.app-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* inner card */
.app-toast-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  background: linear-gradient(90deg,var(--brand-3),var(--accent));
  color: white;
}

/* icon */
.app-toast-icon {
  background: white;
  color: #f07a2b;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* text */
.app-toast-body { flex: 1; min-width: 0; }
.app-toast-body strong { display:block; font-size:14px; margin-bottom:3px; }
.app-toast-text { font-size:13px; color: #914a1a; opacity: .95; word-break:break-word }

/* close button */
.app-toast-close {
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #914a1a;
  opacity: .6;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.app-toast-close:hover { opacity: 1; background: rgba(0,0,0,0.04) }

/* responsive tweak */
@media (max-width: 480px) {
  .app-toast { left: 12px; right: 12px; bottom: 16px; max-width: none; }
}



/* ====== TABLETTES ====== */






