/* GLOBAL */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('/assets/images/background.png') center top no-repeat fixed;
    background-size: cover;
    color: #fff;
}

.page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background: transparent;
}

.page-header img {
  max-width: 300px;
  width: 100%;
  height: auto;
  /*filter: drop-shadow(0 0 20px #a060ff);*/
}

.glow-banner {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 15px #a060ff);
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

/* FLOATING CARD STYLE */
.card {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 12px;
}

.card-purple {
    background: #1A002A;
    padding: 40px;
    border-radius: 12px;
}

/* HEADER */
.site-header {
    background: transparent;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LOGO */
.logo {
    max-width: 600px;
    height: auto;
}

/* NAVIGATION */
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.25s ease;
    text-shadow: none; /* no glow until hover */
}

.navbar a:hover {
    color: #C300FF;
    text-shadow:
        0 0 6px #C300FF,
        0 0 12px #7A00FF,
        0 0 20px #7A00FF,
        0 0 30px #C300FF;
	    position: relative;
}

.navbar a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #C300FF;
    box-shadow:
        0 0 6px #C300FF,
        0 0 12px #7A00FF;
}

/* HERO */
.hero {
    padding: 20px 20px;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons .btn {
    display: block;
    margin: 10px auto;
    max-width: 200px;
}

/* BUTTONS */
.btn {
    position: relative;
    padding: 12px 10px;
	width: 200px; /* or 100px, 90px, etc */
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    background: #7A00FF; /* purple */
    color: #fff; /* white text */
    transition: 0.25s ease;
    text-shadow: none; /* no glow until hover */
    box-shadow: none;  /* no glow until hover */
    border: none; /* THIS FIXES THE WHITE OUTLINE */
}

/* Hover: zoom + neon glow */
.btn:hover {
    transform: scale(1.08);
    color: #fff; /* keep text white */
    text-shadow:
        0 0 6px #C300FF,
        0 0 12px #C300FF,
        0 0 20px #7A00FF,
        0 0 30px #7A00FF;
    box-shadow:
        0 0 8px #C300FF,
        0 0 16px #7A00FF,
        0 0 24px #7A00FF;
}

/* WHY WE EXIST */
.mission {
    padding: 20px 20px;
    text-align: center;
}

.mission h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.mission p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* THREE BLOCKS */
.blocks-container {
    display: flex;
    flex-direction: row;
    text-align: center;
}

.blocks-container h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.blocks-container p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* COMMUNITY */
.community {
    display: flex;
    flex-direction: row;
    text-align: center;
}

.community h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.community p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* CONTACT */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; /* ensures inner content is centered */
    padding: 40px 0;
}

.contact .card {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers images + form */
    gap: 20px;
}

.contact-header {
    max-width: 300px; /* change this to whatever size you want */
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto; /* centers the form */
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* centers the inputs */
}

.contact-form input,
.contact-form textarea {
    width: 100%; /* or 80% if you want them narrower */
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #222;
    color: #fff;
}

.signature {
    display: block;
    margin: 20px auto 0;
    max-width: 400px;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: #ccc;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s ease;
    text-shadow: none; /* no glow until hover */
}

.footer-links a:hover {
    color: #C300FF;
    text-shadow:
        0 0 6px #C300FF,
        0 0 12px #7A00FF,
        0 0 20px #7A00FF,
        0 0 30px #C300FF;
	    position: relative;
}

.footer-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #C300FF;
    box-shadow:
        0 0 6px #C300FF,
        0 0 12px #7A00FF;
}

/* Footer link row */
.footer-links ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
}

.footer-links li {
    list-style: none;
}

/* Social icon row */
.social-row {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* SVG icon styling */
.social-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff !important;
    transition: 0.25s ease;
}

/* Neon glow on hover */
.social-icon:hover svg {
    fill: #C300FF;
    filter: drop-shadow(0 0 6px #C300FF)
            drop-shadow(0 0 12px #7A00FF)
            drop-shadow(0 0 20px #7A00FF);
    transform: scale(1.15);
}

/* PLAYLISTS.PHP */
.playlists {
    padding: 40px 20px;
    text-align: center;
}

/* Playlist container */
.playlist-section {
    margin-bottom: 20px;
}

/* Summary styling */
.playlist-section summary {
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 12px;
    background: #7A00FF;
    color: #fff;
    border-radius: 6px;
    transition: 0.25s ease;
    list-style: none;
    position: relative;
}

/* Remove default arrow */
.playlist-section summary::-webkit-details-marker {
    display: none;
}

/* Neon glow on hover */
.playlist-section summary:hover {
    transform: scale(1.05);
    color: #fff;
    text-shadow:
        0 0 6px #C300FF,
        0 0 12px #C300FF,
        0 0 20px #7A00FF,
        0 0 30px #7A00FF;
    box-shadow:
        0 0 8px #C300FF,
        0 0 16px #7A00FF,
        0 0 24px #7A00FF;
}

/* Smooth content wrapper */
.playlist-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 0 0 12px 12px;
    transition: max-height 0.45s ease, padding 0.45s ease;
}

/* When open, animate smoothly */
.playlist-section[open] .playlist-content {
    max-height: 1000px;
    padding: 20px;
}

/* COMMUNITY.PHP */
.merch-card {
    text-align: center;
}

/* Mobile-first: image fits card */
.merch-card .merch-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 15px #a060ff;
    object-fit: cover;
}

/* Desktop: limit image size */
@media (min-width: 768px) {
    .merch-card .merch-img {
        width: 400px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.community-testimonials .testimonial-grid p {
    text-align: center;
}

.community-testimonials {
    padding: 40px 20px;
    text-align: center;
}

.community-testimonials h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.community-testimonials h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.community-testimonials h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

.community-testimonials p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Grid layout for 2 cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Card styling */
.testimonial-card {
    background: rgba(124, 0, 255, 0.15); /* soft purple like your screenshot */
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(4px);
}

/* Stars */
.rating {
    font-size: 1.4rem;
    color: #C300FF;
    margin-bottom: 10px;
    text-shadow:
        0 0 6px #C300FF,
        0 0 12px #7A00FF;
}

/* Quote text */
.quote {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Profile row */
.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Profile image */
.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name + location */
.profile-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.location {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ABOUT.PHP */
.about-content {
    padding: 40px 20px;
    text-align: center;
}

.about-content .card {
    padding: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Highlighted emotional line */
.about-content .highlight {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 30px 0;
    text-align: center;
    line-height: 1.6;
    color: #C300FF;
    text-shadow:
        0 0 6px #C300FF,
        0 0 12px #7A00FF;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #C300FF;
    padding-bottom: 6px;
    display: inline-block;
}

/* SCHEDULE.PHP */
.winner-card {
    text-align: center;
}

/* Mobile-first: trophy scales to card */
.trophy-winner {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    filter: drop-shadow(0 0 10px #a060ff);
    object-fit: contain;
}

/* Desktop: restore intended size */
@media (min-width: 768px) {
    .trophy-winner {
        width: 400px !important;
        max-width: 100%;
    }
}

/* MEMES.PHP */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.meme-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px #a060ff;
    background: #000;
}

/* Lightbox overlay */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Enlarged image */
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 25px #a060ff;
}

/* Cursor pointer for thumbnails */
.meme-thumb {
    cursor: pointer;
    transition: transform 0.2s;
}

.meme-thumb:hover {
    transform: scale(1.03);
}

/* HELPLINE PAGE */

.mfmh-help-page {
    padding: 40px 20px;
}

.mfmh-help-page .intro {
    text-align: center;
    margin-bottom: 30px;
}

.mfmh-help-page .intro h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #d8a7ff;
}

.mfmh-help-page .intro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.mfmh-help-page .urgent-box {
    background: linear-gradient(135deg, #4b0082, #1b0028);
    border: 2px solid #d8a7ff;
    border-radius: 18px;
    padding: 25px;
    margin: 25px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 0 20px rgba(216,167,255,0.35);
}

.mfmh-help-page .urgent-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d8a7ff;
}

.mfmh-help-page .urgent-box p {
    font-size: 1.2rem;
}

.mfmh-help-page .section-title {
    text-align: center;
    font-size: 2rem;
    color: #d8a7ff;
    margin: 40px 0 10px;
}

.mfmh-help-page .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px auto;
}

.mfmh-help-page .support-card {
    background: #160020;
    border: 1px solid #7d3cff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 0 14px rgba(125,60,255,0.25);
    text-align: center;
}

.mfmh-help-page .support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #d8a7ff;
}

.mfmh-help-page .support-card p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #f5eaff;
}

.mfmh-help-page .help-btn {
    display: inline-block;
    margin: 8px 6px 0 0;
    padding: 10px 14px;
    background: #8b35ff;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.25s ease;
}

.mfmh-help-page .help-btn:hover {
    background: #b86bff;
}

.mfmh-help-page .soft-note {
    text-align: center;
    margin-top: 40px;
}

.mfmh-help-page .soft-note h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d8a7ff;
}

.mfmh-help-page .soft-note p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 10px auto;
}

.mfmh-help-page .signature {
    font-size: 1.1rem;
    margin-top: 20px;
    font-style: italic;
    color: #d8a7ff;
}
.promo-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 15px #a060ff;
    display: block;
}

.community-testimonials a,
.community-testimonials a:visited,
.community-testimonials a:active,
.community-testimonials a:hover {
    color: #fff !important;
    text-decoration: underline;
}
    
.hover-underline {
    text-decoration: none !important;
    color: #fff !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

        .divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #C300FF, transparent);
            margin: 40px 0;
            opacity: 0.4;
        }