/**
 * AC Home Page Pro - Hero Module Styles
 * Brand Colors: Sunshine Yellow (#FFD600) | Electric Lime (#C3FF00)
 * Version: 1.0.0 - Full Width Edge-to-Edge
 */

/* ===================================
   FORCE FULL WIDTH (Override Theme)
   =================================== */

.ac-hp-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    overflow: hidden;
}

.ac-hp-hero-container {
    display: flex;
    min-height: 650px;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ===================================
   HERO SIDES (50% EACH)
   =================================== */

.ac-hp-hero-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

/* Creators Side - Sunshine Yellow */
.ac-hp-hero-creators {
    background: #FFD600;
    background: linear-gradient(135deg, #FFD600 0%, #FFC700 100%);
}

/* Brands Side - Electric Lime */
.ac-hp-hero-brands {
    background: #C3FF00;
    background: linear-gradient(135deg, #C3FF00 0%, #B8F500 100%);
}

/* ===================================
   CONTENT WRAPPER
   =================================== */

.ac-hp-hero-content {
    max-width: 550px;
    text-align: left;
}

/* ===================================
   LABEL (FOR CREATORS / FOR BRANDS)
   =================================== */

.ac-hp-hero-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* ===================================
   TITLE
   =================================== */

.ac-hp-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #1a1a1a;
    letter-spacing: -1px;
}

/* ===================================
   SUBTITLE
   =================================== */

.ac-hp-hero-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 32px 0;
    color: #2D3748;
    font-weight: 400;
}

/* ===================================
   CTA BUTTONS
   =================================== */

.ac-hp-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 42px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Creators Button */
.ac-hp-btn-creators {
    background: #1a1a1a;
    color: #FFD600;
}

.ac-hp-btn-creators:hover {
    background: #000000;
    color: #FFD600;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Brands Button */
.ac-hp-btn-brands {
    background: #1a1a1a;
    color: #C3FF00;
}

.ac-hp-btn-brands:hover {
    background: #000000;
    color: #C3FF00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ===================================
   STATS TEXT
   =================================== */

.ac-hp-hero-stats {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    margin-top: 20px;
    color: #2D3748;
    font-weight: 500;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

/* Tablets */
@media (max-width: 1024px) {
    .ac-hp-hero-container {
        min-height: 550px;
    }

    .ac-hp-hero-side {
        padding: 60px 0;
    }

    .ac-hp-hero-title {
        font-size: 48px;
    }

    .ac-hp-hero-subtitle {
        font-size: 17px;
    }
}

/* Mobile Landscape & Portrait */
@media (max-width: 768px) {
    .ac-hp-hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .ac-hp-hero-side {
        padding: 60px 30px;
    }

    .ac-hp-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .ac-hp-hero-title {
        font-size: 42px;
    }

    .ac-hp-hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .ac-hp-btn {
        padding: 16px 36px;
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ac-hp-hero-side {
        padding: 50px 20px;
    }

    .ac-hp-hero-label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .ac-hp-hero-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .ac-hp-hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .ac-hp-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .ac-hp-hero-stats {
        font-size: 14px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .ac-hp-hero-title {
        font-size: 30px;
    }

    .ac-hp-hero-subtitle br {
        display: none;
    }
}
