/* Custom Fonts */
body { font-family: 'Inter', sans-serif; }
.font-serif { font-family: 'Playfair Display', serif; }

/* ===== PALETTE TERRE CUITE / RÔTISSERIE =====
   Fond ivoire chaud    : #FDF6ED
   Accent terre cuite   : #C8531A
   Brun chocolat foncé  : #1A0A00
   Brun moyen           : #6B4226
   Doré/highlights      : #E07820
   Bordures             : #E8D5C0
   ============================================= */

/* Hero Styling */
.hero-bg {
    background-image: linear-gradient(rgba(230, 97, 15, 0.596), rgba(230, 179, 12, 0.3)), url('image/poulet_pdt.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Section Gradient */
.section-gradient {
    background: linear-gradient(rgba(230, 97, 15, 0.596), rgba(230, 179, 12, 0.3)), #1A0A00;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 1s ease-out forwards; }
.animate-fade-up-delay { animation: fadeUp 1s ease-out 0.3s forwards; opacity: 0; }

/* Navigation links */
.nav-link {
    position: relative;
    padding: 5px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 1px;
    background: white;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img {
    transform: scale(1.1);
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.product-overlay span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    border-bottom: 1px solid #C8531A;
    padding-bottom: 5px;
}

/* Form Fields */
.input-field {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}
.input-field:focus { border-color: #C8531A; }

/* Responsive Mobile Menu State */
#mobile-menu.open { transform: translateX(0); }
