/* BACKGROUND */
body {
  background: linear-gradient(#4B79A1, #283E51);
  background-attachment: fixed;
  background-size: cover;
  color: white;
  margin: 0;
  padding: 0;
  font-family: 'Fredoka One', cursive;
}

/* FIXED NEON TITLE */
.neon-title {
  position: relative; /* scrolls normally + keeps same spacing */
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;

  z-index: 999;

  font-size: 4rem;
  color: #00c6ff;
  text-shadow:
    0 0 5px #00c6ff,
    0 0 10px #00c6ff,
    0 0 20px #00c6ff,
    0 0 40px #00c6ff,
    0 0 80px #00c6ff;
  animation: neonPulse 3s ease-in-out infinite alternate;
}



/* TITLE ANIMATION */
@keyframes neonPulse {
  from {
    text-shadow:
      0 0 5px #1e90ff,
      0 0 10px #1e90ff,
      0 0 20px #1e90ff,
      0 0 40px #1e90ff,
      0 0 80px #1e90ff;
  }
  to {
    text-shadow:
      0 0 10px #1e90ff,
      0 0 20px #1e90ff,
      0 0 40px #1e90ff,
      0 0 80px #1e90ff,
      0 0 160px #1e90ff;
  }
}

/* ALL CONTENT BELOW TITLE */
.content {
  margin-top: 90px; /* space below fixed title */
  text-align: center;
}

/* BUTTON BASE */
.pcv1, .mobilev1 {
  position: relative;
  display: block;
  margin: 20px auto;

  width: 350px;
  font-size: 30px;
  padding: 10px 28px;

  border-radius: 20px;
  border: 2px solid #1e90ff;

  cursor: pointer;
  color: #fff;

  background: linear-gradient(135deg, #1e90ff, #00e6e6);
  box-shadow: 0 0 10px #00e6e6, 0 0 20px #1e90ff;

  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

/* HOVER BUTTON */
.pcv1:hover, .mobilev1:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #00e6e6, #1e90ff);
  box-shadow: 0 0 20px #00e6e6, 0 0 40px #1e90ff, 0 0 80px #00e6e6;
  color: #111;
  border-color: #00e6e6;
}

/* ICONS BELOW BUTTONS */
.pc-icon, .mobile-icon {
  display: inline-block;
  width: 100px;
  margin: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.pc-icon:hover, .mobile-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #00e6e6);
}

/* Base tooltip style — shared by both buttons */
button[data-tooltip] {
  position: relative;
}

button[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
  z-index: 99999;
}

/* --- PC BUTTON — tooltip ABOVE --- */
.pcv1[data-tooltip]:hover::after {
  bottom: 100%;       /* Position above the button */
  margin-bottom: 8px; /* Gap between tooltip and button */
  opacity: 1;
}

/* --- MOBILE BUTTON — tooltip BELOW --- */
.mobilev1[data-tooltip]:hover::after {
  top: 100%;          /* Position below the button */
  margin-top: 8px;    /* Gap between tooltip and button */
  opacity: 1;
}

/* Showcase Images */
.icon-row {
  display: flex;
  justify-content: center;   /* center everything horizontally */
  align-items: center;       /* align vertically */
  gap: 30px;                 /* space between images and icons */
  margin-top: 50px;          /* space from buttons above */
}

.side-img {
  position: relative;
  right: 30px;
  border: 2px solid #00c6ff;
  border-radius: 13px;
  filter: drop-shadow(0 0 30px #00e6e6);
  width: 300px;              /* size for side images */
  height: auto;
  cursor: pointer;
}

.side-img2 {
  position: relative;
  left: 30px;
  border: 2px solid #00c6ff;
  border-radius: 13px;
  filter: drop-shadow(0 0 30px #00e6e6);
  width: 300px;              /* size for side images */
  height: auto;
  cursor: pointer;
}

.pc-icon, .mobile-icon {
  align-self: flex-start;
  width: 100px;              /* keep your existing size */
  height: auto;
  filter: drop-shadow(0 0 5px #00e6e6);
}

/* What We Offer */
.mobile-only {
  display: none;
}
.mobile-only1 {
  display: none;
}
/* What We Offer */
.mobile-only2 {
  display: none;
}

/* DESKTOP ONLY section */
.desktop-only-offer {
  font-size: 3rem;
  margin-top: 80px; /* space below icons */
  margin-left: 2%;  /* puts text under panda on left side */
  text-align: left;
}

.offer-row {
  display: flex;
  justify-content: center; /* align left instead of center */
  gap: 20px;
  margin: 20px 5%; /* aligns row to same left margin as text */
}


.offer-img {
  width: 300px;
  height: 150px;      /* make this whatever height looks best */
  object-fit: cover;  /* prevents stretching */
  border-radius: 15px;
  border: 2px solid #00c6ff;
  filter: drop-shadow(0 0 10px #00e6e6);
}


/* MOBILE + TABLET RESPONSIVE STYLES */
@media (max-width: 1024px) {

  /* Title */
  .neon-title {
    position: relative;      
    top: 0;                  
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;         
    margin-bottom: 40px;     
    text-align: center;
    width: 80%;             
    padding: 10px;           
  }

  /* Content container spacing */
  .content {
    margin-top: 0;           
  }

  /* Buttons */
  .pcv1, .mobilev1 {
    width: 75%;
    font-size: 18px;
    margin: 20px auto;       /* centers them */
  }

  /* Icon row layout: stack for smaller screens */
  .icon-row {
    flex-direction: column;   
    align-items: center;      
    gap: 15px;                
  }

  /* Side images */
  .side-img, .side-img2 {
    width: 70%;              
    margin: 10px 0;          
    position: relative;
    left: 0;                 
    bottom: 0;
  }

  .side-img2 {
    width: 70%;              
    margin: 10px 0;          
    position: relative;
    left: 0;                 
    bottom: 105px;             
  }

  /* DESKTOP ONLY section */

.desktop-only-offer {
  display: none;
}

.offer-row {
  position: relative;
  left: 0%;
  bottom: 0px;
  flex-direction: column;  /* stack vertically */
  align-items: center;
}

.offer-img {
  width: 70%;
  margin-bottom: 20px;
}
}

@media (max-width: 1024px) {
  .offer-row {
    margin-top: -30px; /* pull images closer to text */
  }
}


/* FIX MOBILE + TABLET ICON ALIGNMENT */
@media (max-width: 1024px) {

  .icon-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;          /* space between icons */
    margin: 20px 0 118px 0;
    width: 100%;
  }

  .pc-icon, .mobile-icon {
    position: relative;
    width: 80px;
    height: auto;
    margin: 20;
    position: static;   /* IMPORTANT: remove all old left/bottom offsets */
  }
}



/* Show only on devices <=1024px (tablets & phones) */
@media (max-width: 1024px) {
  .mobile-only {
    position: relative;
    bottom: 90px;
    display: block;
    text-align: center;
    font-size: 3rem;
    margin: 15px 0;
    color: #fff;
  }
}

/* Show only on devices <=1024px (tablets & phones) */
@media (max-width: 1024px) {
  .mobile-only1 {
    position: relative;
    bottom: 90px;
    display: block;
    text-align: center;
    font-size: 3rem;
    margin: 15px 0;
    color: #fff;
  }
}

/* Show only on devices <=1024px (tablets & phones) */
@media (max-width: 1024px) {
  .mobile-only2 {
    position: relative;
    bottom: 90px;
    display: block;
    text-align: center;
    font-size: 1.5rem;
    margin: 15px 0;
  }