/* ========================================
   SCRAPEMONK LANDING PAGE STYLES
   ======================================== */

/* Font Family */
body {
  font-family: 'Montserrat', sans-serif;
}

/* Page Switching */
.page-hidden {
  display: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Pulsing Animation for Pictogram in SVG */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Smooth Transitions */
* {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Canvas for Matrix Rain */
#matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================
   SCRAPEMONK FOOTER STYLES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer {
    background: #3b0862;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(193, 130, 253, 0.1);
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    margin-top: 0.75rem;
    color: rgba(244, 233, 255, 0.4);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(244, 233, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c182fd;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(244, 233, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #c182fd;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: rgba(244, 233, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: #c182fd;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Monk Bar (MonkSuite Workflow) */
.monk-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.monk-bar-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.monk-bar-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.monk-bar-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.monk-bar-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.monk-bar-step-desc {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.monk-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.monk-bar-item:hover {
    background: #fff;
    border-color: #c182fd;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 130, 253, 0.3);
}

.monk-bar-item-active {
    background: #c182fd;
    border-color: #c182fd;
    box-shadow: 0 4px 15px rgba(193, 130, 253, 0.4);
}

.monk-bar-item-active:hover {
    background: #c182fd;
    border-color: #c182fd;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 130, 253, 0.5);
}

.monk-bar-logo {
    height: 1.25rem;
    width: auto;
    transition: all 0.3s ease;
}

.monk-bar-item-active .monk-bar-logo {
    filter: brightness(0) invert(1);
}

.monk-bar-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    height: 44px;
}

.monk-bar-cta {
    color: #c182fd;
    font-size: 0.95rem;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(244, 233, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(244, 233, 255, 0.3);
    font-size: 0.75rem;
}

/* Responsive Styles for Footer */
@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-right {
        align-items: flex-end;
    }
    
    .monk-bar-flow {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .monk-bar-arrow {
        display: none;
    }
    
    .monk-bar-flow {
        gap: 0.75rem;
    }
    
    .monk-bar-item {
        padding: 0.5rem 1rem;
    }
    
    .monk-bar-logo {
        height: 1rem;
    }
}
