:root {
--primary: #1E3A8A;
--accent: #F59E0B;
--bg-soft: #F3F4F6;
--text-dark: #0f172a;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1E3A8A;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background-color: #ffffff;
    padding: 12px 0;
    transition: 0.4s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.navbar a, .navbar .nav-link {
    color: #1E3A8A !important;
    font-weight: 600;
}
.navbar a:hover {
    color: #F59E0B !important;
}

.btn-primary {
    background-color: #F59E0B;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #e08700;
    color:white;
    transform: translateY(-2px);
}
.btn-main {
background: linear-gradient(135deg, #F59E0B, #fbbf24);
border: none;
color: #fff;
font-weight: 700;
border-radius: 10px;
padding: 12px 26px;
transition: .3s;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,158,11,.35); }
/* ================= HERO PREMIUM ================= */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px; /* évite que la navbar cache le contenu */
    background:
        linear-gradient(120deg, rgba(30,58,138,.85), rgba(30,58,138,.65)),
        url('../images/slide/slide1.jpg') center/cover no-repeat;
    color: #fff;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

#hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

#hero p {
    max-width: 560px;
    font-size: 1.05rem;
    opacity: 0.95;
}

.hero-card {
    background: #fff;
    color: var(--text-dark);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.hero-card h5 {
    font-weight: 700;
}


/* ABOUT */
#about {
    background-color: #F3F4F6;
    padding: 6rem 0;
}
#about h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E3A8A;
}
#about .card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: none;
}

/* CONTACT */
#contact {
    padding: 6rem 0;
}
.info-box {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.info-box i {
    font-size: 2rem;
    color: #F59E0B;
}

/* FOOTER */
footer {
    background: #1E3A8A;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 40px;
}
footer a {
    color: #F59E0B;
    font-weight: 600;
    text-decoration: none;
}
#ticketwifi-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.ticketwifi-loader-container {
    text-align: center;
}
.ticketwifi-loader-gif {
    width: 80px;
}
.ticketwifi-loader-text {
    margin-top: 10px;
    font-weight: bold;
}
/* ==============================
   DRAPEAUX KKIAPAY
============================== */

.kkiapay-countries {
    margin-top: 15px;
}

.country-flag {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    /*border: 2px solid #F3F4F6;*/
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-flag:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
