/* ============================================
   EKYOOTO - Decolonising Social Work Stylesheet
   ============================================ */

/* Ekyooto Specific Variables */
:root {
    --ekyooto-primary: #2563eb;
    --ekyooto-primary-dark: #1e40af;
    --ekyooto-primary-light: #3b82f6;
    --ekyooto-accent: #f59e0b;
    --ekyooto-accent-dark: #d97706;
    --ekyooto-bg-dark: #1f2937;
    --ekyooto-bg-light: #f9fafb;
}

/* Ekyooto Body Styles */
.ekyooto-body {
    background-color: var(--bg-white);
}

/* Header Styles */
.ekyooto-header {
    background: linear-gradient(135deg, var(--ekyooto-primary-dark) 0%, var(--ekyooto-primary) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ekyooto-navbar {
    padding: 1rem 0;
}

.ekyooto-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.ekyooto-logo .logo-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 0.25rem;
}

.ekyooto-navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.ekyooto-navbar .nav-menu a:hover,
.ekyooto-navbar .nav-menu a.active {
    color: white;
    font-weight: 600;
}

.ekyooto-navbar .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.ekyooto-navbar .btn-outline:hover {
    background-color: white;
    color: var(--ekyooto-primary);
}

/* Hero Section */
.ekyooto-hero {
    background: linear-gradient(135deg, var(--ekyooto-primary-dark) 0%, var(--ekyooto-primary) 50%, var(--ekyooto-accent) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stories Section */
.ekyooto-stories-section {
    padding: 5rem 0;
    background-color: var(--ekyooto-bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--ekyooto-primary-light), var(--ekyooto-accent));
}

.story-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ekyooto-primary-light), var(--ekyooto-accent));
}

.story-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.story-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.story-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.story-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.story-link {
    color: var(--ekyooto-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.story-link:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

/* Join Section */
.join-ekyooto-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--ekyooto-primary-dark), var(--ekyooto-primary));
    color: white;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.join-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.join-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.about-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-sections {
    margin-bottom: 4rem;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ekyooto-primary-light), var(--ekyooto-accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-light);
    position: relative;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ekyooto-primary);
    font-weight: 600;
}

.call-to-action {
    background: var(--ekyooto-bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.call-to-action h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.call-to-action p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Story Form */
.share-story-content {
    padding: 4rem 0;
}

.story-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.story-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ekyooto-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 200px;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.story-guidelines {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--ekyooto-bg-light);
    border-radius: 12px;
}

.story-guidelines h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.story-guidelines ul {
    list-style: none;
    padding: 0;
}

.story-guidelines li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-light);
    position: relative;
}

.story-guidelines li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ekyooto-primary);
    font-weight: 600;
}

/* Events Page */
.events-content {
    padding: 4rem 0;
}

.events-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ekyooto-primary);
    color: white;
    border-color: var(--ekyooto-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    background: linear-gradient(135deg, var(--ekyooto-primary), var(--ekyooto-accent));
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.date-year {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-link {
    color: var(--ekyooto-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.event-link:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

.events-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--ekyooto-bg-light);
    border-radius: 12px;
}

.events-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.events-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Podcasts, Blogs, Videos Pages */
.podcasts-content,
.blogs-content,
.videos-content {
    padding: 4rem 0;
}

.podcasts-grid,
.blogs-grid,
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.podcast-card,
.blog-card,
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.podcast-card:hover,
.blog-card:hover,
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.podcast-image,
.blog-image,
.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--ekyooto-primary-light), var(--ekyooto-accent));
}

.podcast-placeholder,
.blog-placeholder,
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-icon,
.blog-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.video-play-icon {
    font-size: 4rem;
    opacity: 0.8;
    color: white;
}

.podcast-content,
.blog-content,
.video-content {
    padding: 1.5rem;
}

.podcast-title,
.blog-title,
.video-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.podcast-description,
.blog-excerpt,
.video-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.podcast-meta,
.blog-meta,
.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.podcast-link,
.blog-link,
.video-link {
    color: var(--ekyooto-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.podcast-link:hover,
.blog-link:hover,
.video-link:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

/* Featured Blog Styles */
.featured-blog {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
}

.blog-full-content {
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-full-content p {
    margin-bottom: 1.5rem;
}

.blog-full-content em {
    font-style: italic;
    color: var(--ekyooto-primary);
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.blog-email {
    font-size: 0.875rem;
    color: var(--ekyooto-primary);
    text-decoration: none;
}

.blog-email:hover {
    text-decoration: underline;
}

/* Blog Detail Page Styles */
.blog-detail-header {
    padding: 2rem 0 1rem;
    background-color: var(--ekyooto-bg-light);
}

.back-link {
    color: var(--ekyooto-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

.blog-detail-content {
    padding: 3rem 0 5rem;
}

.blog-detail-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-detail-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.blog-image-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

/* Modern Document and Pencil Icon */
.blog-icon-container {
    position: relative;
    width: 200px;
    height: 160px;
    z-index: 1;
}

.document-icon {
    position: absolute;
    width: 140px;
    height: 180px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 4px;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: perspective(500px) rotateY(-5deg) rotateX(2deg);
    left: 0;
    top: 0;
}

.document-fold {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
    border-radius: 0 4px 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: rotate(45deg);
}

.document-lines {
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.doc-line {
    height: 4px;
    background: #9ca3af;
    border-radius: 2px;
    opacity: 0.7;
}

.line-1 {
    width: 100%;
    margin-top: 8px;
}

.line-2 {
    width: 85%;
}

.line-3 {
    width: 95%;
}

.line-4 {
    width: 70%;
}

.pencil-icon {
    position: absolute;
    width: 80px;
    height: 12px;
    right: 20px;
    bottom: 30px;
    transform: rotate(-25deg) perspective(500px) rotateY(5deg);
    z-index: 2;
}

.pencil-eraser {
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 12px;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-radius: 2px 0 0 2px;
    box-shadow: 
        inset -2px 0 4px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.pencil-body {
    position: absolute;
    left: 14px;
    top: 0;
    width: 58px;
    height: 12px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.pencil-tip {
    position: absolute;
    right: 0;
    top: 2px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pencil-icon::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 4px;
    width: 2px;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1px;
}

/* Shadow for pencil on document */
.pencil-icon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10px;
    width: 60px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transform: rotate(25deg);
    filter: blur(2px);
}

.blog-detail-body {
    padding: 3.5rem;
    background: white;
}

.blog-detail-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    align-items: center;
}

.blog-author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.blog-date {
    color: var(--text-muted);
    font-size: 1rem;
}

.blog-email {
    color: var(--ekyooto-primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-email:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

.blog-detail-text {
    font-size: 1.125rem;
    line-height: 1.95;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.blog-detail-text p {
    margin-bottom: 1.75rem;
    text-align: justify;
}

.blog-detail-text p:first-child {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.blog-detail-text em {
    font-style: italic;
    color: var(--ekyooto-primary);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: 3px;
}

.blog-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-share span {
    font-weight: 600;
    color: var(--text-dark);
}

.share-link {
    color: var(--ekyooto-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.share-link:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

/* Related Blogs */
.related-blogs {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.related-blogs h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-blog-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.related-blog-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.related-blog-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-blog-card h4 a:hover {
    color: var(--ekyooto-primary);
}

.related-blog-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.related-blog-link {
    color: var(--ekyooto-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.related-blog-link:hover {
    color: var(--ekyooto-primary-dark);
    text-decoration: underline;
}

/* Responsive adjustments for blog detail */
@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.75rem;
    }
    
    .blog-detail-body {
        padding: 2rem 1.5rem;
    }
    
    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-share {
        width: 100%;
    }
    
    .related-blogs-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.ekyooto-footer {
    background: var(--ekyooto-bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.ekyooto-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ekyooto-footer .footer-section h3,
.ekyooto-footer .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.ekyooto-footer .footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ekyooto-footer .footer-section ul {
    list-style: none;
    padding: 0;
}

.ekyooto-footer .footer-section ul li {
    margin-bottom: 0.5rem;
}

.ekyooto-footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.ekyooto-footer .footer-section a:hover {
    color: white;
}

.ekyooto-footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ekyooto-footer .newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.ekyooto-footer .newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.ekyooto-footer .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.ekyooto-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-section.reverse {
        direction: ltr;
    }

    .stories-grid,
    .events-grid,
    .podcasts-grid,
    .blogs-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

