/* ------------------------------
   RESET & BASE
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #faf8ff;
    color: #2a2240;
    line-height: 1.6;
}

/* ------------------------------
   HEADER
--------------------------------*/
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 900;
}

nav.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: #5b4b82;
    text-decoration: none;
    font-weight: 500;
}

.menu li a:hover {
    color: #8b5cf6;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    height: 70vh;
    background: url("./assets/images/hero_F3.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(50, 30, 100, 0.35);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* ------------------------------
   CTA BUTTON
--------------------------------*/
.cta-btn {
    background: #a78bfa;
    color: white;
    padding: 14px 32px;
    font-size: 1.2rem;
    border-radius: 12px;
    border: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(140, 82, 255, 0.25);
    transition: 0.25s;
}

.cta-btn:hover {
    background: #8b5cf6;
    transform: translateY(-3px);
    text-decoration: none !important;
}

/* Empêche tout lien dans le bouton d'être souligné */
.cta-btn a {
    text-decoration: none !important;
}

/* ------------------------------
   SECTIONS TITLES
--------------------------------*/
.section {
    width: 90%;
    margin: 70px auto;
    text-align: center;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #7c3aed;
    font-weight: 700;
}

/* ------------------------------
   FORMULE CARDS
--------------------------------*/
.cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 25px;
    width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.price {
    margin-top: 12px;
    display: block;
    font-size: 1.3rem;
    color: #8b5cf6;
    font-weight: 700;
}

/* ------------------------------
   OCCASIONS GRID WITH ICONS
--------------------------------*/
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    justify-items: center;
}

.occasion-item {
    background: white;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    width: 150px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.occasion-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.occasion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.1);
}

/* ------------------------------
   FORMULAIRE
--------------------------------*/
.chanson-form {
    width: 85%;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.chanson-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

.chanson-form input,
.chanson-form select,
.chanson-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cfc6f8;
    background: #f7f4ff;
    font-size: 1rem;
    margin-top: 6px;
}

textarea {
    height: 140px;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    margin-top: 60px;
    padding: 25px;
    background: #f2ecff;
    text-align: center;
    font-size: 0.95rem;
}

.socials a {
    margin: 0 10px;
    text-decoration: none;
    color: #7c3aed;
}

.socials a:hover {
    text-decoration: underline;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 850px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    .cta-btn {
        font-size: 1.05rem;
        padding: 12px 25px;
    }
}
/* Texte d’aide sous les labels */
.help-text {
    margin-top: -8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* Ajustement esthétique du textarea */
textarea {
    width: 100%;
    min-height: 180px;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #f8f5ff;
    resize: vertical;
}
