/* ==========================================================================
   A. M. Deese Author Website - Main Stylesheet
   ========================================================================== */

/* Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #2a2a2a;
    overflow-x: hidden;
    background: #0f0f1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #e8e8e8;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #e8e8e8;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Active state for hamburger */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Spicy Link Styling */
.spicy-link {
    color: #ff6b6b !important;
    font-weight: bold;
}

.spicy-link:hover {
    color: #ff4757 !important;
}

/* Hero Section (Homepage)
   ========================================================================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a0a2e 0%, #3d1e4f 50%, #8b2635 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="flame"><stop offset="0%" stop-color="%23ff6b35" stop-opacity="0.3"/><stop offset="100%" stop-color="%23000000" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="400" r="200" fill="url(%23flame)"/><circle cx="900" cy="200" r="250" fill="url(%23flame)"/></svg>');
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
    font-style: italic;
}

/* Page Hero (Other Pages)
   ========================================================================== */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1a0a2e 0%, #3d1e4f 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #c8c8c8;
}

/* Buttons
   ========================================================================== */
.cta-button, .buy-btn, .submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #a67c00 100%);
    color: #1a0a2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .buy-btn:hover, .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.buy-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.buy-btn.secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

/* Featured Series Section
   ========================================================================== */
.featured-series {
    padding: 5rem 2rem;
    background: #0f0f1e;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    letter-spacing: 2px;
}

.series-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-cover-display {
    display: flex;
    gap: 1rem;
    justify-content: center;
    perspective: 1000px;
}

.book-cover, .placeholder-cover {
    width: 180px;
    height: 270px;
    background: linear-gradient(135deg, #8b2635 0%, #3d1e4f 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    border: 2px solid #d4af37;
}

.book-cover:hover, .placeholder-cover:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.series-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.series-info p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #c8c8c8;
    font-size: 1.05rem;
}

.buy-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Books Page
   ========================================================================== */
.book-series-section {
    padding: 5rem 2rem;
    background: #0f0f1e;
    color: white;
}

.book-series-section.alt-bg {
    background: #1a0a2e;
}

.series-title {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
}

.series-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #c8c8c8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.book-card-image {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-card-image .placeholder-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3d1e4f 0%, #8b2635 100%);
    border: none;
    border-radius: 0;
    font-size: 1.2rem;
}

.book-card-content {
    padding: 1.5rem;
}

.book-card h3, .book-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.series-tag {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.book-description {
    color: #c8c8c8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Signed Copies Section
   ========================================================================== */
.signed-copies-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #8b2635 0%, #3d1e4f 100%);
    color: white;
    text-align: center;
}

.signed-copies-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.signed-copies-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page
   ========================================================================== */
.about-section {
    padding: 5rem 2rem;
    background: #0f0f1e;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.author-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #3d1e4f 0%, #8b2635 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    border: 2px solid #d4af37;
}

.author-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-content h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin: 2rem 0 1rem;
}

.about-content p {
    line-height: 1.8;
    color: #c8c8c8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Projects Section
   ========================================================================== */
.projects-section {
    padding: 5rem 2rem;
    background: #1a0a2e;
    color: white;
}

.projects-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.project-card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #a67c00 100%);
    transition: width 0.3s;
}

.progress-text {
    color: #c8c8c8;
    font-size: 0.9rem;
}

/* Contact Page
   ========================================================================== */
.contact-section {
    padding: 5rem 2rem;
    background: #0f0f1e;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #c8c8c8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #a67c00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    border-radius: 25px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #d4af37;
    color: #1a0a2e;
}

/* Contact Form
   ========================================================================== */
.contact-form-container h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: white;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-note {
    margin-top: 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* Newsletter Section
   ========================================================================== */
.newsletter {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #8b2635 0%, #3d1e4f 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #d4af37;
    color: #1a0a2e;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.newsletter-form button:hover {
    background: #a67c00;
    transform: translateY(-2px);
}

/* Mailchimp Form Styling Override */
#mc_embed_signup {
    background: transparent !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    clear: both !important;
}

#mc_embed_signup form {
    padding: 0 !important;
    text-align: center !important;
}

#mc_embed_signup_scroll {
    width: 100% !important;
}

#mc_embed_signup .indicates-required {
    text-align: center !important;
    margin-bottom: 1rem !important;
    color: #c8c8c8 !important;
    font-size: 0.9rem !important;
}

#mc_embed_signup .asterisk {
    color: #d4af37 !important;
}

#mc_embed_signup .mc-field-group {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
}

#mc_embed_signup label {
    display: block !important;
    font-weight: bold !important;
    color: #d4af37 !important;
    margin-bottom: 0.5rem !important;
    font-size: 1rem !important;
    text-align: center !important;
}

#mc_embed_signup input[type="email"] {
    width: 100% !important;
    max-width: 400px !important;
    padding: 1rem !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 25px !important;
    background: white !important;
    color: #1a0a2e !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
}

#mc_embed_signup input[type="email"]:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

#mc_embed_signup .button,
#mc_embed_signup input[type="submit"] {
    width: auto !important;
    padding: 1rem 3rem !important;
    background: linear-gradient(135deg, #d4af37 0%, #a67c00 100%) !important;
    color: #1a0a2e !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    letter-spacing: 1px !important;
    margin: 1rem auto 0 !important;
    display: inline-block !important;
    line-height: 1.5 !important;
    height: auto !important;
    vertical-align: middle !important;
}

#mc_embed_signup .button:hover,
#mc_embed_signup input[type="submit"]:hover {
    background: linear-gradient(135deg, #a67c00 0%, #d4af37 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6) !important;
}

#mc_embed_signup .clear.foot {
    text-align: center !important;
    margin-top: 1rem !important;
}

#mc_embed_signup .optionalParent {
    margin-top: 1.5rem !important;
}

/* Hide or style Mailchimp branding */
#mc_embed_signup .optionalParent p {
    margin-top: 1.5rem !important;
    opacity: 0.5 !important;
    text-align: center !important;
}

#mc_embed_signup .refferal_badge {
    opacity: 0.6 !important;
    transition: opacity 0.3s !important;
}

#mc_embed_signup .refferal_badge:hover {
    opacity: 1 !important;
}

/* Response messages */
#mce-responses {
    margin-top: 1rem !important;
}

#mce-error-response,
#mce-success-response {
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    margin: 1rem auto !important;
    max-width: 400px !important;
}

#mce-success-response {
    color: #4caf50 !important;
    background: rgba(76, 175, 80, 0.1) !important;
}

/* Hide the honeypot field properly */
#mc_embed_signup div[aria-hidden="true"] {
    position: absolute !important;
    left: -5000px !important;
}

/* Footer
   ========================================================================== */
footer {
    background: #0a0a0f;
    color: #888;
    padding: 2rem;
    text-align: center;
}

footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #a67c00;
}

/* Lexi Lopez Page Styles
   ========================================================================== */
.spicy-hero {
    background: linear-gradient(135deg, #8b2635 0%, #3d1e4f 50%, #1a0a2e 100%);
}

.content-warning {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ff6b6b;
    font-weight: bold;
}

.lexi-intro-section {
    padding: 5rem 2rem;
    background: #0f0f1e;
    color: white;
}

.lexi-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lexi-intro-content h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.lexi-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c8c8c8;
    margin-bottom: 1.5rem;
}

.coming-soon-section {
    padding: 5rem 2rem;
    background: #1a0a2e;
    color: white;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.featured-book-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.book-cover-large {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2/3;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: transform 0.3s;
}

.book-cover-large:hover {
    transform: translateY(-10px) rotateY(-5deg);
}

/* Ensure book cover images stay contained */
.book-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.spicy-cover {
    background: linear-gradient(135deg, #8b2635 0%, #3d1e4f 50%, #1a0a2e 100%);
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-content {
    text-align: center;
    padding: 2rem;
}

.book-title-on-cover {
    font-size: 2rem;
    color: #d4af37;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.author-on-cover {
    font-size: 1.2rem;
    color: #ff6b6b;
    letter-spacing: 2px;
}

.featured-book-info h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.heat-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.flame {
    font-size: 1.2rem;
}

.flame-empty {
    font-size: 1.2rem;
    opacity: 0.3;
}

.rating-text {
    margin-left: 0.5rem;
    color: #c8c8c8;
    font-size: 0.9rem;
}

.book-tagline {
    font-size: 1.2rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.book-blurb p {
    color: #c8c8c8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tropes-section {
    margin: 2rem 0;
}

.tropes-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tropes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trope-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.trope-tag:hover {
    background: #d4af37;
    color: #1a0a2e;
}

.publication-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    border-radius: 8px;
}

.pub-status {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.pub-note {
    color: #c8c8c8;
    font-style: italic;
}

.why-lexi-section {
    padding: 5rem 2rem;
    background: #0f0f1e;
    color: white;
}

.why-lexi-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

.why-lexi-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-lexi-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c8c8c8;
    margin-bottom: 1.5rem;
}

.content-warnings-section {
    padding: 5rem 2rem;
    background: #1a0a2e;
    color: white;
}

.content-warnings-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

.warnings-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
}

.warnings-box h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.warnings-box p {
    color: #c8c8c8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.warnings-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.warnings-list li {
    color: #c8c8c8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.warnings-list li::before {
    content: '•';
    color: #ff6b6b;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.warnings-note {
    font-style: italic;
    margin-top: 1.5rem;
}

.privacy-note {
    font-size: 0.9rem;
    color: #c8c8c8;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide navigation by default on mobile */
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(20, 20, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Show navigation when active */
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .series-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .book-cover-display {
        flex-direction: column;
        align-items: center;
    }

    .books-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .series-title {
        font-size: 2rem;
    }

    .featured-book-grid {
        grid-template-columns: 1fr;
    }
}