/* ============================================
   LAZY POTATO NEON THEME
   ============================================ */

:root {
  --bg-primary: #0b0b12;
  --bg-secondary: #1a1a24;
  --bg-card: rgba(255, 255, 255, 0.05);

  --neon-cyan: #00ffff;
  --neon-magenta: #ff00ff;
  --neon-green: #00ff88;
  --neon-purple: #b400ff;
  --neon-blue: #00ccff;
  --neon-red: #ff0055;

  --text-primary: #ffffff;
  --text-secondary: #e0e6f0;
  --text-muted: #b0b8d1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   BACKGROUND
   ============================================ */

body {
  font-family: "Inter", "Poppins", sans-serif;
  background: radial-gradient(circle at center, #2d1b4e 0%, #1a0b2e 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Neon Shapes - Floating */
.neon-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Circle Shape */
.neon-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid #00ffff;
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.6),
    inset 0 0 20px rgba(0, 255, 255, 0.3);
  animation: float-circle 8s ease-in-out infinite;
}

.neon-circle.circle-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.neon-circle.circle-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
  width: 50px;
  height: 50px;
}

.neon-circle.circle-3 {
  bottom: 15%;
  right: 10%;
  animation-delay: 4s;
  width: 70px;
  height: 70px;
}

/* Triangle Shape */
.neon-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid transparent;
  border-bottom-color: #00ffff;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
  animation: float-triangle 10s ease-in-out infinite;
}

.neon-triangle.triangle-1 {
  top: 30%;
  left: 8%;
  animation-delay: 1s;
}

.neon-triangle.triangle-2 {
  bottom: 25%;
  right: 15%;
  animation-delay: 3s;
  transform: rotate(180deg);
}

/* Plus Shape */
.neon-plus {
  position: absolute;
  width: 40px;
  height: 40px;
  animation: float-plus 7s ease-in-out infinite;
}

.neon-plus::before,
.neon-plus::after {
  content: '';
  position: absolute;
  background: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.neon-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  transform: translateY(-50%);
}

.neon-plus::after {
  left: 50%;
  top: 0;
  width: 8px;
  height: 100%;
  transform: translateX(-50%);
}

.neon-plus.plus-1 {
  top: 10%;
  right: 20%;
  animation-delay: 0.5s;
}

.neon-plus.plus-2 {
  top: 50%;
  left: 15%;
  animation-delay: 2.5s;
}

.neon-plus.plus-3 {
  bottom: 30%;
  left: 12%;
  animation-delay: 4.5s;
}

/* Animations */
@keyframes float-circle {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(-30px) translateX(5px);
  }
}

@keyframes float-triangle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-25px) rotate(5deg);
  }
  66% {
    transform: translateY(-15px) rotate(-5deg);
  }
}

@keyframes float-plus {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ============================================
   LANDING PAGE
   ============================================ */

.neon-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: transparent; /* Show retro background */
}

.neon-bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(0, 255, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(255, 0, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(0, 100, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(0, 255, 150, 0.06) 0%,
      transparent 45%
    );
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.landing-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.neon-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #6600ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border: 3px solid rgba(0, 255, 255, 0.5);
  box-shadow:
    0 0 30px rgba(0, 212, 255, 0.6),
    0 0 60px rgba(0, 100, 255, 0.4),
    0 0 90px rgba(102, 0, 255, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: glow 2s ease-in-out infinite alternate;
  position: relative;
}

.neon-logo::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
  animation: rotate 4s linear infinite;
}

@keyframes glow {
  from {
    box-shadow:
      0 0 30px rgba(0, 212, 255, 0.6),
      0 0 60px rgba(0, 100, 255, 0.4);
  }
  to {
    box-shadow:
      0 0 40px rgba(0, 212, 255, 0.9),
      0 0 80px rgba(0, 100, 255, 0.6);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   NEON TEXT
   ============================================ */

.neon-text-cyan {
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px rgba(0, 255, 255, 0.8),
    0 0 20px rgba(0, 255, 255, 0.5),
    0 0 30px rgba(0, 255, 255, 0.3);
}

.neon-text-magenta {
  color: var(--neon-magenta);
  text-shadow:
    0 0 10px rgba(255, 0, 255, 0.8),
    0 0 20px rgba(255, 0, 255, 0.5);
}

.neon-text-green {
  color: var(--neon-green);
  text-shadow:
    0 0 10px rgba(0, 255, 136, 0.8),
    0 0 20px rgba(0, 255, 136, 0.5);
}

.neon-text-purple {
  color: var(--neon-purple);
  text-shadow:
    0 0 10px rgba(180, 0, 255, 0.8),
    0 0 20px rgba(180, 0, 255, 0.5);
}

.neon-text-subtitle {
  color: var(--text-secondary);
  text-shadow: 0 0 10px rgba(168, 178, 209, 0.3);
}

/* ============================================
   NEON BUTTONS
   ============================================ */

.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  min-width: 280px;
}

.neon-btn::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 ease;
}

.neon-btn:hover::before {
  left: 100%;
}

.neon-btn-cyan {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.neon-btn-cyan:hover {
  color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(0, 255, 255, 0.4),
    0 0 20px rgba(0, 255, 255, 0.6),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.neon-btn-magenta {
  border-color: var(--neon-magenta);
  color: var(--neon-magenta);
}

.neon-btn-magenta:hover {
  color: var(--neon-magenta);
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(255, 0, 255, 0.4),
    0 0 20px rgba(255, 0, 255, 0.6),
    inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.neon-btn-green {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.neon-btn-green:hover {
  color: var(--neon-green);
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(0, 255, 136, 0.4),
    0 0 20px rgba(0, 255, 136, 0.6),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
}

/* ============================================
   SOCIAL ICONS
   ============================================ */

.social-icon-landing {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.4);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  margin: 0 10px;
}

.social-icon-landing:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.1);
  color: white;
  box-shadow:
    0 5px 20px rgba(0, 255, 255, 0.6),
    0 0 40px rgba(0, 255, 255, 0.8),
    inset 0 0 15px rgba(0, 255, 255, 0.2);
}

/* ============================================
   NAVBAR
   ============================================ */

.neon-navbar {
  background: rgba(26, 11, 46, 0.85) !important; /* Semi-transparent purple */
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.neon-navbar .nav-link {
  color: var(--text-secondary) !important;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.neon-navbar .nav-link:hover {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* ============================================
   CARDS
   ============================================ */

.neon-card {
  background: rgba(26, 11, 46, 0.6); /* Semi-transparent purple */
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.neon-card:hover {
  transform: translateY(-5px);
  background: rgba(26, 11, 46, 0.75);
  border-color: rgba(255, 0, 255, 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 0, 255, 0.2);
}

.room-card {
  border-width: 2px !important;
  position: relative;
}

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.neon-badge {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
}

.room-icon {
  font-size: 48px;
  text-align: center;
}

/* ============================================
   FORM INPUTS
   ============================================ */

.neon-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(0, 255, 255, 0.3) !important;
  color: var(--text-primary) !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
}

.neon-input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3) !important;
  color: var(--text-primary) !important;
}

.neon-input::placeholder {
  color: var(--text-muted) !important;
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */

.content-wrapper {
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}

.neon-card,
.neon-navbar,
.navbar,
.container {
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.neon-footer {
  background: rgba(26, 11, 46, 0.85); /* Semi-transparent purple */
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 0, 255, 0.2);
  color: var(--text-muted);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--neon-cyan);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* ============================================
   UTILITIES
   ============================================ */

.btn-neon {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid;
  color: inherit;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.facility-icon {
  font-size: 48px;
}

.sticky-top {
  position: sticky;
}

.landing-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .neon-btn {
    min-width: 100%;
    margin-bottom: 15px;
  }

  .landing-buttons {
    width: 100%;
  }

  .neon-logo {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}
