/*
Theme Name: TeamUp Partners
Theme URI: https://teamuppartners.com
Author: Custom Development Team
Author URI: https://teamuppartners.com
Description: Executive joint-venture custom theme with Tailwind CSS, CPT support, and dark modern corporate UI.
Version: 1.0.0
Text Domain: teamup-partners
*/

/* ==========================================================================
   1. GLOBAL RESET & FULL-WIDTH WRAPPER FIXES
   ========================================================================== */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Eliminate WP default theme container paddings/margins */
.site,
.site-content,
#content,
.site-main,
.entry-content,
.wp-site-blocks {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* ==========================================================================
   2. BRAND GRADIENTS & BACKGROUNDS
   ========================================================================== */
.header-4color-bg {
    background: linear-gradient(90deg, #09172a 0%, #0c2340 40%, #0284c7 80%, #2563eb 100%);
}

.glass-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ==========================================================================
   3. WORDPRESS MENU & SUBMENU DROPDOWN STYLING
   ========================================================================== */
/* FORCE HORIZONTAL NAVBAR MENU */
header nav ul, 
header nav ul.menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 1.25rem !important;
}

header nav ul li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

header nav ul li a {
    color: #e2e8f0 !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

header nav ul li a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.5) !important;
}

header nav ul li ul.sub-menu li a {
    padding: 0.625rem 1rem;
    width: 100%;
    color: #94a3b8;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
}

header nav ul li ul.sub-menu li a:hover {
    background-color: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding-left: 1.25rem;
}

/* ==========================================================================
   4. KEYFRAME ANIMATIONS
   ========================================================================== */
/* Floating Element Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* Audio Equalizer Bars Animation */
@keyframes eqBar {
    0%, 100% { height: 4px; }
    50% { height: 24px; }
}
.eq-bar {
    width: 4px;
    background: linear-gradient(to top, #38bdf8, #f59e0b);
    border-radius: 99px;
    animation: eqBar 1.2s ease-in-out infinite;
}
.eq-bar:nth-child(1) { animation-delay: 0.1s; }
.eq-bar:nth-child(2) { animation-delay: 0.3s; }
.eq-bar:nth-child(3) { animation-delay: 0.5s; }
.eq-bar:nth-child(4) { animation-delay: 0.2s; }
.eq-bar:nth-child(5) { animation-delay: 0.4s; }

/* Shimmer Line Animation */
@keyframes shimmerLine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.shimmer-border {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(56,189,248,0.8) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmerLine 3s infinite;
}

/* ==========================================================================
   5. NAVIGATION HOVER EFFECTS
   ========================================================================== */
.nav-anim-link {
    position: relative;
    transition: color 0.3s ease;
}
.nav-anim-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #38bdf8, #f59e0b);
    border-radius: 99px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}
.nav-anim-link:hover::after {
    width: 100%;
}
.nav-anim-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

/* ==========================================================================
   6. BUTTON STYLES & GRADIENTS
   ========================================================================== */
.btn-blue-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
    transition: all 0.3s ease;
}
.btn-blue-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
    background: linear-gradient(135deg, #38bdf8 0%, #1d4ed8 100%);
}

.btn-amber-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}
.btn-amber-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* ==========================================================================
   7. CARD HOVER STATES
   ========================================================================== */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}