:root {
    --primary-color: #2d3436;
    --secondary-color: #0984e3;
    --accent-color: #00b894;
    --text-color: #2d3436;
    --background-color: #ffffff;
    --hero-gradient-start: #1A2A3A;
    --hero-gradient-end: #001f3f;
    --dark-green-color: #004d40;
    --dark-green-hover: #003d33;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    min-height: 100vh;
}

body.subpage-body {
    padding-top: 300px; /* Increased padding significantly for testing to ensure content clears fixed header */
    background-image: url('digital marketer (4).png'); /* New background image for subpages */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* Ensure overlay works correctly */
}

body.subpage-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: -1; /* Place behind content */
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--secondary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem; /* Further reduced padding */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: auto;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px; /* Increased height for the dark green strip */
    background-color: var(--primary-color); /* Changed to match footer background */
    z-index: 1001;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    width: 100%;
    padding: 0.25rem 0; /* Further reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 2rem;
}

.header-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 700;
}

.logo {
    font-size: 2rem; /* Adjusted for a larger, bolder look */
    font-weight: 700; /* Made bolder */
    text-decoration: none;
    color: var(--primary-color);
    letter-spacing: 2px;
    position: static; /* Override absolute positioning */
    transform: none; /* Override transform */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('digital marketer.png'); /* Set new background image filename */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-top: 80px;
    padding-bottom: 0;
}

.hero::before {
    content: ''; /* Re-add content for overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    margin: 2rem auto;
}

/* Work Section */
.work {
    padding: 6rem 2rem;
    background-image: url('digital marketer (1).png'); /* Set new background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    color: white !important;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header p {
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.work-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-image {
    position: relative;
    aspect-ratio: 4/3;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.work-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.work-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-image: url('digital marketer (3).png'); /* Set new background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay for readability */
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    color: white !important;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-text p {
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.skills {
    margin-top: 2rem;
    color: white !important;
}

.skill {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.skill-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
}

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

.about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    opacity: 1 !important;
}

/* Tech Animation Section */
.tech-animation {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, #000235 0%, #001045 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20px 30px, #ffffff77 50%, transparent),
        radial-gradient(2px 2px at 40px 70px, #ffffff88 50%, transparent),
        radial-gradient(2px 2px at 50px 160px, #ffffff66 50%, transparent),
        radial-gradient(2px 2px at 90px 40px, #ffffff77 50%, transparent),
        radial-gradient(2px 2px at 130px 80px, #ffffff88 50%, transparent),
        radial-gradient(2px 2px at 160px 120px, #ffffff66 50%, transparent);
    background-repeat: repeat;
    animation: particleAnimation 20s linear infinite;
}

.tech-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.tech-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff88, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite;
}

.tech-content p {
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes particleAnimation {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100vh);
    }
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contact Section Styles */
.contact {
    padding: 6rem 2rem;
    background-image: url('digital marketer (2).png'); /* Set new background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white !important;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-content p {
    margin-bottom: 2rem;
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact .social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact .social-link:hover {
    transform: translateY(-3px);
}

.contact .linkedin-icon:hover {
    color: #0077b5;
}

.contact .instagram-icon:hover {
    color: #e4405f;
}

.contact .tiktok-icon:hover {
    color: #000000;
}

.contact .youtube-icon:hover {
    color: #ff0000;
}

.contact .podcast-icon:hover {
    color: #9933CC;
}

.contact .spotify-icon:hover {
    color: #1DB954;
}

@media (max-width: 768px) {
    .contact .social-links {
        gap: 1rem;
    }

    .contact .social-link {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    padding: 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    background: white;
}

.linkedin-icon:hover {
    color: #0077b5;
}

.instagram-icon:hover {
    color: #e4405f;
}

.tiktok-icon:hover {
    color: #000000;
}

.youtube-icon:hover {
    color: #ff0000;
}

.podcast-icon:hover {
    color: #9933CC;
}

.spotify-icon:hover {
    color: #1DB954;
}

/* Remove old social media styles */
.xiaohongshu-icon,
.xiaohongshu-icon svg,
.social-link.xiaohongshu-icon:hover {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left, .nav-right {
        gap: 1rem;
    }

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

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .skill-name {
        font-size: 0.9rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 0.9rem;
    }

    .contact .social-links {
        gap: 1rem;
    }

    .contact .social-link {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
    }

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

    .hero-small p {
        font-size: 1.2rem;
    }

    .service-grid, .learning-grid, .content-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .content-box {
        padding: 1rem;
    }

    .podcast-info h3 {
        font-size: 1.2rem;
    }

    .podcast-info p {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    5% {
        clip: rect(70px, 9999px, 71px, 0);
    }
    10% {
        clip: rect(29px, 9999px, 83px, 0);
    }
    15% {
        clip: rect(33px, 9999px, 92px, 0);
    }
    20% {
        clip: rect(61px, 9999px, 74px, 0);
    }
    25% {
        clip: rect(15px, 9999px, 32px, 0);
    }
    30% {
        clip: rect(35px, 9999px, 56px, 0);
    }
    35% {
        clip: rect(40px, 9999px, 93px, 0);
    }
    40% {
        clip: rect(22px, 9999px, 54px, 0);
    }
    45% {
        clip: rect(28px, 9999px, 65px, 0);
    }
    50% {
        clip: rect(54px, 9999px, 73px, 0);
    }
    55% {
        clip: rect(67px, 9999px, 98px, 0);
    }
    60% {
        clip: rect(36px, 9999px, 52px, 0);
    }
    65% {
        clip: rect(12px, 9999px, 23px, 0);
    }
    70% {
        clip: rect(58px, 9999px, 69px, 0);
    }
    75% {
        clip: rect(34px, 9999px, 91px, 0);
    }
    80% {
        clip: rect(23px, 9999px, 56px, 0);
    }
    85% {
        clip: rect(46px, 9999px, 77px, 0);
    }
    90% {
        clip: rect(65px, 9999px, 89px, 0);
    }
    95% {
        clip: rect(51px, 9999px, 98px, 0);
    }
    100% {
        clip: rect(18px, 9999px, 57px, 0);
    }
}

@keyframes bgAnimation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes gradientAnimation {
    /* Removed this animation block as it's no longer needed */
}

/* Subpage Styles */
.subpage {
    padding-top: 0; /* Already reset */
    margin-top: 0; /* Removing margin-top to prevent extra space from subpage */
}

.hero-small {
    padding: 0 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.hero-small h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 0; /* Ensures no top margin contributes to the gap */
}

.hero-small p {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 0; /* Ensures no top margin contributes to the gap */
}

/* Service Grid Styles */
.service-grid, .learning-grid, .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item, .learning-item, .content-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    color: var(--text-color);
}

.service-item::before, .learning-item::before, .content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    border-radius: 10px;
}

.service-item > *, .learning-item > *, .content-item > * {
    position: relative;
    z-index: 1;
}

.service-item:hover, .learning-item:hover, .content-item:hover {
    transform: translateY(-5px);
}

/* Learning Section Styles */
.learning-content {
    margin-top: 1.5rem;
}

.lesson-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.lesson-link:hover {
    background: var(--primary-color);
}

/* Content Section Styles */
.content-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.podcast-embed {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
}

.podcast-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.content-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Photography Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

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

.gallery-filter {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #f8f9fa;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-filter:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.gallery-filter.active {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(9, 132, 227, 0.3);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-filter {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Work Link Styles */
.work-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Podcast Section Styles */
.podcast-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.podcast-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.podcast-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.podcast-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.podcast-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.content-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 0.5rem;
    width: fit-content;
}

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

@media (max-width: 768px) {
    .podcast-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .podcast-cover {
        width: 200px;
        margin: 0 auto;
    }

    .podcast-info {
        text-align: center;
    }

    .podcast-info .content-link {
        margin: 0.5rem auto;
    }
}

/* Content Box Styles */
.content-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.podcast-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.podcast-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.content-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

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

@media (max-width: 768px) {
    .podcast-info {
        text-align: center;
    }

    .content-link {
        margin: 0 auto;
    }
}

/* Add scroll animation */
@keyframes scaleBackground {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 2.5rem; /* Large border-radius for pill shape */
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 0.5rem; /* Added gap between text and icon */
}

.btn-primary {
    background-color: var(--dark-green-color);
    color: white;
    border: 2px solid var(--dark-green-color);
}

.btn-primary:hover {
    background-color: var(--dark-green-hover);
    border-color: var(--dark-green-hover);
}

.btn-secondary {
    background-color: var(--dark-green-color);
    color: white;
    border: 2px solid white;
}

.content-item h2 {
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.content-item h3 {
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.content-item p {
    color: var(--text-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Specific styles for the podcast content item with background image */
.podcast-content-item {
    background-image: url('Max.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.podcast-content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    border-radius: 10px;
}

.podcast-content-item h2,
.podcast-content-item h3,
.podcast-content-item p {
    color: white;
}

.content-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.podcast-content-item .content-link {
    color: white;
} 