/* ============================================
   CUPICAT - Variables de couleurs
   ============================================ */
:root {
    /* Couleurs principales Orange */
    --primary-orange: #ff9933;
    --primary-orange-light: #ffcc80;
    --primary-orange-medium: #ff8c42;

    /* Tons chauds Beige/Crème */
    --warm-beige-light: #fff8e7;
    --warm-beige: #fff4dc;
    --warm-peach: #ffe8d1;
}

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

body {
    font-family: 'SegoeScript', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--warm-beige-light) 0%, var(--warm-beige) 50%, var(--warm-peach) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 153, 51, 0.15);
    overflow: hidden;
}

/* En-tête */
header {
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
}

.logo-container {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 200px;
    height: auto;
    position: relative;
    animation: catWalk 10s ease-in-out infinite;
}

@keyframes catWalk {
    0% {
        transform: translateX(500px);
    }
    30% {
        transform: translateX(0);
    }
    60% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-500px);
    }
}

header h1 {
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.line
{
    height: 1px;
    background-color: var(--warm-beige-light);
}
/* Contenu */
.content {
    padding: 80px 40px;
    text-align: center;
}

@font-face {
  font-family: SegoeScript; /* set name */
  src: url(/SegoeScript.ttf); /* url of the font */
}

.teaser {
    font-size: 2em;
    color: var(--warm-peach);
    font-weight: 600;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Points animés */
.dots {
    display: inline-block;
    margin-left: 5px;
}

.dots .dot {
    display: inline-block;
    opacity: 0;
    animation: dotBlink 1.5s infinite;
}

.dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotBlink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 40px 20px;
        
    }

    header h1 {
        font-size: 2em;
        text-shadow: 0 2px 20px rgba(255, 255, 255,0.2);
    }

    .logo {
        max-width: 120px;
    }

    .content {
        padding: 60px 30px;
    }

    .teaser {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6em;
    }

    .logo {
        max-width: 100px;
    }

    .content {
        padding: 50px 20px;
    }

    .teaser {
        font-size: 1.6em;
    }
}
