/* =========================================
   LES AILES DE LILY & GABIN
   Style principal du site
========================================= */

:root{
    --primary:#123E7A;
    --secondary:#4AA9FF;
    --accent:#6E9E3A;
    --background:#F7FBFF;
    --text:#1F2937;
    --white:#FFFFFF;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.7;
}

/* =========================================
   HEADER
========================================= */

header{
    position:sticky;
    top:0;
    z-index:1000;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(10px);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 40px;

    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

.logo{
    font-size:1.5rem;
    font-weight:bold;
    color:var(--primary);
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:var(--secondary);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Bloc réseaux sociaux */
.header-social {
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Icônes */
.header-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f2f2f2;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.25s ease;
}

/* Hover */
.header-social a:hover {
	transform: translateY(-2px);
	background: #e6e6e6;
}

.header-social a[href*="facebook"]:hover {
	color: #1877f2;
}

.header-social a[href*="instagram"]:hover {
	color: #e1306c;
}

/* =========================================
   HERO SECTION
========================================= */

.hero{
    max-width:1200px;
    margin:60px auto;
    padding:20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    display:block;

    width:100%;
    max-width:700px;

    height:auto;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.preorder-note {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #5c6470;
    line-height: 1.8;
    max-width: 650px;

    background: rgba(255,255,255,0.6);
    padding: 18px 22px;

    border-left: 5px solid #6fa52b;

    border-radius: 12px;

    font-style: italic;
}

.preorder-note a {
    color: #4c5fd7;
    font-weight: 600;
    text-decoration: none;
}

.preorder-note a:hover {
    text-decoration: underline;
}

.hero-title{
    font-size:35px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-country{
    font-size:0.33em;
    font-style:italic;
    font-weight:400;
    color:#5b7d9a;

    position:relative;
    top:10px;

    margin-left:8px;
}

.price-block {
    margin: 30px 0;
}

.price {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: #74A82A;
    line-height: 1;
}

.shipping-info {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* =========================================
   BOUTONS
========================================= */

.btn{
    display:inline-block;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:white;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

    transition:0.3s;
}
.btn.disabled{
    pointer-events:none;
    opacity:0.5;
    cursor:not-allowed;
    filter:grayscale(30%);
}

.btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.15);
}

/* =========================================
   CARDS
========================================= */

.card{
    max-width:1200px;

    margin:40px auto;

    padding:40px;

    background:white;

    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.card h2{
    color:var(--primary);
    margin-bottom:20px;
}

.card p{
    margin-bottom:15px;
}

.card ul{
    padding-left:20px;
}

.card li{
    margin-bottom:12px;
}

/* =========================================
   PRÉSENTATION LIVRE
========================================= */

.book-details{
    display:flex;
    align-items:center;
    gap:50px;
}

.book-cover{
    flex:1;
    text-align:center;
}

.book-cover img{
    width:100%;
    max-width:350px;

    border-radius:15px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}

.book-text{
    flex:2;
}

.book-text h2{
    color:var(--primary);
}

/* =========================================
   FAQ
========================================= */

.faq-item{
    margin-bottom:25px;
}

.faq-item h3{
    color:var(--primary);
    margin-bottom:10px;
}

/* =========================================
   FOOTER
========================================= */

footer{

    margin-top:60px;

    background:white;

    border-top:1px solid #E5E7EB;

    padding:40px 20px;

    text-align:center;
}

footer p{
    margin-bottom:10px;
}

.footer-links{
    margin-top:15px;
}

.footer-links a{
    margin:0 10px;

    text-decoration:none;

    color:var(--primary);

    font-weight:600;
}

.footer-links a:hover{
    color:var(--secondary);
}

/* =========================================
   PAGES LÉGALES
========================================= */

.legal-page{
    max-width:1000px;
    margin:50px auto;
    padding:40px;

    background:white;

    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.legal-page h1{
    color:var(--primary);
    margin-bottom:30px;
}

.legal-page h2{
    margin-top:30px;
    margin-bottom:15px;
    color:var(--primary);
}

.legal-page p{
    margin-bottom:15px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:900px){

    header{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        flex-direction:column-reverse;
        text-align:center;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .subtitle{
        font-size:1.1rem;
    }

    .book-details{
        flex-direction:column;
        text-align:center;
    }

    .book-cover img{
        max-width:250px;
    }

    .card{
        margin:20px;
        padding:25px;
    }

    .legal-page{
        margin:20px;
        padding:25px;
    }
}

/* =========================================
   PAGE DE CONFIRMATION
========================================= */

.confirmation-page{
    min-height:70vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:60px 20px;
}

.confirmation-card{

    max-width:700px;

    background:white;

    padding:60px;

    border-radius:25px;

    text-align:center;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.success-icon{

    width:100px;
    height:100px;

    margin:0 auto 30px auto;

    border-radius:50%;

    background:var(--accent);

    color:white;

    font-size:3rem;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;
}

.confirmation-card h1{

    color:var(--primary);

    margin-bottom:25px;

    font-size:2.2rem;
}

.confirmation-text{

    font-size:1.2rem;

    margin-bottom:20px;

    color:var(--secondary);
}

.confirmation-card p{

    margin-bottom:15px;
}
#language-selector{

    padding:8px 12px;

    border-radius:10px;

    border:1px solid #ddd;

    background:white;

    font-weight:600;

    cursor:pointer;
}


/* =========================================
   DELIVERY PAGE
========================================= */

.delivery-section {
    max-width: 1100px;
    margin: 20px auto 60px auto;
    padding: 10px 20px 40px;
    text-align: center;
}

.delivery-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 8px;
}

.delivery-subtitle {
    color: #6b7280;
    margin-bottom: 35px;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.delivery-card {
    background: white;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.delivery-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.delivery-card.home h3 {
    color: #008c95;
}

.delivery-card.pickup h3 {
    color: #c56a1a;
}

.delivery-card p {
    color: #4b5563;
    margin-bottom: 25px;
}

.delivery-price {
    background: #f8fbff;
    border-radius: 16px;
    padding: 18px;
    margin: 25px 0;
}

.delivery-price span {
    display: block;
    font-size: 0.95rem;
    color: #6b7280;
}

.delivery-price strong {
    display: block;
    font-size: 2rem;
    margin-top: 5px;
    color: var(--primary);
}

.delivery-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.delivery-card li {
    margin-bottom: 12px;
    color: #374151;
}

.delivery-card li::before {
    content: "✓";
    margin-right: 10px;
    font-weight: bold;
}

.delivery-card.home li::before {
    color: #008c95;
}

.delivery-card.pickup li::before {
    color: #c56a1a;
}

.delivery-btn {
    display: block;
    margin-top: 25px;
    padding: 16px 22px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.delivery-btn small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

.home-btn {
    background: linear-gradient(135deg, #22b8c7, #007d88);
}

.pickup-btn {
    background: linear-gradient(135deg, #f59e0b, #c05621);
}

@media(max-width: 850px) {
    .delivery-options {
        grid-template-columns: 1fr;
    }

    .delivery-section h2 {
        font-size: 1.6rem;
    }
}

.maintenance-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #f7fbff, #eaf6ff);
}

.maintenance-card {
    max-width: 700px;
    background: white;
    padding: 60px 40px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

.maintenance-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.maintenance-card h1 {
    color: var(--primary);
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.maintenance-card p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.maintenance-note {
    color: var(--secondary);
    font-weight: 600;
}

@media(max-width: 700px) {
    .maintenance-card {
        padding: 40px 25px;
    }

    .maintenance-card h1 {
        font-size: 1.8rem;
    }
}