/* Hologram Section Base */
.hologram-section {
    height: 100dvh;
    overflow: hidden;
    position: relative;
    margin: 0;
    background-image: url('img/logos/holostage.png');
    background-position: calc(50% - 31px) calc(100% - 50px);
    background-repeat: no-repeat;
    background-size: cover;
  }


.hologram-container {
    width: 100%;
    max-width: none;
    padding: 60px 0;
    height: calc(100dvh - 120px);
    position: absolute;
    left: 0;
    z-index: 3;
}

/* Hologram Stage */
.hologram-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    perspective-origin: center 30%;
}

/* Hologram Beam Effects */
.hologram-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
    width: 100px;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}


.beam-glow {
    display: none;
}

/*
.beam-glow {
    position: absolute;
    bottom: 230px;
    left: 22%;
    transform: translateX(-50%);
    width: 100vw;
    height: 22%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, rgba(226, 226, 226, 0.2) 40%, rgba(74, 144, 226, 0.1) 70%, rgba(74, 144, 226, 0) 100% );
    clip-path: polygon(49.8% 100%, 5% 0%, 95% 0%, 50.2% 100%);
    filter: blur(15px);
    animation: beam-glow 5s infinite;
    border-radius: 50%;
  }

  */

  .control-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


/* Control Buttons */
.hologram-controls {
    position: absolute;
    bottom: 0;
    right: 12px;
    display: flex;
    gap: 12px;
    z-index: 1000;
  }

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(74, 144, 226, 0.3);
    background: rgba(0, 0, 0, 0.6);
    color: rgba(74, 144, 226, 0.8);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    border-color: rgba(74, 144, 226, 0.8);
    color: rgba(74, 144, 226, 1);
    transform: scale(1.1);
}

.control-btn.active {
    border-color: rgba(74, 144, 226, 1);
    color: rgba(74, 144, 226, 1);
    background: rgba(74, 144, 226, 0.1);
}

.sequence-btn {
    font-family: monospace;
    letter-spacing: -1px;
}

.continuous-btn {
    font-size: 16px;
    letter-spacing: -2px;
}

.manual-btn {
    font-family: monospace;
    font-weight: bold;
}

/* Hologram Carousel Container */
.hologram-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    perspective: 1650px;
    perspective-origin: center -100%;
    margin: 0 auto;
    transform: rotateX(0deg);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    top: -228px;
  }

/* Client Logo Styling */
.client-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background: transparent;
    padding: 12px;
    transform-origin: center center;
    transition: none;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
    animation: holographic-flicker 10s ease-in-out infinite;
  }

/* Beam Animations */
@keyframes beam-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes beam-glow {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

@keyframes beam-rays {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

@keyframes logo-flicker {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.9;
    }
}

@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Holographic Effects */
@keyframes holographic-flicker {
    0% { 
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 10px rgba(74, 144, 226, 0));
    }
    25% { 
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 10px rgba(74, 144, 226, 0));
    }
    26% { 
        opacity: 0.7;
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
    }
    27% { 
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 10px rgba(74, 144, 226, 0));
    }
    100% { 
        opacity: 1;
        filter: brightness(1) drop-shadow(0 0 10px rgba(74, 144, 226, 0));
    }
}

/* Active logo styling */
.client-logo.active {
    animation: holographic-flicker 2s ease-in-out infinite;
}

@media (max-width: 480px) {
    .hologram-section {
        background-position: 50% calc(100% - 33px);
      }
      .hologram-stage {
        padding-left: 40px;
      }
      .hologram-carousel {
        top: -100px;
      }
  }
