/**
 * BLOOD CAFÉ - LOGO STYLES
 * Visual design - NO ANIMATIONS
 */

/* ============================================
   HEADER LOGO STYLES
   ============================================ */

.bloodcafe-logo {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 100;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

.bloodcafe-logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: none !important;
  animation: none !important;
  transform: none !important;
  /* Static red glow - no animation */
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.7))
          drop-shadow(0 0 20px rgba(220, 38, 38, 0.5))
          drop-shadow(0 0 30px rgba(220, 38, 38, 0.3));
}

.bloodcafe-logo:hover img {
  transition: none !important;
  animation: none !important;
  transform: none !important;
  /* Slightly brighter glow on hover - static */
  filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.9))
          drop-shadow(0 0 24px rgba(220, 38, 38, 0.7))
          drop-shadow(0 0 36px rgba(220, 38, 38, 0.5)) !important;
}

.bloodcafe-logo:active img {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* Small icon version for mobile nav */
.bloodcafe-logo-small img {
  height: 40px;
  width: auto;
}

/* ============================================
   HERO SECTION LOGO
   ============================================ */

.bloodcafe-hero-logo {
  text-align: center;
  margin: 0 auto 32px;
  position: relative;
  transition: none !important;
  animation: none !important;
}

.bloodcafe-hero-logo img {
  height: 200px;
  width: auto;
  display: inline-block;
  position: relative;
  transition: none !important;
  animation: none !important;
  transform: none !important;
  /* Static red glow */
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.7))
          drop-shadow(0 0 20px rgba(220, 38, 38, 0.5))
          drop-shadow(0 0 30px rgba(220, 38, 38, 0.3));
}

/* Static background glow */
.bloodcafe-hero-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
    rgba(220, 38, 38, 0.3) 0%,
    rgba(220, 38, 38, 0.1) 40%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transition: none !important;
  animation: none !important;
}

.bloodcafe-hero-logo:hover img {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* Hero title text */
.bloodcafe-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #dc2626, #ef4444, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
  margin: 16px 0;
  transition: none !important;
  animation: none !important;
}

/* ============================================
   LOADING SCREEN - COMPLETELY DISABLED
   ============================================ */

.bloodcafe-loading-screen {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.bloodcafe-loading-screen.hidden {
  display: none !important;
}

.bloodcafe-loading-logo {
  display: none !important;
}

.bloodcafe-loading-text {
  display: none !important;
}

/* ============================================
   WATERMARK
   ============================================ */

.bloodcafe-watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  transition: none !important;
}

.bloodcafe-watermark img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.wrap:hover .bloodcafe-watermark {
  opacity: 0.08;
  transition: none !important;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
  .bloodcafe-logo img {
    height: 60px;
  }

  .bloodcafe-hero-logo img {
    height: 120px;
  }

  .bloodcafe-hero-logo::before {
    width: 200px;
    height: 200px;
  }

  .bloodcafe-hero-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .bloodcafe-watermark {
    width: 80px;
    bottom: 10px;
    right: 10px;
    opacity: 0.05;
  }
}

@media (max-width: 480px) {
  .bloodcafe-logo img {
    height: 50px;
  }

  .bloodcafe-hero-logo img {
    height: 100px;
  }

  .bloodcafe-hero-title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .bloodcafe-watermark {
    width: 60px;
  }
}

/* ============================================
   GLOBAL OVERRIDE
   ============================================ */

* {
  animation: none !important;
  transition: none !important;
}
