/* =====================================================
   LA GOUSSE D'AIL - PAGE HISTOIRE
   Styles spécifiques page Notre Histoire
   ===================================================== */

/* CONTENU PAGE */
.page-content {
    margin-top: 80px;
    padding: 50px 10px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTION HERO STORY */
.story-hero {
    text-align: center;
    margin-bottom: 100px;
}

.story-main-image {
    width: 100%;
    max-width: 545px;
    height: auto;
    margin-bottom: 60px;
}

.story-main-title {
    font-family: var(--font-serif);
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4em;
    text-align: center;
}

.story-subtitle {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.story-divider {
    width: 150px;
    height: 1px;
    background: #E74C3C;
    margin: 50px auto;
}

.story-intro-text p {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* SECTION CHEF */
.chef-section {
    margin-top: 80px;
}

.chef-title {
    font-family: var(--font-serif);
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.chef-name {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.chef-content {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.chef-image {
    max-width: 324px;
    width: 100%;
    height: auto;
}

.chef-quote {
    font-family: var(--font-serif);
    font-size: 23px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    color: #E74C3C;
    text-align: center;
    margin-bottom: 40px;
}

.chef-bio {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    color: #333;
    text-align: center;
}

/* DÉCORATIONS PROVENÇALES */
.story-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-color: #FDFBF7; 
}

.story-section:hover .deco-img {
    opacity: 0.20;
}

.deco-element {
    position: fixed; /* fixed = toujours visible dans le viewport */
    z-index: 0;
    pointer-events: none;
}

.deco-img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    opacity: 0.12;
    transition: opacity 0.5s ease;
}

.deco-left-top {
    top: 80px;
    left: -20px;
    width: 280px;
    transform: rotate(-10deg);
}

.deco-right-center {
    top: 45%;
    right: 0px;
    width: 240px;
    transform: translateY(-50%) rotate(5deg);
}

.deco-left-bottom {
    bottom: 20px;
    left: 40px;
    width: 180px;
    transform: rotate(5deg);
}

/* FOOTER */
footer {
    background: linear-gradient(180deg, #1A202C 0%, #2D3748 100%);
    color: #A0AEC0;
    padding: 40px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #E53E3E;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .story-main-title,
    .chef-title {
        font-size: 28px;
    }
    
    .story-subtitle,
    .chef-name,
    .chef-quote,
    .chef-bio,
    .story-intro-text p {
        font-size: 18px;
    }
    
    .page-content {
        padding: 60px 20px;
    }
    
    .deco-left-top,
    .deco-right-center,
    .deco-left-bottom {
        display: none;
    }
}
