/* Modern Purple & Cyan Theme for Cozy Mystery Finds */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cerebri Sans', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ac92fa;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cerebri Sans', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #6a4387;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { 
    font-size: 2.5rem; 
    text-align: center;
    margin-bottom: 1.5rem;
}
h3 { 
    font-size: 2.2rem; 
    margin-bottom: 0.5rem;
}
h4 { 
    font-size: 1.8rem; 
    margin-bottom: 0.5rem;
}
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: #444;
}

a {
    color: #6a4387;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #48c3be;
    text-decoration: underline;
}

/* Professional Navbar Styles */

.navbar {
    background: linear-gradient(135deg, #96ebf0 0%, #48c3be 100%);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #6a4387;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

/* Logo Section */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand a:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background: #6a4387;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #48c3be;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #6a4387;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #6a4387;
}

/* Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: #6a4387;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(106, 67, 135, 0.1);
    color: #6a4387;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 67, 135, 0.2);
}

.nav-link.active {
    background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 67, 135, 0.3);
}

.nav-link.active:hover {
    background: linear-gradient(135deg, #48c3be 0%, #96ebf0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 67, 135, 0.4);
}

/* Focus styles for accessibility */
.nav-link:focus {
    outline: 3px solid #ac92fa;
    outline-offset: 2px;
}

.navbar-brand a:focus {
    outline: 3px solid #ac92fa;
    outline-offset: 2px;
    border-radius: 8px;
}

.mobile-menu-toggle:focus {
    outline: 3px solid #ac92fa;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #96ebf0 0%, #48c3be 100%);
        border-top: 2px solid #6a4387;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(106, 67, 135, 0.2);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 15px 25px;
        border-radius: 0;
        width: 100%;
        text-align: left;
        font-size: 1.05rem;
    }
    
    .nav-link:hover {
        background: rgba(106, 67, 135, 0.15);
        transform: none;
        box-shadow: none;
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
        color: white;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 10px;
        height: 65px;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        width: 28px;
        height: 22px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Animation for smooth navbar appearance */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: slideDown 0.6s ease-out;
}



/* Main Container */
.container {
    max-width: 1000px;
    background: white;
    margin: 0 auto;
    margin-top: 0;
    min-height: calc(100vh - 100px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.container2 {
    background: white;
    padding: 30px 20px;
    margin: 20px auto;
    margin-top: 0;
    max-width: 960px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Header Logo */
.header {
    display: none;
    margin: 20px auto;
    padding: 0;
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.site-header{
    display: none;
}

.header:hover {
    transform: scale(1.02);
}

/* Daily Author Series Highlight Section */
.daily-highlight-section {
    background: linear-gradient(135deg, #96ebf0 0%, #48c3be 100%);
    border: 3px solid #6a4387;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(106, 67, 135, 0.2);
    position: relative;
    overflow: hidden;
}

.daily-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a4387, #ac92fa, #6a4387);
}

.daily-highlight-title {
    color: white;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.daily-highlight-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
}

.daily-highlight-content {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Author Info Section */
.highlight-author-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #6a4387;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-author-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #6a4387;
}

.highlight-author-name a {
    color: #6a4387;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.highlight-author-name a:hover {
    color: #48c3be;
    border-bottom-color: #48c3be;
}

.highlight-author-details {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #96ebf0;
    border-radius: 10px;
    color: #6a4387;
}

.pseudonym-info, .other-pseudonyms p {
    font-style: italic;
    color: #6a4387;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pseudonym-info a, .other-pseudonyms a {
    color: #48c3be;
    font-weight: 500;
}

/* Author Links */
.highlight-author-links {
    margin-top: 1.5rem;
}

.author-website-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 67, 135, 0.3);
}

.author-website-btn:hover {
    background: linear-gradient(135deg, #48c3be 0%, #96ebf0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 67, 135, 0.4);
}

.highlight-social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.social-link {
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #96ebf0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #48c3be;
}

.social-link img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Series Section */
.highlight-series {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    margin-top: 20px;
    border-radius: 15px;
    border-left: 5px solid #96ebf0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.series-title {
    color: #6a4387;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.series-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #96ebf0;
}

.series-count {
    color: #6a4387;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.series-books {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-book {
    text-align: center;
    background: white;
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #96ebf0;
}

.highlight-book:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #48c3be;
}

.book-info {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #6a4387;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.highlight-book-cover {
    width: 100%;
    max-width: 90px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.highlight-book-cover:hover {
    transform: scale(1.05);
}

.view-all-link {
    text-align: center;
    margin-top: 1.5rem;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ac92fa 0%, #6a4387 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 67, 135, 0.3);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #48c3be 0%, #96ebf0 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 67, 135, 0.4);
}

/* Introduction Section */
.intro {
    padding: 30px;
    margin: 20px 0;
    background: #96ebf0;
    border-radius: 15px;
    color: #6a4387;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.intro h2 {
    color: #6a4387;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #6a4387;
}

.intro strong {
    color: #6a4387;
    font-weight: 700;
}

.intro-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.intro-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(106, 67, 135, 0.2);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6a4387;
}

.intro-list li::before {
    content: '📚';
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
}

.intro-list li:last-child {
    border-bottom: none;
}

/* Authors Page Styles */
.alist {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
}

.alist li {
    background: #96ebf0;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.alist li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #48c3be;
    background: #48c3be;
}

.alist a {
    color: #6a4387;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alist li:hover a {
    color: white;
}

.author-arrow {
    font-size: 1.2rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.alist li:hover .author-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Author Detail Page Styles */
.row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.column p {
    margin-bottom: 15px;
    text-align: center;
    color: #6a4387;
    font-size: 16px;
}

.real_author, .pseudonyms {
    background: #96ebf0;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #6a4387;
    color: #6a4387;
}

.social-media-box {
    background: #96ebf0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-media-box:hover {
    background: #48c3be;
    border-color: #6a4387;
}

.social-media-paragraph {
    font-weight: bold;
    color: #6a4387;
    text-align: center;
    margin-bottom: 15px;
}

.social-media-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.author-social-media {
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #96ebf0;
}

.author-social-media:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #48c3be;
}

.author-social-media img {
    width: 28px;
    height: 28px;
}

/* Series and Books */
.series-header {
    background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
    color: white;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 15px rgba(106, 67, 135, 0.3);
}

.parent {
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.child {
    text-align: center;
    background: #96ebf0;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.child:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #48c3be;
    border-color: #6a4387;
}

.child p {
    padding: 0 8px;
    margin: 10px 0 15px 0;
    text-align: center;
    color: #6a4387;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
}

.child:hover p {
    color: white;
}

.child img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.child img:hover {
    transform: scale(1.05);
}

/* Releases Page */
.authreleases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.release {
    background: #96ebf0;
    border-radius: 15px;
    padding: 25px;
    color: #6a4387;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.release:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #48c3be;
    background: #48c3be;
}

.release:hover {
    color: white;
}

.photoreleases {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
button {
    background: #96ebf0;
    border: 2px solid #6a4387;
    border-radius: 10px;
    padding: 12px 20px;
    margin: 10px 0;
    color: #6a4387;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cerebri Sans', Helvetica, Arial, sans-serif;
}

button:hover {
    background: #48c3be;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

button a {
    color: inherit;
    text-decoration: none;
}

.author-website {
    color: #6a4387;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    background: #96ebf0;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.author-website:hover {
    background: #48c3be;
    color: white;
    border-color: #6a4387;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-title {
    font-size: 2rem;
    font-weight: bold;
    color: #6a4387;
    text-align: center;
    margin-bottom: 2rem;
}

.message {
    max-width: 85%;
    padding: 0 5%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.message p {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.message strong {
    color: #6a4387;
    font-weight: 700;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

footer a {
    color: #96ebf0;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.legal {
    display: inline-block;
    margin: 0.5rem 1rem;
}

.cookie-settings {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #6a4387;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6a4387;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    color: #6a4387;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #96ebf0, transparent);
}

/* Authors Page Improvements */
.authors-section {
    margin-bottom: 4rem;
}

.authors-stats {
    text-align: center;
    margin-bottom: 2rem;
    padding: 20px;
    background: #96ebf0;
    border-radius: 10px;
    color: #6a4387;
}

.authors-stats p {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Author Detail Page Improvements */
.author-header {
    margin-bottom: 3rem;
}

.author-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.author-main-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #6a4387;
}

.author-name {
    font-size: 2.5rem;
    color: #6a4387;
    margin-bottom: 1.5rem;
}

.author-relationships {
    margin-top: 1.5rem;
}

.relationship-info {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #96ebf0;
    border-radius: 8px;
    border-left: 3px solid #6a4387;
    color: #6a4387;
}

.relationship-label {
    font-weight: bold;
    color: #6a4387;
    display: inline-block;
    margin-right: 0.5rem;
}

.author-link {
    color: #48c3be;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: #6a4387;
    text-decoration: underline;
}

/* Releases Page Improvements */
.releases-section {
    margin-bottom: 4rem;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.release-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #6a4387;
    overflow: hidden;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: #48c3be;
}

.release-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 2rem;
    align-items: center;
}

.release-info .book-title {
    font-size: 1.3rem;
    color: #6a4387;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.release-info .author-name {
    font-size: 1.1rem;
    color: #48c3be;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.release-info .series-info {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.release-date {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.date-label {
    font-weight: 600;
    color: #6a4387;
    font-size: 0.9rem;
}

.release-date time {
    color: #48c3be;
    font-weight: 500;
    font-size: 1rem;
}

.release-image {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Call to Action Sections */
.cta-section {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, #96ebf0 0%, white 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #6a4387;
}

.cta-card h2 {
    color: #6a4387;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-card p {
    color: #6a4387;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
    color: white;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #48c3be 0%, #96ebf0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 67, 135, 0.4);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #96ebf0 0%, #48c3be 100%);
    color: #6a4387;
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, #48c3be 0%, #96ebf0 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 195, 190, 0.4);
}

/* Construction Note Styling */
.construction-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ac92fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.construction-note strong {
    color: #6a4387;
}

/* Navigation Improvements */
.author-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.nav-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #96ebf0 0%, #48c3be 100%);
    color: #6a4387;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 235, 240, 0.3);
    border: 2px solid transparent;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #6a4387 0%, #ac92fa 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 67, 135, 0.4);
    border-color: #48c3be;
}

/* Works Section Improvements */
.author-works {
    margin-bottom: 3rem;
}

.works-title {
    font-size: 2rem;
    color: #6a4387;
    text-align: center;
    margin-bottom: 2rem;
}

.series-count-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 20px;
    background: #96ebf0;
    border-radius: 10px;
    color: #6a4387;
}

.series-count-info p {
    font-size: 1.1rem;
    font-weight: bold;
    font-style: italic;
}

.series-section {
    margin-bottom: 3rem;
}

.series-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.series-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.book-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.series-books {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.book-card {
    text-align: center;
    background: #96ebf0;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #48c3be;
    border-color: #6a4387;
}

.book-title {
    font-weight: bold;
    color: #6a4387;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-card:hover .book-title {
    color: white;
}

.book-cover-container {
    margin-top: 1rem;
}

.book-cover {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.05);
}

.no-books-message {
    text-align: center;
    padding: 3rem;
    background: #96ebf0;
    border-radius: 15px;
    color: #6a4387;
    font-style: italic;
    font-weight: bold;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #6a4387;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .daily-highlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .author-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .series-books {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .alist {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        column-count: 1;
    }
    
    .parent {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .container, .container2 {
        padding: 1rem 0.5rem;
        margin: 10px;
    }
    
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar li {
        width: 100%;
    }
    
    .navbar a {
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(106, 67, 135, 0.2);
    }
    
    .header {
        width: 250px;
        margin: 15px auto;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    h4 {
        font-size: 1.5rem;
    }
    
    .daily-highlight-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .daily-highlight-title {
        font-size: 1.8rem;
    }
    
    .highlight-author-info, .highlight-series {
        padding: 1.2rem;
        margin-bottom: 1rem; 
    }
    
    .series-books {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .intro {
        padding: 20px;
        margin: 15px 0;
    }
    
    .alist {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .parent {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 20px;
    }
    
    .authreleases {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .release-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .author-navigation {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .message {
        max-width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container2 {
        padding: 15px;
        margin: 5px;
    }
    
    .header {
        width: 200px;
    }
    
    .daily-highlight-section {
        padding: 1rem;
    }
    
    .highlight-author-info, .highlight-series {
        padding: 1rem;
    }
    
    .social-media-flex, .highlight-social-media {
        justify-content: center;
        gap: 10px;
    }
    
    .page-header {
        padding: 1rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .author-name {
        font-size: 2rem;
    }
    
    .works-title {
        font-size: 1.6rem;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro {
        padding: 15px;
    }
    
    .alist {
        padding: 15px;
    }
    
    .parent {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
        padding: 15px;
    }
    
    .child {
        padding: 10px;
    }
    
    .child p {
        font-size: 12px;
        margin: 8px 0;
    }
}

/* Enhanced Hover Effects and Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.daily-highlight-section {
    animation: fadeInUp 0.6s ease-out;
}

.intro {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Improved Link Styles */
.author-card a::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.author-card:hover a::after {
    transform: translateX(5px);
}

/* Enhanced Button Styles */
.author-website-btn,
.view-all-btn,
.cta-btn,
.nav-btn {
    position: relative;
    overflow: hidden;
}

.author-website-btn::before,
.view-all-btn::before,
.cta-btn::before,
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.author-website-btn:hover::before,
.view-all-btn:hover::before,
.cta-btn:hover::before,
.nav-btn:hover::before {
    left: 100%;
}

/* Print Styles */
@media print {
    .navbar,
    .social-media-flex,
    .highlight-social-media,
    .author-navigation,
    footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container,
    .container2 {
        box-shadow: none;
        background: white;
    }
    
    .daily-highlight-section,
    .intro,
    .alist,
    .parent {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}