/* Couleurs et Réinitialisation */
:root {
    --gold: #d4af37;
    --beige-light: #f4efe6;
    --beige-dark: #dfd5c3;
    --text-color: #4a4238;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', 'Georgia', serif;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Logo */
header {
    background-color: var(--white);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--beige-dark);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 90px;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: #888;
    margin-top: 5px;
}

/* Bannière Principale (Hero) */
.hero {
    /* Remplacer "plage.jpg" par votre image de fond de mer/plage */
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('plage.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 4px;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--text-color);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--gold);
}

/* Boutique (Grille de produits) */
#boutique {
    padding: 60px 20px;
    background-color: var(--beige-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-link {
    cursor: pointer;
    overflow: hidden;
    height: 320px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card img:hover {
    scale: 1.05;
}

.product-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Réseaux Sociaux & Pied de page */
.social-section {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--white);
}

.social-section h3 {
    margin-bottom: 25px;
    font-weight: 300;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
}

.fb { background-color: #1877f2; }
.insta { background-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%); }
.vinted { background-color: #00bec4; font-weight: bold; font-family: sans-serif; }

.social-icon:hover { opacity: 0.8; transform: scale(1.1); }
.contact-mail a { color: var(--text-color); }

/* Bouton WhatsApp Flottant */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.whatsapp-float:hover { background-color: #20ba5a; }

/* Responsive */
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; padding: 10px; }
    .hero-content h2 { font-size: 1.6rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
}