﻿.fancy-title-1 {
  font-size: clamp(1.5rem, 5vw, 3.0rem);
  font-weight: 800;
  background: linear-gradient(45deg, #ff3d77, #338aff, #3cf0c5);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient 8s ease infinite;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

@keyframes gradient {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}
.fancy-title-2 {
  /*font-family: 'Playfair Display', serif;*/
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #222;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.fancy-title-2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #ff6b6b;
  border-radius: 2px;
}

.fancy-title-3 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #2c3e50;
  text-shadow: 3px 3px 0px #ecf0f1, 
               6px 6px 0px rgba(0,0,0,0.1);
  letter-spacing: -1px;
  line-height: 1;
  margin: 1rem 0 2rem;
}

.fancy-title-4 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fancy-title-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 5px #ff2d75, 
               0 0 15px #ff2d75, 
               0 0 30px #ff2d75;
  letter-spacing: 5px;
  text-transform: uppercase;
  animation: flicker 1.5s infinite alternate;
  text-align: center;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 5px #ff2d75, 
                 0 0 15px #ff2d75, 
                 0 0 30px #ff2d75;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.fancy-title-eg {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Oswald', sans-serif;

  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}




