/*
Theme Name: HITERS
File: Hero Section - Co-packing Split Design
Version: 2.0.0
Description: Modern split design with white/gray color scheme
*/

:root {
    --primary-black: #000000;
    --primary-red: #E31E24;
    --primary-white: #FFFFFF;
    --gray-dark: #1A1A1A;
    --gray-medium: #808080;
    --gray-light: #F5F5F5;
}

/* Hero Section - Split Design */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    position: relative;
}

.hero-left {
    background: #FFFFFF !important;
    padding: 120px 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-right {
    background: linear-gradient(135deg, #4A4A4A 0%, #3A3A3A 30%, #2A2A2A 70%, #1A1A1A 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--primary-black);
}

.hero-title-red {
    color: var(--primary-red);
    display: block;
}

.hero-subtitle {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    color: var(--gray-medium);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 22px 52px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-black);
    padding: 22px 52px;
    border: 2px solid var(--primary-black);
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-3px);
}

/* Right side visual */
.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 60px 0;
}

.main-box {
    position: relative;
    /* width: 100%; */
    /* flex: 1; */
    background-color: #4A4A4A;
    background-image: linear-gradient(135deg, rgba(90, 90, 90, 0.3) 0%, rgba(74, 74, 74, 0.3) 100%), 
                      url('../media/fotobannera.png');
    background-size: cover, contain;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border: 4px solid var(--primary-red);
    border-radius: 24px;
    box-shadow:
        0 40px 80px rgba(227, 30, 36, 0.4),
        inset 0 0 80px rgba(227, 30, 36, 0.15);
    animation: rotateBox 20s linear infinite;
    transform-style: preserve-3d;
    margin-bottom: 0;
}

.main-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: var(--primary-red);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

.product-item {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--gray-light) 100%);
    border: 2px solid rgba(227, 30, 36, 0.3);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: floatProduct 5s ease-in-out infinite;
}

.product-item-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.product-item-2 {
    width: 140px;
    height: 140px;
    top: 3%;
    right: 8%;
    animation-delay: 1s;
    background: linear-gradient(135deg, var(--primary-red) 0%, #C71920 100%);
    color: var(--primary-white);
}

.product-item-3 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 2%;
    animation-delay: 2s;
}

.product-item-4 {
    width: 130px;
    height: 130px;
    bottom: 18%;
    right: 5%;
    animation-delay: 1.5s;
}

.product-item-5 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: -5%;
    animation-delay: 3s;
}

/* Stats strip */
.stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-red);
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    z-index: 10;
}

.stat-item {
    text-align: center;
    color: var(--primary-white);
}

.stat-number {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Animations */
@keyframes rotateBox {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    50% {
        transform: rotateY(5deg) rotateX(2deg);
    }
    100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 0 30px 60px;
    }

    .hero-right {
        min-height: 500px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .main-box {
        width: 320px;
        height: 320px;
        background-size: cover, cover;
    }

    .stats-strip {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 30px;
    }
}

@media (max-width: 640px) {
    .hero-left {
        padding: 60px 20px 40px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 18px 32px;
    }

    .main-box {
        width: 250px;
        height: 250px;
        background-size: cover, cover;
    }

    .product-item {
        transform: scale(0.8);
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }
}
