/* ===========================================
   OLIMPOSGAZAB HERO WITH SPLIT LAYOUT - IMAGE RIGHT, TEXT LEFT
   =========================================== */

/* Hero Section Container */
.olimpos-split-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(3, 7, 30, 0.95) 0%, 
    rgba(20, 20, 50, 0.98) 50%, 
    rgba(3, 7, 30, 0.95) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
  margin-top: 0;
}

/* Hero Content Container */
.hero-split-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Text Content */
.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroTextSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroTextSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Title */
.hero-split-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, 
    #ff006e 0%, 
    #fb5607 25%, 
    #ffffff 50%, 
    #fb5607 75%, 
    #ff006e 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroTitleGradient 6s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
  letter-spacing: -0.02em;
  position: relative;
}

@keyframes heroTitleGradient {
  0%, 100% { 
    background-position: 0% 50%;
    transform: scale(1);
  }
  50% { 
    background-position: 100% 50%;
    transform: scale(1.02);
  }
}

.hero-split-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 0, 110, 0.1) 0%, 
    rgba(251, 86, 7, 0.1) 50%, 
    rgba(255, 0, 110, 0.1) 100%);
  border-radius: 20px;
  filter: blur(20px);
  z-index: -1;
  animation: heroTitleGlow 4s ease-in-out infinite;
}

@keyframes heroTitleGlow {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Hero Subtitle */
.hero-split-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  animation: heroSubtitleFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes heroSubtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero CTA Buttons */
.hero-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 3rem;
  animation: heroActionsFadeIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes heroActionsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-split-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 60px;
  border: 3px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 250px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-split-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.8s ease;
  z-index: -1;
}

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

/* Primary Button */
.hero-split-btn-primary {
  background: linear-gradient(135deg, 
    rgba(255, 0, 110, 0.9) 0%, 
    rgba(251, 86, 7, 0.9) 100%);
  color: #ffffff;
  border-color: rgba(255, 0, 110, 0.6);
  box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4);
}

.hero-split-btn-primary:hover {
  background: linear-gradient(135deg, 
    rgba(255, 0, 110, 1) 0%, 
    rgba(251, 86, 7, 1) 100%);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 50px rgba(255, 0, 110, 0.6);
  border-color: rgba(255, 0, 110, 0.9);
}

/* Secondary Button */
.hero-split-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-split-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Right Side - Image Content */
.hero-split-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroImageSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

@keyframes heroImageSlideIn {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-split-image-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: 25px;
  overflow: hidden;
  border: 4px solid rgba(255, 0, 110, 0.3);
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  animation: heroImageFrameGlow 3s ease-in-out infinite;
}

@keyframes heroImageFrameGlow {
  0%, 100% { 
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
  }
  50% { 
    border-color: rgba(255, 0, 110, 0.6);
    box-shadow: 0 25px 70px rgba(255, 0, 110, 0.5);
  }
}

.hero-split-image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 0, 110, 0.1) 0%, 
    rgba(251, 86, 7, 0.1) 100%);
  z-index: 1;
  animation: heroImageOverlay 4s ease-in-out infinite;
}

@keyframes heroImageOverlay {
  0%, 100% { 
    opacity: 0.3;
  }
  50% { 
    opacity: 0.6;
  }
}

.hero-split-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.hero-split-image-frame:hover .hero-split-image-img {
  transform: scale(1.05);
}

.hero-split-image-frame:hover {
  border-color: rgba(255, 0, 110, 0.8);
  box-shadow: 0 30px 80px rgba(255, 0, 110, 0.6);
}

/* Floating Elements */
.hero-split-floating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-split-element {
  position: absolute;
  background: linear-gradient(45deg, 
    rgba(255, 0, 110, 0.1) 0%, 
    rgba(251, 86, 7, 0.1) 100%);
  border-radius: 50%;
  animation: floatingSplitElementMove 20s linear infinite;
}

.floating-split-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.floating-split-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 8s;
  animation-duration: 30s;
}

.floating-split-element:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 15s;
  animation-duration: 22s;
}

@keyframes floatingSplitElementMove {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-split-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-split-text {
    order: 2;
  }
  
  .hero-split-image {
    order: 1;
  }
  
  .hero-split-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .olimpos-split-hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }
  
  .hero-split-content {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .hero-split-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-split-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
  }
  
  .hero-split-actions {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .hero-split-btn {
    width: 100%;
    max-width: 350px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .hero-split-image-frame {
    height: 400px;
    max-width: 350px;
  }
  
  .floating-split-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .olimpos-split-hero {
    padding: 80px 0 40px;
  }
  
  .hero-split-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .hero-split-subtitle {
    font-size: clamp(1rem, 5vw, 1.2rem);
    padding: 1rem 1.2rem;
  }
  
  .hero-split-image-frame {
    height: 300px;
    max-width: 280px;
  }
}

/* Performance Optimizations */
.olimpos-split-hero,
.hero-split-title,
.hero-split-btn,
.hero-split-image-frame {
  will-change: transform, opacity;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .hero-split-title,
  .hero-split-title::after,
  .hero-split-image-frame,
  .floating-split-element {
    animation: none !important;
  }
  
  .hero-split-title {
    background: #ff006e;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
