/*
Theme Name: Mana Mushroom Theme
Theme URI: https://manamushroom.org
Author: Mana Mushroom Inc.
Author URI: https://manamushroom.org
Description: A custom theme for Mana Mushroom Inc., featuring a fixed background and a central information card.
Version: 1.9 (SEO Optimized)
Requires at least: 5.0
Tested up to: 6.8.1
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, one-column, minimalist, one-page
Text Domain: manamushroom
*/

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents scrolling on the main page */
}
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('https://manamushroom.org/wp-content/uploads/2025/07/bg-scaled.webp');
    background-size: cover;
    background-position: center;
}
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.info-card {
    background-color: rgba(40, 40, 40, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: clamp(1rem, 4vmin, 3rem);
    aspect-ratio: 3 / 2;
    width: auto;
    height: 85vmin;
    max-width: 85vw; 
    max-height: 85vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    animation: fadeInUpScale 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.theme-accent-text {
    color: #EAEAEA;
}
.info-card h3, .info-card h4, .info-card p, .info-card a, .info-card span {
    color: #f0f0f0;
}
.info-card a:hover {
    color: white;
}
.logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}
#mana-logo {
    animation: pulse 3s ease-in-out infinite;
}
@media (max-width: 768px) {
    body, html {
        overflow: auto;
        height: auto;
    }
    .content-wrapper {
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
        height: auto;
    }
    .info-card {
        width: 90vw;
        height: auto;
        padding: 1.5rem;
        max-width: none;
        max-height: none;
        aspect-ratio: unset;
    }
    .info-card .grid {
        grid-template-columns: 1fr;
    }
}

