
@font-face {
    font-family: 'DynaPuff';
    src: url('../fonts/DynaPuff.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

@font-face {
    font-family: 'PlusJakartaSans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

img {
        max-width: 100%;
        height: auto;
    }

p {
    font-size: large;
}

body {
    overflow-y: scroll; 
    scrollbar-width: none; 
  }
  
body::-webkit-scrollbar {
    display: none; 
  }

html, body {
   scroll-behavior: smooth;
}



.darkened {
  --accent-grad: linear-gradient(135deg, #d946ef, #818cf8);
  position: relative;
  padding: 3rem 2.2rem;
  border-radius: 40px 15px 40px 15px;
  
  background: rgba(10, 10, 15, 0.897); 

  color: #ffffff;
}

.darkened::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; 
  background: var(--accent-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.darkened::before {
  content: var(--label-text);
  font-family: "DynaPuff";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  font-size: 12px; font-weight: 400;
  padding: 4px 18px; border-radius: 6px;
  z-index: 10;
}

.kawaii-decor {
  position: absolute;
  bottom: -15px; right: -10px;
  width: 45px; height: 45px;
  background: #0a0a0f;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 11;

  background-image: linear-gradient(rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.8)), var(--accent-grad);
  backdrop-filter: blur(5px);
}


.kawaii-decor::before { 
  content: var(--sticker-emoji); 
  font-size: 22px; 
  display: inline-block; 
  animation: var(--emoji-animation) 2s ease-in-out infinite;
}

.darkened[style*="--label-text: ''"]::before {
  display: none;
}


@keyframes floating {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-5px) rotate(20deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1) rotate(12deg); }
  50% { transform: scale(1.3) rotate(12deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(12deg); }
  25% { transform: rotate(25deg); }
  75% { transform: rotate(-5deg); }
}

.puff-font {
  font-family: 'PlusJakartaSans';
  letter-spacing: 0.5px;
  line-height: 1.6;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}


body.js-loaded .floating-logo {
  animation: float 4s ease-in-out infinite;
  transition: opacity 1s ease-out; 
}

.floating-logo {
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  will-change: transform; 
}


.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98); 
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightened {
  background-color: rgba(255, 255, 255, 0.65);
}

.w-95 {
    width: 95%;
}

.equal-height-container {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    gap: 1rem;
    margin-bottom: 50px;
  }
  
  .equal-height-child {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

.min-height {
    min-height: 500px;
    height: 100%;
}



.fullscreen-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }


.sfs-1 { font-size: 2rem !important; }
.sfs-2 { font-size: 1.75rem !important; }
.sfs-3 { font-size: 1.5rem !important; }
.sfs-4 { font-size: 1.25rem !important; }
.sfs-5 { font-size: 1rem !important; }
.sfs-6 { font-size: 0.875rem !important; }

/* ≥ SM (576px) */
@media (min-width: 576px) {
  .sfs-sm-1 { font-size: 2rem !important; }
  .sfs-sm-2 { font-size: 1.75rem !important; }
  .sfs-sm-3 { font-size: 1.5rem !important; }
  .sfs-sm-4 { font-size: 1.25rem !important; }
  .sfs-sm-5 { font-size: 1rem !important; }
  .sfs-sm-6 { font-size: 0.875rem !important; }
}

/* ≥ MD (768px) */
@media (min-width: 768px) {
  .sfs-md-1 { font-size: 2rem !important; }
  .sfs-md-2 { font-size: 1.75rem !important; }
  .sfs-md-3 { font-size: 1.5rem !important; }
  .sfs-md-4 { font-size: 1.25rem !important; }
  .sfs-md-5 { font-size: 1rem !important; }
  .sfs-md-6 { font-size: 0.875rem !important; }
}

/* ≥ LG (992px) */
@media (min-width: 992px) {
  .sfs-lg-1 { font-size: 2rem !important; }
  .sfs-lg-2 { font-size: 1.75rem !important; }
  .sfs-lg-3 { font-size: 1.5rem !important; }
  .sfs-lg-4 { font-size: 1.25rem !important; }
  .sfs-lg-5 { font-size: 1rem !important; }
  .sfs-lg-6 { font-size: 0.875rem !important; }
}

/* ≥ XL (1200px) */
@media (min-width: 1200px) {
  .sfs-xl-1 { font-size: 2rem !important; }
  .sfs-xl-2 { font-size: 1.75rem !important; }
  .sfs-xl-3 { font-size: 1.5rem !important; }
  .sfs-xl-4 { font-size: 1.25rem !important; }
  .sfs-xl-5 { font-size: 1rem !important; }
  .sfs-xl-6 { font-size: 0.875rem !important; }
}

/* ≥ XXL (1400px) */
@media (min-width: 1400px) {
  .sfs-xxl-1 { font-size: 2rem !important; }
  .sfs-xxl-2 { font-size: 1.75rem !important; }
  .sfs-xxl-3 { font-size: 1.5rem !important; }
  .sfs-xxl-4 { font-size: 1.25rem !important; }
  .sfs-xxl-5 { font-size: 1rem !important; }
  .sfs-xxl-6 { font-size: 0.875rem !important; }
}


.carousel-img {
  width: 80%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .carousel-img {
    width: 100%;
  }


}

.bg-red {
  background-color: #f8d7da;
  border: 2px solid #dc3545;
}

.bg-orange {
  background-color: #ffe5b4;
  border: 2px solid #fd7e14;
}

.bg-yellow {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
}

.bg-green {
  background-color: #d4edda;
  border: 2px solid #28a745;
}

.bg-blue {
  background-color: #d1ecf1;
  border: 2px solid #007bff;
}

.bg-indigo {
  background-color: #e0d4f7;
  border: 2px solid #6610f2;
}

.bg-violet {
  background-color: #f3e5f5;
  border: 2px solid #6f42c1;
}


.text-white {
  color: #ffffff !important;
}

.text-black {
  color: #000000 !important;
}

.text-dark {
  color: #212529 !important;
}

.text-red {
  color: #dc3545 !important;
}

.text-orange {
  color: #fd7e14 !important;
}

.text-yellow {
  color: #ffc107 !important;
}

.text-green {
  color: #28a745 !important;
}

.text-blue {
  color: #007bff !important;
}

.text-indigo {
  color: #6610f2 !important;
}

.text-violet {
  color: #6f42c1 !important;
}


.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
body.js-loaded .reveal {
    opacity: 1;
    transform: translate(0, 0);
}
body.js-loaded .delay-1 { transition-delay: 0.2s; }
body.js-loaded .delay-2 { transition-delay: 0.4s; }
body.js-loaded .delay-3 { transition-delay: 0.6s; }