/* Style général */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Bannière principale */
header {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
}

header h1 {
    font-size: 3rem;
    font-weight: bold;
}

header p {
    font-size: 1.5rem;
}

/* Section Produits */
#produits .card {
    transition: transform 0.3s ease;
}

#produits .card:hover {
    transform: scale(1.05);
}

/* Section Contact */
#contact {
    background-color: #f8f9fa;
}

/* Pied de page */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
}



.welcome-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 100px 0;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: bold;
}

.welcome-subtitle {
    font-size: 1.5rem;
}

.btn-start-shopping {
    font-size: 1.5rem;
    padding: 15px 30px;
    background-color: #aae0e8;
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    background-color: #ff4757;
    border-color: #ff4757;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.7);
}

.btn-secondary {
    font-size: 1rem;
    padding: 10px 20px;
}

.navbar-brand {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.bg-success

{
background:	#aae0e8!important
}

.welcome-section
{
	height: 350px !important;
}


/* Styles généraux */
body {
    font-family: Arial, sans-serif;
}

.welcome-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 100px 0;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: bold;
}

.welcome-subtitle {
    font-size: 1.5rem;
}

.btn-start-shopping {
    font-size: 1.5rem;
    padding: 15px 30px;
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    background-color: #ff4757;
    border-color: #ff4757;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.7);
}

.navbar-brand {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Styles pour mobile */
@media (max-width: 767px) {
    .welcome-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    .btn-start-shopping {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .card {
        margin-bottom: 20px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-nav {
        text-align: center;
    }

    .welcome-section {
        padding: 50px 0;
    }

    #contact .col-md-6 {
        padding: 0 15px;
    }
}

