/* ============================================
   SPECIAL INTEREST PODCAST - MAIN STYLES
   ============================================ */

:root {
    --primary-color: #85458c;
    --secondary-color: #764ba2;
    --accent-color: #fec85c;
    --text-dark: #6b7280;
    --text-light: #6b7280;
    --bg-dark: #f7fafc;
    --bg-dark: #0b1220;
    --text-on-dark: #e6eef6;
    --bg-white: #ffffff;
    --card-bg: #0f1724; /* slightly lighter than --bg-dark for card surfaces */
    --card-foreground: var(--text-on-dark);
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-on-dark);
    background-color: var(--bg-dark);
    line-height: 1.6;
}

/* Ensure content inside main container uses readable dark text on light cards */
/*.container {
    color: var(--text-dark);
}*/

/* Card foregrounds for dark card surfaces */
.resource-card,
.blog-card,
.episode-card,
.featured-card,
.add-resource-section,
.comment-form,
.comment,
.benefit-card,
.tier-card,
.meeting-card,
.support-card,
.custom-merch,
.merch-card,
.info-box,
.admin-card,
.admin-section {
    color: var(--card-foreground);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    margin: 0;
}

.navbar-brand a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.navbar-brand a:hover {
    opacity: 0.8;
}

#navbar-menu {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

#navbar-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

#navbar-menu li {
    margin: 0;
}

#navbar-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

#navbar-menu a:hover {
    opacity: 0.8;
}

/* Hamburger Toggle Button */
.navbar-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    flex-direction: column;
    gap: 6px;
}

.bar1, .bar2, .bar3 {
    width: 24px;
    height: 3px;
    background-color: white;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
    margin-bottom: 3px;
}

.navbar-toggle.change .bar1 {
    transform: rotate(-45deg) translate(-2px, 8px);
}

.navbar-toggle.change .bar2 {
    opacity: 0;
}

.navbar-toggle.change .bar3 {
    transform: rotate(45deg) translate(-1px, -7px);
}

/* Responsive Design - Tablet and Mobile */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .navbar-brand h1 {
        font-size: 1.25rem;
        flex: 1;
    }

    .navbar-toggle {
        display: flex;
    }

    #navbar-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-basis: 100%;
        order: 3;
    }

    #navbar-menu.show,
    #navbar-menu[style*="display: block"] {
        display: block !important;
    }

    #navbar-menu ul {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 20px;
    }

    #navbar-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #navbar-menu li:last-child {
        border-bottom: none;
    }

    #navbar-menu a {
        display: block;
        padding: 0.5rem 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-spotify {
    background: #1DB954;
    color: white;
}

.btn-spotify:hover {
    background: #1ed760;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ============================================
   SPOTIFY SECTION
   ============================================ */

.episodes-section {
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.spotify-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-container iframe {
    width: 100%;
    border-radius: 12px;
    min-height: 300px;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.episode-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.episode-card h4 {
    margin-bottom: 1rem;
}

.episode-card .btn {
    margin-top: 1rem;
}

/* ============================================
   FEATURED SECTIONS
   ============================================ */

.featured-sections {
    margin: 3rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border-top: 4px solid var(--primary-color);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.featured-card h3 {
    margin-bottom: 0.5rem;
}

.featured-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 3rem 0;
}

.newsletter-section h2 {
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
}

.newsletter-form button {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.form-info {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-dark);
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */

.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.page-header .btn {
    margin-top: 1.5rem;
}

.resources-section {
    margin-bottom: 4rem;
}

.resources-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--card-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-content h3 {
    margin-bottom: 0.7rem;
}

.resource-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.add-resource-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.add-resource-section h2 {
    margin-bottom: 0.5rem;
}

.add-resource-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.resource-form {
    max-width: 500px;
}

.no-resources {
    background: var(--bg-dark);
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
    color: var(--text-light);
}

/* ============================================
   BLOG
   ============================================ */

.blog-list {
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 2rem;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    flex: 0 0 250px;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-card h2 {
    margin-bottom: 0.5rem;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.no-posts {
    background: var(--bg-dark);
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
    color: var(--text-light);
}

/* ============================================
   BLOG POST PAGE
   ============================================ */

.blog-post {
    background: var(--card-bg);
    padding: 3rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-featured-image {
    margin: 2rem 0;
    text-align: center;
}

.post-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: var(--text-dark);
}

.post-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* ============================================
   COMMENTS
   ============================================ */

.comments-section {
    background: var(--bg-dark);
    padding: 3rem 0;
}

.comment-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.comment-form h3 {
    margin-bottom: 1rem;
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    background: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.comment-author {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
}

.no-comments {
    background: var(--card-bg);
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
    color: var(--text-light);
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.page-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   PATREON PAGE
   ============================================ */

.patreon-benefits,
.patreon-tiers,
.patreon-meetings {
    margin: 3rem 0;
}

.benefits-grid,
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card,
.tier-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover,
.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tier-card {
    display: flex;
    flex-direction: column;
}

.tier-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-card h3 {
    font-size: 2rem;
    margin: 1rem 0;
}

.tier-name {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tier-benefits {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
    text-align: left;
}

.tier-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.tier-benefits i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.meetings-list {
    display: grid;
    gap: 1.5rem;
}

.meeting-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.meeting-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.meeting-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.meeting-date {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.no-meetings {
    background: var(--bg-dark);
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
    color: var(--text-light);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.support-card h3 {
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.other-support {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 0.5rem;
    margin: 3rem 0;
}

.other-support h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.custom-merch {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.custom-merch h2 {
    margin-bottom: 1rem;
}

.custom-merch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.custom-merch a:hover {
    color: var(--secondary-color);
}

/* ============================================
   MERCH PAGE
   ============================================ */

.merch-intro {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.merch-card {
    background: var(--card-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.merch-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    color: white;
    opacity: 0.7;
}

.merch-card h3 {
    margin: 1rem 0 0.5rem 1rem;
}

.merch-card .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.merch-card .description {
    color: var(--text-light);
    margin: 0.5rem 1rem;
}

.merch-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.merch-options .option {
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
}

.merch-options .option:first-child {
    border-top: none;
    padding-top: 0;
}

.merch-card .btn {
    margin: 1rem;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.info-box h3 {
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .navbar .container {
        position: relative;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar-brand {
        flex: 0 1 auto;
    }

    .navbar-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 9px;
    }

    #navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 1rem 0;
        z-index: 1000;
        display: none !important;
    }

    #navbar-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    #navbar-menu a {
        display: block;
        padding: 0.75rem 0;
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
        font-weight: 500;
    }

    #navbar-menu a:hover {
        opacity: 0.8;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-image {
        flex: 0 0 100%;
        height: 200px;
    }

    .tier-card.featured {
        transform: scale(1);
    }

    .tier-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .navbar-menu ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .featured-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 1.5rem;
    }

    .blog-content {
        padding: 1rem;
    }
}
