/* MARC SISME - OFFICIAL STYLES */
:root {
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-mid: #dee2e6;
    --gray-dark: #343a40;
    --orange: #FFB347;
    --orange-hover: #FF8C00;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--gray-dark); line-height: 1.6; background: var(--white); scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav { padding: 25px 0; border-bottom: 1px solid var(--gray-mid); background: var(--white); position: sticky; top: 0; z-index: 100; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; letter-spacing: 1px; color: var(--gray-dark); font-weight: bold; }
.nav-links a { text-decoration: none; color: var(--gray-dark); margin-left: 20px; font-weight: 600; }
.lang-btn { background: var(--gray-light); padding: 5px 12px; border-radius: 5px; border: 1px solid var(--gray-mid); }

/* Hero Section */
.hero { display: flex; align-items: center; padding: 80px 20px; gap: 60px; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.subtitle { font-size: 1.3rem; color: #666; margin-bottom: 35px; }
.hero-image img { width: 100%; max-width: 350px; box-shadow: 20px 20px 60px rgba(0,0,0,0.1); border-radius: 4px; }

/* Buttons */
.btn { display: inline-block; padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 5px; transition: 0.3s; margin: 5px 15px 5px 0; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary { border: 2px solid var(--orange); color: var(--orange); }

/* Buy Section (The New Part) */
.buy-section { padding: 80px 0; border-top: 1px solid var(--gray-mid); }
.buy-section h2 { text-align: center; margin-bottom: 50px; font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.buy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.buy-category { text-align: center; background: var(--gray-light); padding: 30px; border-radius: 10px; }
.buy-category h3 { margin-bottom: 25px; color: var(--gray-dark); border-bottom: 2px solid var(--orange); display: inline-block; padding-bottom: 5px; }
.link-list { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.buy-link { 
    text-decoration: none; 
    color: var(--gray-dark); 
    background: white; 
    padding: 12px 20px; 
    border-radius: 5px; 
    width: 220px; 
    transition: 0.3s; 
    border: 1px solid var(--gray-mid);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.buy-link:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-2px); }

/* Reviews */
.reviews { background: var(--gray-light); padding: 80px 0; }
.reviews h2 { text-align: center; margin-bottom: 50px; font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: space-between; }
.stars { color: var(--orange); margin-bottom: 15px; font-size: 1.1rem; }
cite { display: block; margin-top: 15px; font-weight: 600; color: #999; font-style: normal; font-size: 0.9rem; }

/* Author */
.author { display: flex; padding: 100px 20px; gap: 50px; align-items: center; }
.author-img img { width: 250px; border-radius: 10px; filter: grayscale(100%); transition: 0.5s; }
.author-img img:hover { filter: grayscale(0%); }
.author-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 20px; }

footer { padding: 50px; text-align: center; border-top: 1px solid var(--gray-mid); font-size: 0.9rem; background: var(--white); }

/* Prevents the text from pushing the image */
.hero-blurb {
    max-width: 600px; /* Limits the width so it won't squash the cover */
    margin-bottom: 30px;
    text-align: left;
}

.hero-blurb p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a; /* A slightly softer gray for readability */
    margin-bottom: 15px;
}

.hero-blurb em {
    font-weight: 600;
    font-style: italic;
}

/* Ensure the hero container stays flexible but balanced */
.hero {
    display: flex;
    align-items: flex-start; /* Aligns text and image to the top */
    justify-content: space-between;
    gap: 40px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 40px 20px; }
    .hero-text h1 { font-size: 2.5rem; }
    .author { flex-direction: column; text-align: center; }
}