:root {
    --bg-color: #050505; /* Noir profond */
    --text-color: #ffffff;
    --accent: #c5a059;   /* Or signature */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    line-height: 1.6;
}

/* Typographie épurée */
h1 { font-family: var(--font-heading); font-size: 3.5rem; letter-spacing: -0.02em; }
p { font-size: 1.2rem; color: #a1a1a1; font-weight: 300; }

/* Section Hero Minimaliste */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.cta-button {
    margin-top: 30px;
    padding: 16px 40px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.4s;
}

.cta-button:hover { background: var(--accent); color: #000; }
.product-image {
            width: 450px; 
            border: 5px solid #1a4175; 
            border-radius: 15px; 
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); 
            transition: transform 0.3s ease;
        }

        .product-image:hover {
            transform: scale(1.05);
        }

        .product-container {
            text-align: center;
            font-family: sans-serif;
            color: #1a4175;
            padding: 50px;
            background-color: #f0f8ff;
        }

        h1 {
            margin-top: 20px;
        }
.logo-link { text-decoration: none; display: inline-block; }

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    /* Création du dégradé doré */
    background: linear-gradient(to bottom, #f3e09d, #d4af37, #a67c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Rend le texte invisible pour laisser voir le dégradé */
}

.compass-icon {
    width: 30px;
    height: 30px;
    color: #d4af37; /* Couleur de la boussole */
}