/* Importation des variables de couleurs que nous avons créées */
@import url("variables.css");

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Poppins', sans-serif; background: var(--ecopay-light); color: var(--ecopay-text);
}
/* BARRE DE NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--ecopay-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img { height: 45px; }

.nav-links a {
    text-decoration: none;
    color: var(--ecopay-dark);
    margin-left: 30px;
    font-weight: 600;
}

.btn-login {
    background: var(--ecopay-dark);
    color: var(--ecopay-white) !important;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
}

/* SECTION HERO */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    min-height: 80vh;
    background-image: url('../img/card-visa.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-content { flex: 1; }

.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }

.highlight { color: var(--ecopay-cyan); }

.btn-main {
    background: var(--ecopay-cyan);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    display: inline-block;
}

.btn-secondary {
    border: 2px solid var(--ecopay-dark);
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--ecopay-dark);
    font-weight: bold;
}