@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


/* --- General & Body Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    /* Bold Vector-like Gradient Background */
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    /* White text for contrast */
    overflow-x: hidden;
    min-height: 100vh;
}


@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }


    50% {
        background-position: 100% 50%;
    }


    100% {
        background-position: 0% 50%;
    }
}


/* --- Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    /* Slight darken for readability */
    backdrop-filter: blur(5px);
}


nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.95);
    /* Dark modern menu */
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
}


nav.show {
    left: 0;
}


nav ul {
    list-style-type: none;
}


nav ul li a {
    display: block;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}


nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* --- Hamburger Menu Icon --- */
.hamburger-menu {
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}


/* --- Language Switcher --- */
.lang-switcher button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: #ccc;
    border-radius: 20px;
    margin-left: 5px;
    transition: all 0.3s;
}


.lang-switcher button.active {
    background: #fff;
    color: #1a2a6c;
    font-weight: 700;
    border-color: #fff;
}


/* --- Main Content --- */
.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem 2rem;
    gap: 2rem;
}


/* GLASSMORPHISM CARDS */
.transparent-div {
    background: rgba(255, 255, 255, 0.1);
    /* Very transparent white */
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    /* Heavier blur */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    /* Deep shadow for float effect */
    width: 100%;
    max-width: 700px;
    transition: transform 0.3s ease;
}


.transparent-div:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}


.transparent-div h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.transparent-div p {
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.05rem;
    opacity: 0.9;
}


/* --- Buttons (For Payments) --- */
.btn-primary {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: #1a2a6c;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


.btn-whatsapp {
    background-color: #25D366;
    color: white;
}


/* --- Forms --- */
.payment-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
}


.lang-fr {
    display: none;
}