/* Author Bio Section - Creative Modern Design */
.author-bio-section {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 60px;
    align-items: center;
    margin: 70px auto 70px auto;
    padding: 0 20px;
}
.author-bio-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.author-bio-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--gold);
    box-shadow: 0 8px 40px rgba(212,175,55,0.18), 0 2px 24px #000;
    position: relative;
    z-index: 2;
}
.author-bio-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(2px);
}
.author-bio-card {
    background: rgba(34,34,34,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 38px 36px 32px 36px;
    color: #eee;
    position: relative;
    border-left: 6px solid var(--gold);
}
.author-bio-title {
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.author-bio-desc {
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.author-bio-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 10px;
}
.author-bio-highlight span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.08);
    border-radius: 8px;
    padding: 6px 16px;
}
@media (max-width: 900px) {
    .author-bio-section {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .author-bio-img, .author-bio-glow {
        width: 180px;
        height: 180px;
        min-width: 0;
        min-height: 0;
    }
    .author-bio-card {
        padding: 28px 12px 24px 12px;
    }
}
:root {
    --flyer-aspect: 4/5;
}
/* Global Styles */
:root {
    --black: #000000;
    --gold: #c39716;
    --dark-gold: #C5A000;
    --light-gold: #FFEC8B;
    --gray: #333333;
    --light-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--black);
    color: white;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--black);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
}

.gold-gradient {
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header Styles */
.gold-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 5px 15px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

/* Main Content Styles */
main {
    padding: 120px 5% 80px;
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Homepage Styles */
/* Profile Image Styles */
.profile-image-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    padding: 10px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
}

.gold-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #D4AF37;
    border-right-color: #E6C200;
    border-bottom-color: #F0E68C;
    border-left-color: #C5A000;
    animation: rotateFrame 8s linear infinite;
    z-index: 1;
}

.gold-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.profile-image-container:hover .gold-glow {
    opacity: 1;
}

@keyframes rotateFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Adjust hero section for image */
.hero {
    text-align: center;
    padding: 60px 0 80px;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-image-container {
        width: 180px;
        height: 180px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
}

.hero {
    text-align: center;
    padding: 80px 0 120px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.typewriter-container {
    min-height: 60px;
    margin-bottom: 20px;
}

#typewriter {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.glow-button {
    padding: 15px 30px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    text-decoration: none;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.link-card {
    background: rgba(51, 51, 51, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.link-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* About Page Styles */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.profile-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 5px solid var(--gold);
}

.expertise-tabs {
    display: flex;
    margin: 30px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    margin-right: 10px;
}

.tab-button.active {
    color: var(--gold);
}

.tab-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -1px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--gold);
    left: 20px;
    top: 0;
}


.timeline-event {
    position: relative;
    margin-bottom: 40px;
    
}

/* Flyer-style event images */
.event-image {
    aspect-ratio: var(--flyer-aspect);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s;
    display: block;
}
 

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.media-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s;
}

.media-grid img:hover {
    filter: grayscale(0) brightness(1);
}

/* Media Section (for gallery/media.html and leader.html) */
.media-section {
    padding: 60px 0;
    background: rgba(0,0,0,0.95);
    margin-bottom: 60px;
}

/* Services Page Styles */
.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: rgba(51, 51, 51, 0.5);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.service-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--gold);
}

.service-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.service-button:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
    margin: 40px 0;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial.active {
    opacity: 1;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial p::before, .testimonial p::after {
    content: '"';
    color: var(--gold);
    font-size: 1.5rem;
}

.client {
    font-weight: 600;
    color: var(--gold);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    transform: scale(1.2);
}

/* Store Page Styles */
.books-section {
    margin-bottom: 80px;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.book-card {
    background: rgba(51, 51, 51, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.book-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.book-cover {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.book-card:hover .book-cover img {
    transform: scale(1.05);
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.quick-view {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.book-details {
    padding: 20px;
}

.book-desc {
    margin: 15px 0;
    color: #ccc;
}

.book-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 15px 0;
}

.book-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart, .buy-now {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart {
    background: #333;
    color: white;
    border: 1px solid var(--gold);
}

.add-to-cart:hover {
    background: rgba(255, 215, 0, 0.1);
}

.buy-now {
    background: var(--gold);
    color: var(--black);
}

.buy-now:hover {
    background: var(--light-gold);
}

.event-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.event-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.event-date {
    font-weight: 600;
    margin-bottom: 20px;
    color: #ccc;
}

.event-desc {
    margin-bottom: 30px;
    line-height: 1.6;
}

.countdown-box {
    background: rgba(51, 51, 51, 0.5);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 3px solid var(--gold);
}

.countdown-box h4 {
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.countdown-unit {
    text-align: center;
}

.countdown-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.countdown-unit small {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #ccc;
}

.event-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-tier {
    background: rgba(51, 51, 51, 0.5);
    padding: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.pricing-tier.gold-tier {
    border-color: var(--gold);
    position: relative;
}

.pricing-tier.gold-tier::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-tier h4 {
    margin-bottom: 10px;
}

.pricing-tier .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.pricing-tier ul {
    list-style: none;
}

.pricing-tier ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.pricing-tier ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.register-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.register-button:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.other-events {
    margin-top: 80px;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.small-event-card {
    background: rgba(51, 51, 51, 0.5);
    padding: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.small-event-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.small-event-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.small-event-card p {
    margin-bottom: 15px;
    color: #ccc;
}

.event-learn-more {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.event-learn-more:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(51, 51, 51, 0.5);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

.contact-card p {
    margin-bottom: 30px;
    color: #ccc;
}

.contact-form {
    text-align: left;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ccc;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--black);
    padding: 0 5px;
    color: var(--gold);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--light-gold);
}

.contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-button:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
}

.office-info {
    max-width: 1200px;
    margin: 80px auto 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background: rgba(51, 51, 51, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.info-card h3 {
    margin: 20px 0 15px;
    color: var(--gold);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 30px 5%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .bio-section {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .event-highlight {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gold-header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .event-pricing {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .event-date {
        left: -30px;
    }
}

/* Ensure background covers entire viewport */
#particles-js, #fallback-canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.read-more
    {
        color: var(--gold);
        cursor: pointer;
        font-weight: 600;
        text-decoration: underline;
    }

/* Content container to ensure readability */
.content-container {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Author Bio Section Styles */
.author-bio-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    
    margin-left: auto;
    margin-right: auto;
}

.author-bio-section img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--gold);
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .author-bio-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .author-bio-section img {
        max-width: 220px;
    }
}