/* Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap0&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Libre Baskerville', Georgia, serif; */
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.highlight {
    color: #2c5aa0;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

/* Global quote styling - convert straight quotes to curly quotes */
body {
    quotes: """ """ "'" "'";
}

/* Auto-convert straight quotes to curly quotes for common elements */
p, li, blockquote, h1, h2, h3, h4, h5, h6, span, div {
    quotes: """ """ "'" "'";
}

/* Additional elements that commonly contain apostrophes */
button, input, textarea, label, a, cite, em, strong, small {
    quotes: """ """ "'" "'";
}

/* Ensure all text elements use curly apostrophes */
* {
    quotes: """ """ "'" "'";
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

/* Standardized Section Headers */
.section-header {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.section-header.center {
    text-align: center;
}

.section-header.large {
    font-size: 3rem;
}

.section-header.medium {
    font-size: 2rem;
}

.section-header.small {
    font-size: 1.5rem;
}

/* Responsive section headers */
@media (max-width: 768px) {
    .section-header {
        font-size: 2rem;
    }
    
    .section-header.large {
        font-size: 2.5rem;
    }
    
    .section-header.medium {
        font-size: 1.8rem;
    }
    
    .section-header.small {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        font-size: 1.8rem;
    }
    
    .section-header.large {
        font-size: 2.2rem;
    }
    
    .section-header.medium {
        font-size: 1.6rem;
    }
    
    .section-header.small {
        font-size: 1.2rem;
    }
}

p {
    margin-bottom: 1rem;
    quotes: """ """ "'" "'";
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    font-size: 1.1rem;
    font-family: 'Merriweather Sans', sans-serif;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    text-transform: none;
    letter-spacing: normal;
}

.btn-primary {
    color: #2c5aa0;
    border-color: #e0e0e0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
    color: #2c5aa0;
}

/* Hero CTA Button - More Prominent */
.hero .btn-primary {
    background: linear-gradient(145deg, #2c5aa0, #1e3f7a);
    color: white;
    border-color: #2c5aa0;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.25);
}

.hero .btn-primary:hover {
    background: linear-gradient(145deg, #1e3f7a, #2c5aa0);
    color: white;
    border-color: #1e3f7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
    color: #6c757d;
    border-color: #e0e0e0;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #6c757d;
    color: #6c757d;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 75px; /* Ensure consistent header height */
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #2c5aa0;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 90, 160, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-header h2 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    margin: 0;
}

.mobile-logo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.mobile-logo-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Mobile Menu Separator */
.mobile-menu-separator {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 2rem auto;
}

.mobile-menu-close {
    position: absolute;
    right: -30px;
    top: -30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.mobile-nav-link:hover {
    opacity: 0.8;
}

.logo h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    margin: 0;
    color: #2c5aa0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #1e3f7a;
    transform: translateY(-1px);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    align-items: center; /* Center nav items vertically */
    height: 100%; /* Take full height of header */
}

/* Navigation sliding background styles */
.nav-sliding-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.12), rgba(44, 90, 160, 0.06));
    border: 1px solid #2c5aa066;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.15);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: transparent;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: #2c5aa0;
}

/* Pre-Order Header Section */
.pre-order-header {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 0;
    text-align: center;
}

.pre-order-header h2 {
    /* Using standardized section-header class instead */
}

.retailer-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.preferred-retailer {
    display: flex;
    justify-content: center;
}

.retailer-btn.preferred {
    width: 400px;
    height: 100px;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-left, .logo-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.logo-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #e0e0e0, transparent);
    margin: 0 0.5rem;
}

.retailer-btn.preferred .retailer-logo {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.retailer-btn.preferred:hover {
    border-color: #2c5aa0;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    transform: translateY(-3px);
}

.other-retailers {
    text-align: center;
}

.other-retailers h4 {
    font-family: 'Raleway', sans-serif;
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.other-retailer-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.retailer-btn {
    background: white;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.retailer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
}

.retailer-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.retailer-btn:hover .retailer-logo {
    filter: grayscale(0%);
}

.pre-order-explanation {
    margin-top: 2.5rem;
    text-align: center;
    padding: 0;
    position: relative;
}

.pre-order-explanation p {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.pre-order-explanation p::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
}

.learn-more-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #1e3f7a;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/book-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-quote {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 10rem;
    color: #222;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* CTA Button Styles */
.hero-cta-desktop {
    display: block;
    margin-top: 2rem;
}

.hero-cta-mobile {
    display: none;
}

.hero-text h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    opacity: 1;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem !important;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    opacity: 1;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
    opacity: 1;
}

.hero-quote blockquote {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
    opacity: 1;
    /* quotes: """ """ "'" "'"; */
    quotes: "“" "”" "‘" "’";
}

.hero-quote blockquote::before {
    content: open-quote;
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: #2c5aa0;
    font-weight: bold;
    line-height: 1;
    font-style: normal;
}

.hero-quote blockquote::after {
    content: close-quote;
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: #2c5aa0;
    font-weight: bold;
    line-height: 1;
    font-style: normal;
}

.hero-quote cite {
    font-family: 'Raleway', sans-serif;
    color: #2c5aa0;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    letter-spacing: 0.02em;
    opacity: 1;
}

/* Coming Soon Button */
.coming-soon-button {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    bottom: 80px;
    left: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f7a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
    letter-spacing: 0.02em;
}

.coming-soon-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.coming-soon-button .date {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 6px;
    font-weight: 400;
}

.coming-soon-button .divider {
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 6px 0;
}

.coming-soon-button .action {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.hero-image {
    text-align: center;
    position: relative;
}

.book-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    opacity: 1;
    position: relative;
    filter: drop-shadow(8px 8px 20px rgba(0,0,0,0.3)) 
            drop-shadow(15px 15px 30px rgba(0,0,0,0.2));
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
    text-align: center;
}

.newsletter-content h3 {
    /* Using standardized section-header center class instead */
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.newsletter-form .form-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto; /* email first */
    gap: 0.75rem;
    align-items: stretch;
}

.newsletter-form input {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.3s ease;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    transform: translateY(-1px);
}

.newsletter-form button {
    white-space: nowrap;
    padding: 14px 22px;
    height: 100%;
}

@media (max-width: 768px) {
    .newsletter-form .form-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form button {
        height: auto;
        padding: 14px 18px;
    }
}

/* Form Messages */
.form-message {
    margin: 1rem auto 1.25rem auto;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
    max-width: 720px;
}

.form-message--success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message--error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subscription Success State */
.subscription-success {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 249, 250, 0.85));
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 90, 160, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.subscription-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/book-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    border-radius: 16px;
    z-index: -1;
}





.success-message h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.success-message em {
    font-style: italic;
    color: #2c5aa0;
    font-weight: 500;
}

.additional-info {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(44, 90, 160, 0.02));
    border: 1px solid rgba(44, 90, 160, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.additional-info p {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.additional-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-info li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.additional-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive adjustments for success state */
@media (max-width: 768px) {
    .subscription-success {
        padding: 2rem 1rem;
    }
    
    .success-message h3 {
        font-size: 1.6rem;
    }
    
    .success-message p {
        font-size: 1rem;
    }
    
    .additional-info {
        padding: 1rem;
    }
}

/* Contact Form Success & Error States */
.contact-success,
.contact-error {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 249, 250, 0.85));
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 90, 160, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.contact-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/book-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    border-radius: 16px;
    z-index: -1;
}

.contact-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.02));
    border-radius: 16px;
    z-index: -1;
}

.contact-success .success-message h3,
.contact-error .error-message h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-success .success-message h3 {
    color: #28a745;
}

.contact-error .error-message h3 {
    color: #dc3545;
}

.contact-success .success-message p,
.contact-error .error-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.contact-error .error-message button {
    margin-top: 1rem;
}

/* Responsive adjustments for contact success/error states */
@media (max-width: 768px) {
    .contact-success,
    .contact-error {
        padding: 2rem 1rem;
    }
    
    .contact-success .success-message h3,
    .contact-error .error-message h3 {
        font-size: 1.5rem;
    }
    
    .contact-success .success-message p,
    .contact-error .error-message p {
        font-size: 1rem;
    }
    
    /* Contact section mobile styles */
    .contact-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    .contact-email a {
        font-size: 1rem;
    }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 480px) {
    .contact-details {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-email a {
        font-size: 0.95rem;
    }
}

.newsletter-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    font-style: italic;
}

.newsletter-subtext {
    font-size: 0.8rem !important;
    color: #666 !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hide the "You'll be entered to win..." text */
/* Hide only the tagline paragraph, not all paragraphs in newsletter section */
.newsletter-content p.newsletter-tagline {
    display: none;
}

.info-icon {
    font-size: 1rem;
    color: #999;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.info-icon:hover {
    opacity: 1;
    color: #2c5aa0;
}

/* About Book Section */
.about-book {
    padding: 80px 0;
    background-color: #fff;
}

.about-book h2 {
    /* Using standardized section-header class instead */
}

/* New grid layout for the book section */
.book-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.grid-row:last-of-type {
    margin-bottom: 0;
}

.grid-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Author intro row styling */
.author-row {
    align-items: center;
    grid-template-columns: 0.8fr 2.2fr;
}

.headshot-col {
    text-align: center;
}

.author-headshot-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    border: 4px solid #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.author-headshot-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.author-text-col p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    quotes: """ """ "'" "'";

}

.author-text-col p.subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.author-text-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
    margin: 1.5rem auto;
}

/* Section title row styling */
.section-title-row {
    text-align: center;
    margin: 3rem 0 1rem 0;
    padding: 2rem 0 0 0;
}

.section-title-row h2 {
    /* Using standardized section-header class instead */
}

/* Learning row styling */
.learning-row {
    align-items: start;
}

.learning-col {
    padding-right: 3rem;
}

.book-cover-col {
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.learning-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.learning-list li {
    position: relative;
    padding: 1rem 0 1rem 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    quotes: """ """ "'" "'";
}

.learning-list li::before {
    content: 'keyboard_double_arrow_right';
    font-family: 'Material Icons';
    font-size: 1.2rem;
    
    position: absolute;
    left: 0;
    top: 1.25rem;
    color: #2c5aa0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    
    /* SVG-specific properties - uncomment if using SVG options */
    width: 20px;
    height: 20px;
    /* /* display: block; */
}

.closing-text {
    font-size: 1.2rem;
    color: #2c5aa0;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
}

.book-cover-section {
    text-align: center;
}

.book-cover-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.book-cover-image:hover {
    transform: scale(1.02);
}

.learning-content {
    padding-left: 1rem;
}

.book-content-footer {
    text-align: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.book-cta {
    text-align: center;
    margin-top: 2rem;
}

/* About Author Section */
.about-author {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: start;
}

.author-image {
    text-align: center;
}

.author-headshot {
    width: 280px;
    height: 350px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(0 4px 12px rgba(44, 90, 160, 0.15));
    transition: all 0.3s ease;
}

.author-headshot:hover {
    border-color: #2c5aa0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    filter: drop-shadow(0 8px 20px rgba(44, 90, 160, 0.25));
    transform: translateY(-2px);
}

.author-text h2 {
    /* Using standardized section-header class instead */
}

.author-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.author-cta {
    margin-top: 2rem;
}

.other-work-subtitle {
    /* Using standardized section-header center medium class instead */
}

/* Removed the HR under the subtitle */

/* Full-width other work section */
.other-work-full {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}



/* Elegant brand logo styling */
.brand-logos-elegant {
    margin-top: 2rem;
}

.logo-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
    min-height: 70px;
}

.logo-item:hover {
    border-color: #2c5aa0;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.brand-logo {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover .brand-logo {
    filter: grayscale(0%);
}

/* And more link styling */
.and-more-link {
    text-decoration: none;
    color: #2c5aa0;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.and-more-text {
    text-align: center;
}

.logo-item:hover .and-more-link {
    color: #1a3d6b;
}

/* See More Work Link Styling */
.see-more-work-link {
    text-align: center;
    margin-top: 1rem;
}

.see-more-work-link a {
    display: inline-block;
    text-decoration: none;
    color: #2c5aa0;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.see-more-work-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.08), rgba(44, 90, 160, 0.04));
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.see-more-work-link a:hover {
    color: #1e3f7a;
    border-color: rgba(44, 90, 160, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
}

.see-more-work-link a:hover::before {
    left: 0;
}

.brand-logos-compact {
    display: grid;
    gap: 2rem;
}

.logo-section h4 {
    font-family: 'Raleway', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.logo-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-placeholder-compact {
    text-align: center;
    color: #999;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Pre-Order Section */
.pre-order {
    padding: 80px 0;
    background-color: #fff;
}

.pre-order h2 {
    /* Using standardized section-header class instead */
}

.preorder-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.preorder-subtitle {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

.pre-order-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pre-order-item {
    text-align: left;
    padding: 0;
}

.pre-order-item h3 {
    font-family: 'Raleway', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.02em;
}

.pre-order-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #2c5aa0;
}

.pre-order-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.pre-order-cta {
    text-align: center;
    margin-top: 2rem;
}



/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    /* Using standardized section-header class instead */
}

.contact h3 {
    font-family: 'Raleway', sans-serif;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.contact-divider {
    width: 50%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg,transparent, #2c5aa0, transparent);
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #555 !important;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

/* When form is commented out, center the contact info */
.contact-content:has(.contact-info:only-child) {
    justify-content: center;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Raleway', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.02em;
}

/* .contact-info h3::after,
.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #2c5aa0, transparent);
} */

.contact-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-item h4 {
    font-family: 'Raleway', sans-serif;
    color: #2c5aa0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.contact-item p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    flex-grow: 1;
}

.contact-email {
    margin-top: auto;
}

.contact-email a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #1e3d6f;
    text-decoration: underline;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-content input,
.contact-form-content textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Merriweather Sans', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form-content input:focus,
.contact-form-content textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.contact-form-content textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-content button {
    align-self: flex-start;
    /* margin-top: 0.5rem; */
    align-self: flex-end;
    /* margin-top: 0.5rem; */
}

/* Footer */
.footer {
    position: relative;
    color: white;
    padding: 50px 0 30px 0;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/book-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Top Row: Navigation and Name */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-nav-left,
.footer-nav-right {
    display: flex;
    gap: 40px;
    flex: 1;
}

.footer-nav-left {
    justify-content: flex-start;
}

.footer-nav-right {
    justify-content: flex-end;
}

.footer-nav-left a,
.footer-nav-right a {
    color: #666;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    white-space: nowrap;
    position: relative;
}

.footer-nav-left a:hover,
.footer-nav-right a:hover {
    color: #2c5aa0;
    transform: translateY(-1px);
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.4)) 
            drop-shadow(0 0 12px rgba(218, 165, 32, 0.3))
            drop-shadow(0 0 16px rgba(218, 165, 32, 0.2));
}

/* Footer navigation link styles are now handled by .footer-nav-left a and .footer-nav-right a */

/* Central Name */
.footer-name {
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    flex: 1;
}

.footer-name h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #444;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.footer-name-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.footer-name-link:hover {
    color: #2c5aa0;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background: rgba(102, 102, 102, 0.08);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.12);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-icon:hover {
    background: rgba(44, 90, 160, 0.15);
    color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 90, 160, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
    background: rgba(44, 90, 160, 0.18);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Bottom Legal Links */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.footer-legal a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.06);
    backdrop-filter: blur(6px);
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.footer-legal a:hover {
    color: #2c5aa0;
    transform: translateY(-1px);
}

.footer-legal a:hover::before {
    opacity: 1;
    background: rgba(44, 90, 160, 0.1);
    box-shadow: 0 3px 15px rgba(44, 90, 160, 0.12);
}

/* Footer Bottom Row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Copyright Information */
.footer-copyright {
    text-align: left;
    display: flex;
    align-items: center;
}

.footer-copyright p {
    color: #333;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    margin: 0;
    opacity: 1;
    letter-spacing: 0.02em;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Created By Section */
.footer-created-by {
    text-align: right;
    display: flex;
    align-items: center;
}

.footer-created-by p {
    color: #333;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    margin: 0;
    opacity: 1;
    letter-spacing: 0.02em;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-created-by a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-created-by a:hover {
    color: #2c5aa0;
}

/* Footer Logo */
.footer-logo {
    vertical-align: middle;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.footer-created-by a:hover .footer-logo {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pre-order-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .retailer-buttons {
        gap: 1.5rem;
    }
    
    .retailer-btn.preferred {
        width: 320px;
        height: 85px;
        padding: 1.2rem;
    }
    
    .logo-divider {
        height: 40px;
    }
    
    .other-retailer-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .retailer-btn {
        padding: 1rem;
        min-height: 60px;
    }
    
    .retailer-logo {
        max-width: 80%;
        max-height: 80%;
    }
    
    .header-content {
        flex-direction: row;
        gap: 0;
        padding: 0.5rem 0;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-link:hover {
        transform: translateY(-1px);
    }
    
    /* Mobile Footer Layout */
    .footer-top-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-name {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .footer-name-link:hover {
        transform: translateY(-1px);
    }
    
    .footer-nav-left,
    .footer-nav-right {
        order: 2;
        gap: 20px;
        justify-content: center;
    }
    
    /* Mobile Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .footer-copyright,
    .footer-created-by {
        text-align: center;
    }
    
    .footer-nav-left {
        margin-bottom: 0.5rem;
    }
    
    .hero-quote {
        margin-bottom: 2rem;
        padding: 0 1rem;
        position: relative;
        z-index: 3;
    }
    
    .hero-quote blockquote {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .hero-quote blockquote::before,
    .hero-quote blockquote::after {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        text-align: center;
    }
    
    .hero-image img {
        margin: 0 auto;
        display: block;
    }
    
    .hero-cta-desktop {
        display: none;
    }
    
    .hero-cta-mobile {
        display: block;
        order: 3;
        margin-top: 2rem;
        text-align: center;
    }
    
    .hero-cta-mobile .btn {
        margin: 0 auto;
    }
    
    .hero-text h2 {
        opacity: 1;
    }
    
    .hero-text p {
        text-align: center;
        opacity: 1;
    }
    
    .coming-soon-button {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
        top: -35px;
        left: auto;
        right: -5px;
    }
    
    .coming-soon-button .date {
        font-size: 0.8rem;
    }
    
    .coming-soon-button .action {
        font-size: 0.85rem;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact h2 {
        /* Using standardized section-header responsive styles instead */
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-form-content input,
    .contact-form-content textarea {
        padding: 0.8rem;
        font-size: 1rem;
        width: 85%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
    
    .contact-form-content .btn {
        margin: 0 auto;
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Footer responsive styles */
    .footer-nav {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-nav-left,
    .footer-nav-right {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-name h2 {
        font-size: 2.8rem;
    }
    
    .footer-name-link:hover {
        transform: translateY(-1px);
    }
    
    .footer-social {
        gap: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-legal {
        gap: 30px;
    }
    
    .pre-order-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .learning-list li {
        padding: 0.8rem 0 0.8rem 2rem;
        font-size: 1rem;
        quotes: """ """ "'" "'";
        text-align: left;
    }
    
    .learning-list {
        text-align: left;
    }
    
    .learning-list li::before {
        content: 'keyboard_double_arrow_right';
        font-family: 'Material Icons';
        font-size: 1.1rem;
    }
    
    /* New grid layout responsive styles */
    .grid-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .author-headshot-circle {
        width: 250px;
        height: 250px;
    }
    
    .author-headshot {
        width: 220px;
        height: 275px;
    }
    
    .learning-col {
        padding-right: 0;
        order: 1;
    }
    
    .book-cover-col {
        order: 2;
        text-align: center;
    }
    
    .book-cover-col img {
        margin: 0 auto;
        display: block;
    }
    
    .learning-content {
        padding-left: 0;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-grid-elegant {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .logo-item {
        padding: 0.6rem 1rem;
        min-height: 65px;
    }
    
    .brand-logo {
        max-height: 45px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .newsletter-form input {
        max-width: 100%;
        width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    .newsletter-form .btn {
        margin: 0 auto;
        display: block;
    }
    
    .newsletter-description {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .pre-order-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pre-order-header {
        padding: 1.5rem 0;
    }
    
    .pre-order-header h2 {
        /* Using standardized section-header responsive styles instead */
    }
    
    .retailer-buttons {
        gap: 1rem;
    }
    
    .retailer-btn.preferred {
        width: 280px;
        height: 75px;
        padding: 1rem;
    }
    
    .logo-divider {
        height: 35px;
    }
    
    .other-retailer-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .retailer-btn {
        font-size: 0.85rem;
        padding: 0.7rem 0.3rem;
        min-height: 45px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h2 {
        opacity: 1;
    }
    
    .hero-quote blockquote {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .hero-quote blockquote::before,
    .hero-quote blockquote::after {
        font-size: 2rem;
    }
    
    .hero-cta-desktop {
        display: none;
    }
    
    .hero-cta-mobile {
        display: block;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-grid-elegant {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.6rem;
    }
    
    .logo-item {
        padding: 0.5rem 0.8rem;
        min-height: 55px;
    }
    
    .brand-logo {
        max-height: 40px;
    }
    
    .logo-link:hover {
        transform: translateY(-1px);
    }
    
    .author-headshot {
        width: 180px;
        height: 225px;
    }
    
    .contact h2 {
        /* Using standardized section-header responsive styles instead */
    }
    
    .contact-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Mobile footer styles */
    .footer-top-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-name {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .footer-name h2 {
        font-size: 2.2rem;
    }
    
    .footer-name-link:hover {
        transform: translateY(-1px);
    }
    
    .footer-nav-left,
    .footer-nav-right {
        order: 2;
        gap: 20px;
        justify-content: center;
    }
    
    /* Mobile Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .footer-copyright,
    .footer-created-by {
        text-align: center;
    }
    
    .footer-copyright p,
    .footer-created-by p {
        font-size: 0.8rem;
    }
    
    .footer-nav-left {
        margin-bottom: 0.5rem;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-legal {
        gap: 20px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-form-content input,
    .contact-form-content textarea {
        padding: 0.7rem;
        font-size: 1rem;
        width: 75%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    
    .contact-form-content textarea {
        min-height: 100px;
    }
    
    .contact-form-content .btn {
        margin: 0 auto;
        display: block;
    }
    
    .newsletter-form input {
        width: 75%;
        margin: 0 auto;
        display: block;
    }
    
    .newsletter-form .btn {
        margin: 0 auto;
        display: block;
    }
    
    .learning-list {
        text-align: left;
    }
    
    .learning-list li {
        text-align: left;
    }
    
    .learning-list li::before {
        content: 'keyboard_double_arrow_right';
        font-family: 'Material Icons';
        font-size: 1.1rem;
    }
}

/* Dev Controls - Clean, Single Button Design */
.dev-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.dev-menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(44, 90, 160, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dev-menu-toggle:hover {
    background: rgba(44, 90, 160, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(44, 90, 160, 0.4);
}

.dev-icon {
    font-size: 20px;
    filter: grayscale(1) brightness(2);
}

.dev-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 160px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideUpFade 0.2s ease-out;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dev-menu-header {
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
}

.dev-menu-item {
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dev-menu-item:hover {
    background-color: #f8f9fa;
}

.dev-menu-item:active {
    background-color: #e9ecef;
}

.dev-menu-item.active {
    background-color: rgba(44, 90, 160, 0.1);
    color: #2c5aa0;
    font-weight: 500;
}

/* Loading States and Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

/* General Form Input Consistency */
input, textarea, select {
    font-family: 'Merriweather Sans', sans-serif;
}

/* Form Input Loading State */
.newsletter-form.loading input {
    pointer-events: none;
    transition: all 0.3s ease;
}

.newsletter-form.loading input:disabled {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
}

/* Submit Button Loading State */
.btn.loading {
    position: relative;
    pointer-events: none;
    background: #2c5aa0 !important;
    color: white !important;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

.btn.loading:disabled {
    background: #2c5aa0 !important;
    opacity: 1;
} 