/*
Theme Name: Blocksy Child - Container Deutschland
Template: blocksy
Version: 1.0
*/

@import url("../blocksy/style.css");

/* ====================== DESIGN PAGE ACCUEIL ====================== */
.container-deutsch {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero {
    background-attachment: fixed;
    min-height: 100vh;
}

.btn-primary {
    background: #FF6200;
    color: white;
    padding: 18px 42px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-4px);
}

.btn-secondary {
    border: 3px solid white;
    color: white;
    padding: 18px 42px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: white;
    color: #FF6200;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem !important; }
}



/* Nettoyage Tailwind + compatibilité Blocksy */
.container-deutsch {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero img {
    z-index: -1;
}

