/* ===================================
   Independent Press Publications
   Main Stylesheet
   =================================== */

/* CSS Variables - IPP Color Palette */
:root {
    --primary-color: #96613d;
    --primary-hover: #7a4f32;
    --primary-dark: #592b08;
    --secondary-color: #ffd8bd;
    --accent-gold: #d4a574;
    --text-dark: #19110b;
    --text-medium: #563100;
    --text-light: #666666;
    --text-muted: #929292;
    --bg-dark: #19110b;
    --bg-cream: #f9f3ef;
    --bg-light: #ffffff;
    --bg-warm: #fdfbf9;
    --border-color: #e8e2dc;
    --border-light: #f2f2f2;

    /* Typography */
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Karla', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    /* Container */
    --container-width: 1100px;
    --container-narrow: 800px;

    /* Spacing */
    --section-padding: 80px;
    --section-padding-sm: 50px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    background: var(--bg-cream);
}

.clr::after {
    content: "";
    display: table;
    clear: both;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Screen Reader Only */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===================================
   Typography Utilities
   =================================== */
.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-book {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 12px;
}

.btn-book:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-purchase {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 12px;
}

.btn-purchase:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.btn-large {
    padding: 16px 36px;
    font-size: 14px;
}

.btn-footer {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 11px;
    margin-top: 15px;
}

.btn-footer:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

/* ===================================
   Top Bar
   =================================== */
#top-bar-wrap {
    background-color: var(--primary-color);
}

#top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

#top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#top-bar-content,
#top-bar-social-alt {
    color: var(--secondary-color);
}

#top-bar-content a,
#top-bar-social-alt a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

#top-bar-content a:hover,
#top-bar-social-alt a:hover {
    color: #fff;
}

.top-bar-menu {
    display: flex;
    gap: 25px;
}

.top-bar-menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.top-bar-tagline {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    color: var(--secondary-color);
}

/* ===================================
   Header
   =================================== */
#site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#site-header.is-sticky {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo / Site Title */
#site-logo-inner {
    display: flex;
    align-items: center;
    height: 80px;
}

.site-title-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.custom-logo-link:hover .site-title-text {
    color: var(--primary-color);
}

/* Navigation */
#site-navigation-wrap {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-menu > .menu-item > a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 80px;
    line-height: 80px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.main-menu > .menu-item > a:hover,
.main-menu > .menu-item.current-menu-item > a {
    color: var(--primary-color);
}

/* Mobile Menu */
.oceanwp-mobile-menu-icon {
    display: none;
    align-items: center;
    gap: 15px;
}

.hamburger {
    padding: 10px;
    cursor: pointer;
}

.hamburger-box {
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -8px;
}

.hamburger-inner::after {
    content: "";
    bottom: -8px;
}

.hamburger.is-active .hamburger-inner {
    background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

#mobile-dropdown {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

#mobile-dropdown.active {
    display: block;
}

#mobile-dropdown .menu {
    display: flex;
    flex-direction: column;
}

#mobile-dropdown .menu-item a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

#mobile-dropdown .menu-item a:hover {
    color: var(--primary-color);
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background-color: var(--bg-cream);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
}

/* Breadcrumb */
.breadcrumb-nav {
    background-color: var(--bg-warm);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: "/";
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb li[aria-current="page"] {
    color: var(--text-dark);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    margin-bottom: 20px;
}

.section-icon svg {
    width: 60px;
    height: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 20px;
}

.section-divider {
    width: 100px;
    height: 20px;
    margin: 20px auto 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%25' viewBox='0 0 24 24' fill='none' stroke='%2396613d' stroke-width='1' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,6 6,6 6,18 18,18 18,6 24,6'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 24px 20px;
}

/* ===================================
   Welcome Section
   =================================== */
.welcome-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.welcome-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.welcome-text {
    margin: 30px 0;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    position: relative;
    background-color: var(--bg-cream);
    padding: 120px 0;
}

.shape-divider {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider.shape-top {
    top: 0;
}

.shape-divider.shape-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.shape-divider svg {
    width: 100%;
    height: 50px;
}

.shape-fill {
    fill: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.features-cta {
    text-align: center;
    margin-top: 20px;
}

/* ===================================
   Books Section
   =================================== */
.books-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.book-item {
    background: var(--bg-warm);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.book-inner {
    padding: 30px;
    text-align: center;
}

.book-image {
    margin-bottom: 25px;
}

.book-cover-placeholder {
    width: 150px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.book-cover-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.book-cover-placeholder.large {
    width: 180px;
    height: 240px;
}

.book-cover-placeholder.large i {
    font-size: 3.5rem;
}

.book-cover-placeholder.xlarge {
    width: 280px;
    height: 380px;
}

.book-cover-placeholder.xlarge i {
    font-size: 5rem;
}

.book-details {
    text-align: center;
}

.book-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.book-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.book-title a {
    color: var(--text-dark);
}

.book-title a:hover {
    color: var(--primary-color);
}

.book-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.books-cta {
    text-align: center;
}

/* ===================================
   Mission Section
   =================================== */
.mission-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-warm);
}

.mission-content {
    max-width: 700px;
    margin: 0 auto;
}

.mission-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.mission-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding: 0;
    border: none;
    background: none;
}

.mission-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.mission-values {
    margin: 30px 0;
    padding-left: 20px;
}

.mission-values li {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.mission-values li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   About Page Styles
   =================================== */
.about-intro-section {
    padding: var(--section-padding) 0;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-lead {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Values Section */
.values-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.value-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.value-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Beliefs Section */
.beliefs-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.beliefs-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.beliefs-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.beliefs-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.belief-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.belief-item:last-child {
    border-bottom: none;
}

.belief-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.belief-item span {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.mv-item {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mv-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.mv-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.mv-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mv-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mv-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.mv-item ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mv-item ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Who We Serve */
.who-we-serve-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    text-align: center;
}

/* What We Publish */
.publish-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-warm);
}

.publish-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.publish-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.publish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.publish-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.publish-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.publish-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
}

.publish-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Founder Section */
.founder-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.founder-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===================================
   For Authors Page Styles
   =================================== */
.author-welcome-section {
    padding: var(--section-padding) 0;
}

.author-welcome-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.author-welcome-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Expectations Section */
.expectations-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-warm);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expectation-item {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.expectation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-cream);
    border-radius: 50%;
}

.expectation-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.expectation-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.expectation-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.service-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Section */
.why-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.why-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.why-quote {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 30px 0;
    padding: 0;
    border: none;
    background: none;
}

.why-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Ideal Author Section */
.ideal-author-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-warm);
}

.ideal-author-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ideal-item {
    text-align: center;
    padding: 30px 20px;
}

.ideal-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ideal-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.ideal-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Catalog Page Styles
   =================================== */
.catalog-intro-section {
    padding: var(--section-padding-sm) 0;
}

.catalog-intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.catalog-intro-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Purchase Info */
.purchase-info-section {
    padding: 0 0 var(--section-padding-sm);
}

.purchase-info-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 40px;
    background: var(--bg-cream);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.purchase-info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.purchase-info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.purchase-info-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Catalog Books */
.catalog-books-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.catalog-book-item {
    background: var(--bg-warm);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.catalog-book-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 50px;
}

.catalog-book-image {
    position: relative;
}

.catalog-book-image .book-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.catalog-book-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-book-details .book-category {
    margin-bottom: 15px;
}

.catalog-book-details .book-title {
    font-size: 1.75rem;
    margin-bottom: 5px;
}

.book-author {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.catalog-book-details .book-description {
    font-size: 1rem;
    margin-bottom: 25px;
}

.book-actions {
    display: flex;
    gap: 15px;
}

/* What We Publish Section */
.what-we-publish-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-cream);
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.genre-item {
    text-align: center;
    padding: 30px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.genre-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.genre-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.genre-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.genres-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

/* Readers CTA */
.readers-cta-section {
    padding: var(--section-padding-sm) 0;
    background-color: var(--bg-light);
}

.readers-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.readers-cta-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.readers-cta-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ===================================
   Book Page Styles
   =================================== */
.book-hero-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.book-hero-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.book-hero-image {
    position: relative;
}

.book-hero-image .book-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.book-hero-image .book-badge.large {
    padding: 10px 20px;
    font-size: 12px;
}

.book-hero-details {
    padding-top: 20px;
}

.book-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 5px 12px;
    background: var(--bg-cream);
    border-radius: 3px;
}

.book-page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.book-author-line {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.book-author-line a {
    color: var(--primary-color);
}

.book-description-main {
    margin-bottom: 30px;
}

.book-description-main .lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.book-description-main p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.meta-value {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.book-purchase-section {
    margin-top: 30px;
}

.purchase-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Book Details Section */
.book-details-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-warm);
}

.book-details-content {
    max-width: 700px;
    margin: 0 auto;
}

.book-details-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.book-details-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Book Author Section */
.book-author-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.book-author-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.book-author-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 15px;
}

.book-author-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Other Books Section */
.other-books-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.other-books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 40px auto;
}

.other-book-item {
    text-align: center;
}

.other-book-item a {
    display: block;
}

.other-book-item .book-cover-placeholder {
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.other-book-item:hover .book-cover-placeholder {
    transform: translateY(-5px);
}

.other-book-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.other-book-item a:hover h3 {
    color: var(--primary-color);
}

.other-books-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   Author Page Styles
   =================================== */
.author-bio-section {
    padding: var(--section-padding) 0;
}

.author-bio-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.author-photo-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--border-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-photo-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.author-short-bio .lead-text {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.author-short-bio p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Full Bio Section */
.author-full-bio-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-warm);
}

.full-bio-content {
    max-width: 700px;
    margin: 0 auto;
}

.full-bio-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.full-bio-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Vocations Section */
.vocations-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.vocations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vocation-item {
    text-align: center;
    padding: 30px 25px;
    background: var(--bg-warm);
    border-radius: 8px;
}

.vocation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.vocation-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.vocation-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.vocation-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Author Books Section */
.author-books-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-cream);
}

.author-books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.author-book-item {
    text-align: center;
}

.author-book-item a {
    display: block;
}

.author-book-item .book-cover-placeholder {
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.author-book-item:hover .book-cover-placeholder {
    transform: translateY(-5px);
}

.author-book-item h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-book-item .book-genre {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.author-book-item a:hover h3 {
    color: var(--primary-color);
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-intro-section {
    padding: var(--section-padding-sm) 0;
}

.contact-intro-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Options */
.contact-options-section {
    padding: 0 0 var(--section-padding);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-option {
    padding: 40px;
    background: var(--bg-warm);
    border-radius: 8px;
}

.contact-option-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.contact-option-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.contact-option h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-option p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Form */
.contact-form-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper .section-title {
    text-align: center;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-warm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(150, 97, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

.form-note {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

.form-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Location Section */
.location-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.location-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.location-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.location-icon i {
    font-size: 2rem;
    color: #fff;
}

.location-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Expect Section */
.expect-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-cream);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.expect-item {
    text-align: center;
    padding: 30px 25px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.expect-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.expect-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.expect-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.expect-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Final Section */
.contact-final-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.contact-final-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 0;
    border: none;
    background: none;
    margin: 0;
}

/* ===================================
   Footer
   =================================== */
#footer-widgets {
    background-color: var(--bg-dark);
    padding: 70px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-location i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-links li a i {
    font-size: 6px;
    color: var(--primary-color);
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-tagline {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom */
#footer-bottom {
    background-color: #0f0a07;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   Scroll to Top
   =================================== */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .books-grid,
    .features-grid,
    .values-grid,
    .services-grid,
    .expectations-grid,
    .vocations-grid,
    .author-books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .ideal-author-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog-book-inner {
        grid-template-columns: 250px 1fr;
        padding: 40px;
    }

    .book-hero-grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .author-bio-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --section-padding-sm: 40px;
    }

    #top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    #site-navigation-wrap {
        display: none;
    }

    .oceanwp-mobile-menu-icon {
        display: flex;
    }

    #site-header-inner {
        height: auto;
        padding: 15px 0;
    }

    #site-logo-inner {
        height: auto;
    }

    .site-title-text {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: 70vh;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .books-grid,
    .features-grid,
    .values-grid,
    .services-grid,
    .expectations-grid,
    .vocations-grid,
    .author-books-grid,
    .expect-grid {
        grid-template-columns: 1fr;
    }

    .ideal-author-grid {
        grid-template-columns: 1fr;
    }

    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalog-book-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .catalog-book-image {
        display: flex;
        justify-content: center;
    }

    .book-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-hero-image {
        display: flex;
        justify-content: center;
    }

    .book-hero-details {
        padding-top: 0;
    }

    .book-page-title {
        font-size: 2.25rem;
    }

    .book-meta {
        justify-content: center;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .other-books-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    blockquote {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
    }

    .book-page-title {
        font-size: 1.75rem;
    }

    .genres-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Print Styles */
@media print {
    #top-bar-wrap,
    #site-header,
    #footer,
    #scroll-top,
    .hero-section,
    .cta-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .container {
        max-width: 100%;
    }
}
