@font-face {
  font-family: "Granvile";
  src: url("../assets/fonts/Granvile-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Corporate";
  src: url("../assets/fonts/CorporateAPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TrajanPro";
  src: url("../assets/fonts/TrajanPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Custom Writing Mode Utilities */
.writing-vertical {
    writing-mode: vertical-lr;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Custom Animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* Scroll Reveal Base */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-active {
    opacity: 1;
    transform: translateY(0);
}