/* ========================================
   Общие стили
======================================== */

:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Навигация
======================================== */

.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand .logo {
    height: 60px;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    margin: 0 0.2rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.social-icons a {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2) rotate(5deg);
}

/* ========================================
   Hero секция
======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.7) 0%, rgba(44, 62, 80, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-content .lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.hero-content .btn-primary {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

/* Анимации */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Категории
======================================== */

.categories-section {
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.category-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.category-link {
    color: var(--white);
    background: var(--gradient-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    color: var(--white);
    transform: scale(1.05);
}

/* ========================================
   Блог
======================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-author {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ========================================
   Секция о донорстве почки
======================================== */

.kidney-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.kidney-section .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.stats-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.stat-item {
    padding: 1rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.kidney-gallery img {
    transition: var(--transition);
}

.kidney-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Секция Follow
======================================== */

.follow-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: var(--white);
}

.follow-section .section-title {
    color: var(--white);
}

.follow-section .section-title::after {
    background: var(--white);
}

.social-links-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.social-icon-large:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-10px) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Футер
======================================== */

.footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Кнопки
======================================== */

.btn {
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Адаптивность
======================================== */

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .category-card {
        height: 350px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .hero-content .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .categories-section {
        margin-top: 2rem;
    }

    .category-card {
        height: 300px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .social-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Плавная прокрутка
======================================== */

html {
    scroll-behavior: smooth;
}

/* Анимация появления при прокрутке */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}









/* ========================================
   Podcast Page Specific Styles
======================================== */

/* Hero Section */
.podcast-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-content-podcast {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.podcast-icon {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.podcast-icon i {
    font-size: 4rem;
    color: var(--white);
}

.podcast-hero h1 {
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.podcast-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-podcast {
    background: var(--white);
}

.host-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.host-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.image-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.about-content h2 {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Podcast Platforms */
.podcast-platforms {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.platform-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
}

.platform-icon.apple {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: var(--white);
}

.platform-icon.spotify {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: var(--white);
}

.platform-icon.google {
    background: linear-gradient(135deg, #4285F4 0%, #5a9bf8 100%);
    color: var(--white);
}

.platform-card:hover .platform-icon {
    transform: rotate(360deg) scale(1.1);
}

.platform-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.platform-card .btn {
    margin-top: 1rem;
}

/* Recent Episodes */
.recent-episodes {
    background: var(--white);
}

.episodes-list {
    max-width: 900px;
    margin: 0 auto;
}

.episode-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.episode-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.episode-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.episode-item:hover::before {
    transform: scaleY(1);
}

.episode-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    margin-right: 2rem;
    text-align: center;
}

.episode-content {
    flex: 1;
}

.episode-content h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.episode-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.episode-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.episode-link i {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-section h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 2.5rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-section .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Active Navigation */
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Responsive Design */
@media (max-width: 767px) {
    .podcast-hero {
        padding: 120px 0 60px;
    }

    .podcast-icon {
        width: 80px;
        height: 80px;
    }

    .podcast-icon i {
        font-size: 2.5rem;
    }

    .podcast-hero h1 {
        font-size: 2rem;
    }

    .episode-item {
        flex-direction: column;
        text-align: center;
    }

    .episode-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .platform-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
}

@media (max-width: 991px) {
    .host-image-placeholder {
        margin-bottom: 2rem;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content {
        text-align: center;
    }
}

/* Animations on Scroll */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.episode-item {
    animation: slideInLeft 0.6s ease-out;
}

.episode-item:nth-child(1) { animation-delay: 0.1s; }
.episode-item:nth-child(2) { animation-delay: 0.2s; }
.episode-item:nth-child(3) { animation-delay: 0.3s; }
.episode-item:nth-child(4) { animation-delay: 0.4s; }
.episode-item:nth-child(5) { animation-delay: 0.5s; }
.episode-item:nth-child(6) { animation-delay: 0.6s; }
.episode-item:nth-child(7) { animation-delay: 0.7s; }
.episode-item:nth-child(8) { animation-delay: 0.8s; }
.episode-item:nth-child(9) { animation-delay: 0.9s; }
.episode-item:nth-child(10) { animation-delay: 1s; }
.episode-item:nth-child(11) { animation-delay: 1.1s; }



/* Blog Page Styles */

.blog-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 150px 0 80px;
    color: var(--white);
}

.blog-hero h1 {
    color: var(--white);
}

.blog-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Full Blog Posts */
.all-posts-section {
    background: var(--white);
}

.blog-post-full {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--white);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.post-tag.lifestyle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-author, .post-views {
    display: flex;
    align-items: center;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.post-body {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-body h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0 1.5rem;
    line-height: 1.4;
}

.post-body h3.section-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2.5rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.post-body h3.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    box-shadow: var(--shadow-md);
}

.post-body ol, .post-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body ol li, .post-body ul li {
    margin-bottom: 1rem;
}

.post-body ol li strong {
    color: var(--primary-color);
}

.post-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.post-body a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.blog-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
    border-radius: 0 10px 10px 0;
}

.image-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.post-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.post-signature p {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.signature-img {
    max-width: 150px;
}

.post-divider {
    margin: 5rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

/* Responsive */
@media (max-width: 991px) {
    .post-title {
        font-size: 2rem;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-body h3.section-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 120px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-post-full {
        padding: 1rem;
    }

    .post-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-body h3.section-heading {
        font-size: 1.3rem;
    }

    .blog-quote {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

/* Active Navigation */
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}



/* About Page Styles */

.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content-about {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content-about h1 {
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

/* About Content */
.about-content {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.6;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image-wrapper:hover .image-placeholder {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Journey Section */
.journey-section {
    background: var(--white);
}

.journey-section h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.journey-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
}

.timeline-content h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-image-wrapper-secondary {
    position: relative;
    height: 500px;
}

.about-image-wrapper-secondary .image-placeholder {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

/* CTA Section */
.cta-about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-about h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 2.5rem;
}

.cta-about .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-about .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-about .btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.social-links-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.social-icon-large:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-10px) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 150px 0 80px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -2.6rem;
    }
    
    .about-image-wrapper-secondary {
        height: 350px;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-image-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .image-placeholder {
        font-size: 5rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline {
        padding-left: 3rem;
    }
    
    .timeline-marker {
        left: 1px;
        width: 18px;
        height: 18px;
    }
    
    .cta-about h2 {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    
    .social-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}




