/* General CSS */
body {
  padding-top: 56px;
  color: #333333;
  /* Dark gray font color */
  position: relative;
  overflow-x: hidden;
  transition: background-color 1s ease;
  /* Smooth transition */
}

.section {
  height: 100vh;
  /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
}

.notebook-background {
  background: linear-gradient(to bottom, transparent 34px, #D3D3D3 34px, #D3D3D3 35px);
  background-size: 100% 35px;
  background-color: white;
}

.bg-light-blue {
  background-color: #d1e4fb;
}

.bg-light-pink {
  background-color: #faf1ff;
}

body::before,
body::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgb(252, 134, 134);
  z-index: 1;
}

body::before {
  left: 20px;
  /* Position of the first red line */
}

body::after {
  left: 30px;
  /* Position of the second red line */
}

footer {
  position: relative;
  z-index: 2;
}

/* Neon effect */
.neon-effect {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.neon-effect::before,
.neon-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  transition: transform 0.3s ease;
  transform: scale(0);
}

.neon-effect::after {
  filter: blur(8px);
}

.neon-effect:hover::before,
.neon-effect:hover::after {
  transform: scale(1);
}

.neon-effect:hover {
  color: #aba5f8;
  text-shadow: 0 0 5px #645af6, 0 0 10px #645af6, 0 0 20px #645af6, 0 0 40px #645af6, 0 0 80px #645af6;
}

.instagram-follow-box {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background-color: #e4405f; /* Instagram color */
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px; /* More rounded corners */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  z-index: 1000; /* Ensures it stays on top */
}

.instagram-follow-box img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.instagram-follow-box span {
  display: inline; /* Always show the text */
  white-space: nowrap; /* Prevents the text from wrapping */
}

.instagram-follow-box .arrow-icon {
  display: inline; /* Always show the arrow */
  width: 15px; /* Size of the arrow */
  height: 15px;
  margin-left: 4px; /* Space between text and arrow */
}

.instagram-follow-box:hover {
  background-color: #d3395c; /* Slightly darker on hover */
}

@media (max-width: 768px) { /* Adjusts for screens smaller than 768px wide */
  footer {
    text-align: left; /* Aligns text to the left on small screens */
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.limited-time {
  font-size: 0.85em;
  font-weight: bold;
  color: white;
  background-color: #d3395c;
  padding: 3px 6px;
  border-radius: 5px;
  animation: blinker 1s linear infinite;
  position: absolute;
}

.special-link {
  color: rgb(244, 191, 76) !important; /* Sets the color of the text in the link to yellow */
}