/* Review Carousel Styles */
.review-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.review-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}
.review-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 0 0.5rem;
    transition: transform 0.3s;
}
.review-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.carousel-arrow {
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.carousel-arrow.left {
    margin-right: 1rem;
}
.carousel-arrow.right {
    margin-left: 1rem;
}
.carousel-arrow:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.08);
}

@media (max-width: 700px) {
    .review-card {
        min-width: 85vw;
        max-width: 90vw;
    }
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}


/* 
  Bamba Radio - Global Styles
  Primary Color: #013C32 (Deep Jungle Green)
  Accent Color: #FCFC00 (Vivid Yellow)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary-color: #013C32;
    --accent-color: #FCFC00;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --bg-light: #F4F4F4;
    --transition: all 0.3s ease;
    
    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 5vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-body: clamp(1rem, 2vw, 1.125rem);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, .brand-name {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Listen Live Button */
.btn-live {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-live:hover {
    background-color: #e6e600;
    transform: translateY(-2px);
}

.btn-live.playing {
    background-color: #ff4444;
    color: white;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
}

/* Hero Sections */
.hero, .slider-container {
    position: relative;
    height: 55vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(1, 60, 50, 0.8), rgba(1, 60, 50, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
        max-width: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 80px; /* Move hero-content down for desktop/laptop */
    }

.hero h1 {
    font-size: var(--fs-h1);
    word-break: break-word;
    margin-bottom: 1rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.slide.active .hero h1,
.slide.active .hero p,
.slide.active .hero-play-wrapper {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 600px) {
    .hero, .slider-container {
        height: 38vh;
        min-height: 180px;
    }
    .hero-content {
        max-width: 95vw;
        padding: 0 8px;
    }
        .hero-content {
            max-width: 95vw;
            padding: 0 8px;
            margin-top: 0; /* Reset margin for mobile */
        }
    .hero h1 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    .hero p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    .btn-hero-play {
        width: 48px;
        height: 48px;
    }
    .btn-hero-play i {
        font-size: 1.2rem;
    }
    .hero-play-wrapper span {
        font-size: 0.7rem !important;
    }
}

/* Hero Play Button */
.hero-play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    margin-left: 0;
}

.btn-hero-play {
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(252, 252, 0, 0.4);
}

.btn-hero-play::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.btn-hero-play i {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-left: 8px; /* Offset for play icon centering */
}

.btn-hero-play:hover {
    transform: scale(1.1);
    background-color: #fff;
}

.btn-hero-play.playing {
    background-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
}

.btn-hero-play.playing::after {
    border-color: #ff4444;
}

.btn-hero-play.playing i {
    margin-left: 0;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Slider (Index Only) */
.slider-container {
    height: 85vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Grid Sections (Shows, News, Team) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card h3 {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit:hover {
    background-color: #025a4b;
}

/* Section Dividers & Backgrounds */
.section-relative {
    position: relative;
    z-index: 1;
}

.divider-top-slanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    transform: translateY(-99%);
}

.bg-pattern {
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #f9f9f9;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.bg-accent-section {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.bg-warm-section {
    background-color: #FFFDE7;
}

.latest-news-bg {
    position: relative;
    z-index: 1;
}

.latest-news-bg .latest-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.753); /* dark green overlay, adjust opacity as needed */
    z-index: 2;
    pointer-events: none;
}

.latest-news-bg .container,
.latest-news-bg .bg-pattern {
    position: relative;
    z-index: 3;
}
/* Latest News Section Fixed Background */
.latest-news-bg {
    background: url('../img/news.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.latest-news-bg .bg-pattern {
    background: none;
}

/* View More Arrow Hover Effect */
.view-more-arrow {
    transition: color 0.3s, transform 0.3s;
}
.view-more-arrow:hover {
    color: var(--accent-color);
    transform: translateX(6px) scale(1.08);
}
.view-more-arrow i {
    transition: transform 0.3s;
}
.view-more-arrow:hover i {
    transform: translateX(3px);
}



/* Reviews Section */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-stars {
    color:#013C32;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.review-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.review-user span {
    font-size: 0.8rem;
    color: #777;
}

/* FAQ Section */

.faq-bg-section {
    position: relative;
    padding: 3rem 0;
    background: url('/img/faql.jpg') no-repeat center center;
    background-size: cover;
}

.faq-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.113), rgba(251, 251, 251, 0));
    z-index: 1;
}

.faq-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid rgba(1, 60, 50, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    color: rgba(8, 8, 8, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* News Search & Filters */
.news-filters {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.search-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(1, 60, 50, 0.1);
}

.search-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: #666;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

/* Article Page Styles */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
}

.share-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-section h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.share-btn.facebook { background-color: #1877F2; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-btn.tiktok { background-color: #000000; }
.share-btn.x { background-color: #000000; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.9;
}

.news-item {
    cursor: pointer;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-item:hover h3 {
    color: var(--primary-color);
}

/* About Page - Mission, Vision, Values */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.value-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary-color);
    color: white;
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item:hover i {
    color: white;
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

/* Founder Section */
.founder-section {
    margin-top: 6rem;
    padding: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-img {
    flex: 0 0 350px;
    height: 450px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 10px 10px 0 var(--primary-color);
}

.founder-info {
    flex: 1;
}

.founder-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-info .title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-socials {
    display: flex;
    gap: 1.5rem;
}

.founder-socials a {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.founder-socials a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Get in Touch Section */
.get-in-touch {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    margin-top: 6rem;
}

.get-in-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 60, 50, 0.85);
    z-index: 1;
}

.get-in-touch .container {
    position: relative;
    z-index: 2;
}

.get-in-touch h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.get-in-touch p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.social-connect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.social-connect-item i {
    font-size: 2.2rem;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-connect-item:hover i {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-connect-item span {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
@media (max-width: 600px) {
    .get-in-touch {
        padding: 3rem 0;
    }
    .get-in-touch h2 {
        font-size: 1.5rem;
    }
    .get-in-touch p {
        font-size: 1rem;
    }
    .social-connect-grid {
        gap: 1rem;
    }
    .social-connect-item i {
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
    }
    .social-connect-item span {
        font-size: 0.75rem;
    }
}
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-card h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shows Page Styles */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.show-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.show-time-banner {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.show-card-body {
    padding: 2rem;
    flex: 1;
}

.show-card-body h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.show-host {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.show-host img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.show-host-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
}

.show-host-info span {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .founder-section {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-img {
        flex: 0 0 300px;
        width: 100%;
        max-width: 300px;
        height: 350px;
        margin: 0 auto;
    }
    
    .founder-socials {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-live {
        margin-left: auto;
        margin-right: 1rem;
    }
}

@media (max-width: 600px) {
    .btn-live span {
        display: none; /* Hide text on very small screens */
    }
    .btn-live {
        padding: 0.6rem;
    }
    .founder-section {
        padding: 1rem;
        gap: 1.2rem;
    }
    .founder-img {
        flex: 0 0 180px;
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto 1rem auto;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(1,60,50,0.12);
        background-size: cover;
        background-position: center;
    }
    .founder-info h2 {
        font-size: 1.3rem;
    }
    .founder-info .title {
        font-size: 1rem;
    }
    .founder-socials {
        gap: 0.7rem;
        margin-top: 1rem;
    }
    .founder-socials a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
