
/* interactive.css - PRO Max Enhancements */

/* Variables */
:root {
  --primary: #e91e63;
  --secondary: #fff;
  --bg: #121212;
  --text: #fff;
}

/* Reset animations */
* {
  transition: all 0.3s ease;
}

/* Sticky header with backdrop blur */
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

/* Mobile menu */
.menu {
  display: flex;
  gap: 1rem;
}
#mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.8);
    padding: 1rem;
    display: none;
  }
  #mobile-menu-toggle {
    display: block;
  }
}

/* Hero styling */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#hero .slide {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
#hero .slide.active {
  opacity: 1;
}

/* Scroll reveal defaults */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA styling */
.cta {
  background: var(--primary);
  color: var(--secondary);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta:hover {
  background: #d81b60;
  transform: scale(1.05);
}

/* Scroll-to-top */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  display: none;
  z-index: 1000;
}


/* Tooltip base */
[data-tooltip] {
  position: relative;
  cursor: help;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%) translateY(-0.5rem);
  white-space: nowrap;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-0.75rem);
}

/* Countdown styling */
.countdown {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}


/* Ensure custom-offer section is on top */
#custom-offer {
  position: relative !important;
  z-index: 10 !important;
}


/* Ensure admin-offer section is on top */
#admin-offer {
  position: relative !important;
  z-index: 10 !important;
}


/* Remove gap between menu and hero */
header, nav {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.8);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  z-index: 10000;
  font-size: 0.9rem;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
}
.cookie-banner .cta {
  margin-left: 1rem;
}
