/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

/* ===== BODY ===== */
body {
  background: #f7f2f6;
  min-height: 100svh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

/* ===== FLOATING BLOBS ===== */
.blob {
  position: absolute;
  width: clamp(180px, 30vw, 320px);
  height: clamp(180px, 30vw, 320px);
  background: radial-gradient(
    circle,
    rgba(255, 140, 180, 0.45),
    rgba(255, 140, 180, 0)
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: floatBlob 22s infinite ease-in-out;
  z-index: 1;
}

.blob:nth-child(1) { top: 8%; left: 5%; animation-duration: 25s; }
.blob:nth-child(2) { top: 65%; left: 70%; animation-duration: 28s; }
.blob:nth-child(3) { top: 20%; left: 78%; animation-duration: 22s; }
.blob:nth-child(4) { top: 72%; left: 8%; animation-duration: 30s; }

@keyframes floatBlob {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(30px, -40px) scale(1.12); }
  50%  { transform: translate(-25px, 30px) scale(0.95); }
  75%  { transform: translate(35px, 35px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ===== LOGO CONTAINERS ===== */
#csLogo,
#frLogo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 10;
  padding: 0 16px;
}

#csLogo.fade-in { opacity: 1; }
#csLogo.fade-out { opacity: 0; }
#frLogo.fade-in { opacity: 1; }

/* ===== CS LOGO ===== */
.cs-text {
  font-family: 'Italianno', cursive;
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 400;
  color: #3a2a35;
}

.cs-sub {
  font-family: 'Italianno', serif;
  font-size: clamp(18px, 4vw, 30px);
  color: #3a2a35;
  margin-top: -6px;
}

/* ===== F&R LOGO ===== */
.fr-text {
  font-family: 'Italianno', cursive;
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 400;
  color: #3a2a35;
}

.fr-sub {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(14px, 3.5vw, 26px);
  letter-spacing: clamp(1px, 0.5vw, 3px);
  color: #3a2a35;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 5vw, 30px);
}

/* ===== UNDERLINE HOVER ===== */
.fr-sub span {
  position: relative;
  cursor: pointer;
}

.fr-sub span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.4s ease;
}

.fr-sub span:hover::after {
  width: 100%;
}

/* ===== LINKS ===== */
a {
  text-decoration: none;
  color: #3a2a35;
}
