/* style.css */
/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


/* =========================
   GLOBAL STYLE
========================= */

body{
    background:#f4f4f4;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Rendre toute la typographie plus élégante */
h1,h2,h3,h4,h5,h6{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p,
span,
div,
button,
input,
label{
    font-family: 'Montserrat', sans-serif;
}

body{
    background:#f4f4f4; 
}

.poster-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}

canvas{
    width:100%;
    max-width:700px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);
    background:#fff;
}

.crop-container{
    width:100%;
    height:400px;
    overflow:hidden;
    border-radius:15px;
    background:#ddd;
}

.crop-container img{
    max-width:100%;
}

.card{
    border:none;
}


/* =========================
   HEADER HERO SECTION
========================= */

.hero-section{
    position: relative;
    padding: 20px 10px; 
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    /* border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        inset 0 0 25px rgba(255,255,255,0.05); */

    animation: fadeUp 1s ease;
}

/* Glow Background */
.hero-section::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    /* background: radial-gradient(circle, rgba(255,102,0,0.35), transparent 70%); */
    top: -100px;
    left: -100px;
    z-index: 0;
    animation: pulseGlow 4s infinite ease-in-out;
}

.hero-section::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    /* background: radial-gradient(circle, rgba(255,0,0,0.25), transparent 70%); */
    bottom: -120px;
    right: -120px;
    z-index: 0;
    animation: pulseGlow 5s infinite ease-in-out;
}

/* FIRE ICON */
.fire-icon{
    position: relative;
    z-index: 2;
    font-size: 40px;
    animation:
        fireFloat 2.5s infinite ease-in-out,
        fireGlow 2s infinite alternate;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255,120,0,0.8));
}

/* TITLE */
.main-title{
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;

    background: linear-gradient(90deg, #000000, #dc3545, #ffffff, #000000);

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        gradientMove 6s linear infinite,
        titlePop 1s ease;
}

/* SUBTITLE */
.subtitle{
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: rgba(255, 0, 0, 0.85);
    letter-spacing: 0.5px;
    margin-bottom: 0;
    animation: fadeIn 2s ease;
}
 


/* FOOTER */
.footer-section{
    padding: 25px 15px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-radius: 18px; 
}

.footer-name{
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    margin-bottom: 8px; 
}

.footer-contact{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px){

    .footer-section{
        padding: 20px 12px;
    }

    .footer-name{
        font-size: 15px;
        line-height: 1.5;
    }

    .footer-contact{
        font-size: 13px;
    }

}