/* 
==================================================
   SKILLFONY TAILWIND COMPLEMENTARY STYLES (CSS)
==================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800&display=swap');

/* Material Symbols Outlined Configuration */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

/* Trademark ™ Symbol Styling */
sup.tm-symbol, .tm-symbol {
  font-size: 1.1em;
  font-weight: 800;
  display: inline-block;
  vertical-align: top;
  margin-left: 2px;
  line-height: 1;
  opacity: 0.9;
}

/* Custom Text Gradient Utility */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Smooth Accordion / FAQ Dropdown Transition */
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease-in-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 24px;
}

/* Problem Section Custom Card Toggle */
.problem-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease-in-out, margin-top 0.3s ease;
}

.problem-card.active .problem-card-body {
  max-height: 180px;
  opacity: 1;
  margin-top: 12px;
}

/* Custom Animation Utilities */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

/* Custom Scroll Lock */
.no-scroll {
  overflow: hidden;
}

/* Form input focus shadow transition */
.form-input-focus:focus {
  box-shadow: 0 0 0 4px rgba(255, 121, 0, 0.25);
}

/* Logo Image Hover Animation */
.logo-img-anim {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-hover:hover .logo-img-anim {
  transform: scale(1.08) rotate(-3deg);
}

/* Custom Image Frame Tilt Effect */
.image-tilt-left {
  transform: rotate(-2deg);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.image-tilt-left:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(6, 36, 74, 0.25);
}

/* Sticky Mobile CTA responsive styling */
.sticky-mobile-cta-shadow {
  box-shadow: 0 -4px 20px rgba(6, 36, 74, 0.12);
}

/* Custom Serif Brand text matching Logo */
.logo-text-custom {
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  line-height: 1.05 !important;
}

.logo-tagline-custom {
  font-family: 'Inter', sans-serif !important;
  font-size: 8.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

/* Mobile Nav Drawer Styles */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background-color: #ffffff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(6, 36, 74, 0.15);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 36, 74, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Infinite Marquee Ticker */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
  flex-shrink: 0;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee-content span {
  flex-shrink: 0;
}

.marquee-content-images {
  display: flex;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
