/*
 * Partner Acrobatics Studio Gradients
 * CSS file for WordPress/Oxygen Builder
 * Upload to: wp-content/themes/your-theme/css/ or wp-content/uploads/
 * Enqueue in functions.php or use @import in style.css
 */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */

:root {
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-900: #064e3b;
    
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-600: #ea580c;
    --orange-900: #9a3412;
    
    --rose-400: #fb7185;
    --rose-600: #e11d48;
    --rose-900: #881337;
    
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    --gray-300: #d1d5db;
    --gray-700: #374151;
}

/* ==========================================================================
   Background Gradients
   ========================================================================== */

/* Main page background - apply to body or main container */
.acro-main-bg {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 50%, #000000 100%);
    min-height: 100vh;
}

/* Header background */
.acro-header-bg {
    background: linear-gradient(90deg, #000000 0%, var(--slate-900) 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Color overlay - use as pseudo-element or separate div */
.acro-color-overlay {
    background: linear-gradient(90deg, 
        rgba(6, 78, 59, 0.2) 0%, 
        rgba(154, 52, 18, 0.2) 50%, 
        rgba(136, 19, 55, 0.2) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Bottom fade transition */
.acro-bottom-fade {
    background: linear-gradient(0deg, var(--slate-900) 0%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   Decorative Elements
   ========================================================================== */

/* Base class for all floating blobs */
.acro-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
}

/* Large emerald blob */
.acro-blob-emerald {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    top: 40px;
    left: 40px;
}

/* Medium orange blob */
.acro-blob-orange {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    top: 80px;
    right: 80px;
}

/* Small rose blob */
.acro-blob-rose {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.2) 0%, rgba(225, 29, 72, 0.2) 100%);
    bottom: 40px;
    left: 33%;
}

/* Combined blob classes for easy application */
.acro-blob.acro-blob-emerald {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
}

.acro-blob.acro-blob-orange {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
}

.acro-blob.acro-blob-rose {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.2) 0%, rgba(225, 29, 72, 0.2) 100%);
}

/* ==========================================================================
   Text Gradients
   ========================================================================== */

/* Main title gradient */
.acro-text-gradient {
    background: linear-gradient(90deg, var(--emerald-400) 0%, var(--orange-300) 50%, var(--rose-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
}

/* Alternative text gradients */
.acro-text-emerald {
    background: linear-gradient(90deg, var(--emerald-400) 0%, var(--emerald-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.acro-text-orange {
    background: linear-gradient(90deg, var(--orange-300) 0%, var(--orange-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.acro-text-rose {
    background: linear-gradient(90deg, var(--rose-400) 0%, var(--rose-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ==========================================================================
   Button Gradients
   ========================================================================== */

/* Primary button gradient */
.acro-btn-primary {
    background: linear-gradient(90deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(52, 211, 153, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.acro-btn-primary:hover {
    background: linear-gradient(90deg, var(--emerald-600) 0%, var(--emerald-700) 100%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Secondary button gradient */
.acro-btn-secondary {
    background: linear-gradient(90deg, var(--orange-400) 0%, var(--orange-600) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(251, 146, 60, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.acro-btn-secondary:hover {
    background: linear-gradient(90deg, var(--orange-600) 0%, #c2410c 100%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Accent button gradient */
.acro-btn-accent {
    background: linear-gradient(90deg, var(--rose-400) 0%, var(--rose-600) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(251, 113, 133, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.acro-btn-accent:hover {
    background: linear-gradient(90deg, var(--rose-600) 0%, #be185d 100%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   Card and Section Gradients
   ========================================================================== */

/* Card with emerald gradient */
.acro-card-emerald {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.5) 0%, rgba(6, 78, 59, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    padding: 24px;
}

/* Card with orange gradient */
.acro-card-orange {
    background: linear-gradient(135deg, rgba(154, 52, 18, 0.5) 0%, rgba(154, 52, 18, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 12px;
    padding: 24px;
}

/* Card with rose gradient */
.acro-card-rose {
    background: linear-gradient(135deg, rgba(136, 19, 55, 0.5) 0%, rgba(136, 19, 55, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 113, 133, 0.3);
    border-radius: 12px;
    padding: 24px;
}

/* Generic glass card */
.acro-card-glass {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

/* ==========================================================================
   Complete Header Component
   ========================================================================== */

.acro-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #000000 0%, var(--slate-900) 50%, #000000 100%);
    color: white;
    padding: 80px 0;
    min-height: 500px;
}

/* Header with overlay - use this class to include the color overlay */
.acro-header.acro-with-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(6, 78, 59, 0.2) 0%, 
        rgba(154, 52, 18, 0.2) 50%, 
        rgba(136, 19, 55, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Header with bottom fade */
.acro-header.acro-with-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background: linear-gradient(0deg, var(--slate-900) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Header content wrapper */
.acro-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header title */
.acro-header-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--emerald-400) 0%, var(--orange-300) 50%, var(--rose-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.1;
}

/* Header subtitle */
.acro-header-subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: var(--emerald-400);
    margin-bottom: 32px;
    font-weight: 500;
}

/* Header description */
.acro-header-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Text colors */
.acro-text-emerald-light { color: var(--emerald-300); }
.acro-text-emerald { color: var(--emerald-400); }
.acro-text-orange-light { color: var(--orange-300); }
.acro-text-orange { color: var(--orange-400); }
.acro-text-rose { color: var(--rose-400); }
.acro-text-gray-light { color: var(--gray-300); }

/* Background utilities */
.acro-bg-transparent { background: transparent; }
.acro-bg-dark { background: rgba(0, 0, 0, 0.8); }
.acro-bg-blur { backdrop-filter: blur(10px); }

/* Border utilities */
.acro-border-emerald { border: 1px solid rgba(52, 211, 153, 0.3); }
.acro-border-orange { border: 1px solid rgba(251, 146, 60, 0.3); }
.acro-border-rose { border: 1px solid rgba(251, 113, 133, 0.3); }

/* Positioning utilities */
.acro-relative { position: relative; }
.acro-absolute { position: absolute; }
.acro-z-1 { z-index: 1; }
.acro-z-2 { z-index: 2; }

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    .acro-blob-emerald,
    .acro-blob-orange,
    .acro-blob-rose {
        display: none; /* Hide decorative elements on mobile */
    }
    
    .acro-header {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .acro-header-content {
        padding: 0 16px;
    }
    
    .acro-btn-primary,
    .acro-btn-secondary,
    .acro-btn-accent {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .acro-header {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .acro-card-emerald,
    .acro-card-orange,
    .acro-card-rose,
    .acro-card-glass {
        padding: 16px;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .acro-blob,
    .acro-blob-emerald,
    .acro-blob-orange,
    .acro-blob-rose {
        display: none;
    }
    
    .acro-text-gradient,
    .acro-text-emerald,
    .acro-text-orange,
    .acro-text-rose {
        -webkit-text-fill-color: initial;
        color: #000;
        background: none;
    }
}