/* 
   Zymofar Rhythmic Brand Journey - Global Styles
   Standardized components for the modernized ecosystem.
*/

:root {
    --grad-logo: linear-gradient(90deg, #8e24aa, #e91e63, #ff9800, #8e24aa);
    --grad-size: 300% 100%;
}

@keyframes zymo-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Universal Modern Hero */
.zymo-modern-hero {
    padding: 130px 0 80px;
    background: var(--grad-logo);
    background-size: var(--grad-size);
    animation: zymo-shimmer 15s ease infinite;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.zymo-modern-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
    background-size: 50px 50px; pointer-events: none;
}

.zymo-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.zymo-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.zymo-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zymo-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.zymo-hero-title span {
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zymo-hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 600px;
}

.zymo-hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.zymo-hero-img-box {
    position: relative;
}

.zymo-hero-img-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Floating Elements for Premium Feel */
.zymo-hero-float {
    position: absolute;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 5;
    animation: zymo-float 6s ease-in-out infinite;
}

@keyframes zymo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 1024px) {
    .zymo-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .zymo-hero-content { align-items: center; }
    .zymo-hero-ctas { justify-content: center; }
    .zymo-hero-img-box { margin-top: 60px; }
}
