/*
Theme Name:     Child Theme for Hello Elementor
Template:       hello-elementor
Version:        1.0.0
Text Domain:    hello-child-custom
*/

@import url("../hello-elementor/style.css");


/* Café de Rouen - Design System Sombre & Chic */

:root {
    /* Base colors - Dark theme */
    --background: hsl(240, 10%, 3.9%);
    --foreground: hsl(0, 0%, 98%);

    --card: hsl(240, 10%, 3.9%);
    --card-foreground: hsl(0, 0%, 98%);

    /* Primary - Rouge du logo Café de Rouen */
    --primary: hsl(0, 85%, 55%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-glow: hsl(0, 85%, 60%);

    /* Secondary - Gris sombre élégant */
    --secondary: hsl(240, 3.7%, 15.9%);
    --secondary-foreground: hsl(0, 0%, 98%);

    /* Muted - Pour les textes secondaires */
    --muted: hsl(240, 3.7%, 15.9%);
    --muted-foreground: hsl(240, 5%, 64.9%);

    /* Accent - Orange secondaire du logo */
    --accent: hsl(15, 85%, 50%);
    --accent-foreground: hsl(240, 10%, 3.9%);

    --border: hsl(240, 3.7%, 15.9%);
    --ring: hsl(0, 85%, 55%);

    --radius: 0.5rem;

    /* Gradients pour les effets visuels */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
    --gradient-dark: linear-gradient(180deg, var(--background), hsl(240, 10%, 2%));
    --gradient-accent: linear-gradient(135deg, var(--accent), hsl(45, 93%, 52%));

    /* Shadows pour les effets de profondeur */
    --shadow-elegant: 0 10px 30px -10px hsla(0, 85%, 55%, 0.3);
    --shadow-glow: 0 0 40px hsla(0, 85%, 60%, 0.4);
    --shadow-card: 0 4px 20px -4px hsla(240, 10%, 2%, 0.5);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    font-family: "Anton", serif;
}

.custom-logo-link img {
    height: 60px; /* hauteur réduite pour desktop */
    width: auto;  /* largeur auto pour garder les proportions */
    display: inline-block; /* éviter que l'image soit block */
    object-fit: contain; /* garder les proportions */
}

/* Responsive pour le logo */
@media (max-width: 768px) {
    .custom-logo-link img {
        height: 50px; /* plus petit sur mobile */
    }
}

@media (min-width: 1024px) {
    .custom-logo-link img {
        height: 80px; /* plus grand sur desktop large */
    }
}
  
body {
    background-color: #000000;
}

header {
  background-attachment: fixed;
} 

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.marquee-wrapper {
  display: flex;
  width: 200%;
  animation: marquee 10s linear infinite;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 2rem;
  flex-shrink: 0;
  width: 100%;
}

.marquee-text {
  flex-shrink: 0;
  font-size: 2rem;
}


#sb_instagram {
  max-width: 72rem;
color: #fff;
}

/* Styles pour la page Mentions Légales */
.mentions-legales-page {
    min-height: 100vh;
    background: var(--background);
    color: var(--foreground);
    padding: 4rem 0;
}

.mentions-legales-page .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.mentions-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.mentions-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.page-title {
    font-family: "Anton", serif;
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mentions-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--secondary);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition-smooth);
}

.mentions-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.mentions-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.mentions-section p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    text-transform: none;
}

.mentions-section strong {
    color: var(--accent);
    font-weight: 700;
}

.mentions-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.mentions-footer p {
    color: var(--muted-foreground);
    font-style: italic;
    font-size: 0.9rem;
    text-transform: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .mentions-legales-page {
        padding: 2rem 0;
    }
    
    .mentions-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .mentions-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .mentions-section h2 {
        font-size: 1.3rem;
    }
}
