/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --deep-teal: #1a3a4a;
    --rich-black: #0d0d0d;
    --cream: #f5f1e8;
    --gold: #c9a961;
    --dark-teal: #0f2027;
    
    /* Fonts */
    --font-heading: 'American Typewriter', 'Courier New', monospace;
    --font-body: 'Source Sans 3', sans-serif;
    --font-accent: 'Allura', cursive;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-teal) 50%, var(--deep-teal) 100%);
    color: var(--cream);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===================================
   NAVIGATION
   =================================== */

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

/* Hamburger Menu - Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION - SOLAR SYSTEM
   =================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 2rem;
    position: relative;
}

.universe-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   SUN CENTER - AUTHOR IMAGE (400PX)
   =================================== */

.sun-center {
    position: relative;
    z-index: 10;
}

.sun-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.author-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px rgba(201, 169, 97, 0.5);
    position: relative;
    z-index: 2;
}

/* ===================================
   THE ECHO EFFECT - ORBIT
   =================================== */

.echo-orbit {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    transition: all 0.4s ease;
}

.echo-container {
    text-align: center;
    position: relative;
}

.echo-logo {
    width: 280px;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(26, 58, 74, 0.6));
}

.echo-orbit:hover .echo-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.8));
}

.orbit-label {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.echo-orbit:hover .orbit-label {
    opacity: 1;
}

/* ===================================
   TAGLINE
   =================================== */

.tagline {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 600px;
}

.tagline h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tagline p {
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===================================
   FOOTER (UPDATED FOR ICONS)
   =================================== */

footer {
    background: rgba(13, 13, 13, 0.8);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

footer p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .echo-orbit {
        right: 5%;
    }
    
    .echo-logo {
        width: 220px;
    }
    
    .author-image {
        width: 320px;
        height: 320px;
    }
    
    .sun-glow {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    /* Hero Adjustments */
    .universe-container {
        height: 500px;
        flex-direction: column;
    }
    
    .echo-orbit {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 3rem;
    }
    
    .echo-logo {
        width: 200px;
    }
    
    .author-image {
        width: 250px;
        height: 250px;
    }
    
    .sun-glow {
        width: 350px;
        height: 350px;
    }
    
    .tagline {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
    }
    
    .tagline h1 {
        font-size: 2rem;
    }
    
    .tagline p {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .author-image {
        width: 200px;
        height: 200px;
    }
    
    .echo-logo {
        width: 180px;
    }
    
    .tagline h1 {
        font-size: 1.6rem;
    }
    
    .tagline p {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        font-size: 0.85rem;
    }
}

/* ===================================
   OTHER WORKS PAGE STYLES
   =================================== */

.other-works-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Books Grid */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Book Card */
.book-card {
    background: rgba(26, 58, 74, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.book-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Book Cover Container */
.book-cover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: rgba(13, 13, 13, 0.5);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Overlay Effect */
.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.explore-text {
    color: var(--rich-black);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Book Info */
.book-info {
    padding: 1.5rem;
    text-align: center;
}

.book-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.book-description {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .other-works-page {
        padding: 100px 1.5rem 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .book-title {
        font-size: 1.3rem;
    }
    
    .book-description {
        font-size: 0.9rem;
    }
}
/* ===================================
   LINKS HUB PAGE STYLES
   Add this to the end of your style.css file
   =================================== */

/* Remove default body styling for this page */
.links-page-body {
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-teal) 50%, var(--deep-teal) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Main Container */
.links-hub {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Profile Section */
.links-profile {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.6);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.profile-tagline {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Link Buttons Container */
.links-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Link Button - Oblong Shape */
.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(26, 58, 74, 0.6);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px; /* Makes it oblong/pill-shaped */
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.link-button:hover {
    background: rgba(201, 169, 97, 0.9);
    color: var(--rich-black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.link-button:active {
    transform: translateY(-1px);
}

.button-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Social Media Icons */
.links-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    width: 100%;
}

.links-social a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.links-social a:hover {
    transform: translateY(-5px) scale(1.1);
    opacity: 0.8;
}

.links-social .social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Footer */
.links-footer {
    margin-top: 2rem;
    text-align: center;
}

.links-footer p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .links-hub {
        max-width: 500px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-tagline {
        font-size: 0.9rem;
    }
    
    .link-button {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
    
    .links-social .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .links-page-body {
        padding: 1.5rem;
    }
    
    .links-hub {
        max-width: 100%;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .link-button {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }
    
    .links-social {
        gap: 1.2rem;
    }
    
    .links-social .social-icon {
        width: 32px;
        height: 32px;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   Add this to the end of your style.css file
   =================================== */

.contact-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Form Messages */
.form-success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.form-error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #ff6b6b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 58, 74, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: var(--cream);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(13, 13, 13, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 232, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a961' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--rich-black);
    color: var(--cream);
}

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

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(201, 169, 97, 0.9);
    color: var(--rich-black);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.submit-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Alternative Contact */
.contact-alt {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-alt p {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
}

.contact-alt a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-alt a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-page {
        padding: 100px 1.5rem 3rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .submit-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}
/* ===================================
   EVENTS PAGE STYLES
   Add this to the end of your style.css file
   =================================== */

.events-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
}

.events-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Events Header */
.events-header {
    text-align: center;
    margin-bottom: 4rem;
}

.events-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.events-intro {
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Events Sections */
.events-section {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
    padding-bottom: 0.5rem;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Individual Event Card */
.event-card {
    display: flex;
    gap: 2rem;
    background: rgba(26, 58, 74, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.2);
}

/* Past event styling - slightly faded */
.event-card.past {
    opacity: 0.7;
    background: rgba(26, 58, 74, 0.2);
}

.event-card.past:hover {
    opacity: 0.85;
}

/* Event Date Box */
.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.2);
    border: 2px solid var(--gold);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-year {
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.7;
}

/* Event Details */
.event-details {
    flex: 1;
}

/* Event Badge (Type) */
.event-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.event-badge.book-signing {
    background: rgba(156, 39, 176, 0.3);
    color: #CE93D8;
    border: 1px solid rgba(206, 147, 216, 0.5);
}

.event-badge.speaking {
    background: rgba(33, 150, 243, 0.3);
    color: #64B5F6;
    border: 1px solid rgba(100, 181, 246, 0.5);
}

.event-badge.workshop {
    background: rgba(255, 152, 0, 0.3);
    color: #FFB74D;
    border: 1px solid rgba(255, 183, 77, 0.5);
}

.event-badge.panel {
    background: rgba(76, 175, 80, 0.3);
    color: #81C784;
    border: 1px solid rgba(129, 199, 132, 0.5);
}

/* Event Name */
.event-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

/* Event Location & Time */
.event-location,
.event-time {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Event Description */
.event-description {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.event-description em {
    color: var(--gold);
    font-style: italic;
}

/* Event Button */
.event-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(201, 169, 97, 0.9);
    color: var(--rich-black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.event-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

/* No Events Message */
.no-events {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 58, 74, 0.2);
    border-radius: 12px;
    border: 2px dashed rgba(201, 169, 97, 0.3);
}

.no-events p {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.no-events a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.no-events a:hover {
    text-decoration: underline;
}

/* Events CTA Section */
.events-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 58, 74, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    margin-top: 4rem;
}

.events-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.events-cta p {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 2rem;
    opacity: 0.85;
}

.events-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(201, 169, 97, 0.9);
    color: var(--rich-black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.events-cta .cta-button:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-page {
        padding: 100px 1.5rem 3rem;
    }
    
    .events-header h1 {
        font-size: 2.5rem;
    }
    
    .events-intro {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .event-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .event-date {
        width: 70px;
        height: 70px;
    }
    
    .date-day {
        font-size: 1.75rem;
    }
    
    .event-name {
        font-size: 1.3rem;
    }
    
    .events-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .events-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .event-card {
        padding: 1.25rem;
    }
    
    .event-date {
        width: 60px;
        height: 60px;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .date-month {
        font-size: 0.8rem;
    }
    
    .event-name {
        font-size: 1.2rem;
    }
    
    .event-description {
        font-size: 0.95rem;
    }
}











