/*======================================
Theme Name: Weekend Warrior
Theme URI: https://divicake.com/
Description: A high-performance, bespoke Divi Child Theme for the Otto 1890 Weekend Warrior redesign. Engineered for premium event experiences with custom CSS, advanced animations, and a focus on speed and brand consistency.
Version: 1.0
Author: Andrew
Author URI: https://divicake.com/
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */

/* --- GOD-TIER CUSTOM STYLES --- */

/* 1. Glassmorphism Header Effect */
.glass-header {
    background: rgba(5, 44, 43, 0.7) !important; /* Teal at 70% opacity */
    backdrop-filter: blur(12px); /* The frosted glass effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(159, 212, 216, 0.2); /* Subtle Mint border */
}

/* 2. Expanding Column Hero Effect */
.expanding-column {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    flex: 1;
    overflow: hidden;
}

.expanding-column:hover {
    flex: 2.5 !important; /* Makes the hovered side much wider */
}

/* 3. Hero Text reveal on hover */
.hero-content {
    opacity: 0.6;
    transition: all 0.4s ease;
}

.expanding-column:hover .hero-content {
    opacity: 1;
    transform: scale(1.05);
}