/*
Theme Name: Dream Outrageous OnePage
Theme URI: https://dreamoutrageous.com
Author: Dream Outrageous
Description: Definitive Stable V4.4 - High-impact, mobile-first one-page community theme with Interactive Bio, Product Supply (6 items), and Full Brand Typography.
Version: 4.4
Text Domain: dream-outrageous
*/

/* --- CORE BASE STYLES --- */
html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%;
}

body { 
    background-color: #000000; 
    color: #ffffff; 
    margin: 0; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

/* --- TYPOGRAPHY & BRANDING --- */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.05em;
}

.brand-gradient {
    background: linear-gradient(to right, #d946ef, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- UTILITIES --- */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}

.no-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* --- INTERACTIVE ELEMENTS --- */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:active {
    transform: scale(0.95);
}

/* --- SELECTION BRANDING --- */
::selection {
    background: #d946ef;
    color: #ffffff;
}

/* --- WORDPRESS CORE SUPPORT --- */
.alignleft { float: left; margin: 0 1.5em 1.5em 0; }
.alignright { float: right; margin: 0 0 1.5em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5em; }

.wp-caption {
    margin-bottom: 1.5em;
    text-align: center;
    padding-top: 5px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #71717a;
    margin: 0.5em 0 0;
}

/* --- HALL OF FAME INTERACTION --- */
.story-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- SHOP SECTION TRANSITIONS --- */
#shop {
    box-shadow: 0 -50px 100px -20px rgba(0,0,0,0.5);
}

#shop .group:hover {
    transform: translateY(-5px);
}

.product-card {
    background: #f4f4f5;
    border-radius: 4rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(217, 70, 239, 0.15);
}

/* Responsive Font Scaling Fallbacks */
@media (max-width: 768px) {
    .mobile-title-fix {
        font-size: clamp(3rem, 15vw, 6rem) !important;
        line-height: 0.85 !important;
    }
}