/* MatchMonk Custom Styles */

body {
  font-family: 'Montserrat', sans-serif;
}

/* Monk Bar logo styling */
.monk-logo-white {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.monk-logo-white:hover {
  filter: none;
}

/* Animation delays */
.delay-100 { 
  animation-delay: 100ms; 
}

.delay-200 { 
  animation-delay: 200ms; 
}

.delay-300 { 
  animation-delay: 300ms; 
}

/* Glass scan effect */
.glass-scan {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
}

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

.footer {
  background-color: #4b051a;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 2.5rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
}

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

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

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

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

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

.footer-social {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

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

/* Monk Bar */
.monk-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 3rem;
  padding-bottom: 2rem;
  text-align: center;
}

.monk-bar-title {
  color: #fc7186;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.monk-bar-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

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

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

.monk-bar-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 56px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.monk-bar-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.monk-bar-item-active {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
}

.monk-bar-item-active:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}

.monk-bar-logo {
  height: 20px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

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

.monk-bar-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.monk-bar-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.monk-bar-cta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

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

/* ========================================
   PAGE CONTENT STYLES (for subpages)
   ======================================== */

.page-content {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 60vh;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4b051a;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.page-body {
  max-width: 800px;
  margin: 0 auto;
}

.page-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4b051a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-body h2:first-child {
  margin-top: 0;
}

.page-body p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.page-body ul {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-body li {
  margin-bottom: 0.5rem;
}

.page-body a {
  color: #fc7186;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-body a:hover {
  color: #4b051a;
  text-decoration: underline;
}

/* Navbar dark static (for subpages) */
.navbar-dark-static {
  background-color: #4b051a !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .monk-bar-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .monk-bar-arrow {
    transform: rotate(90deg);
    margin: 0.75rem 0;
  }
  
  .monk-bar-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .page-title {
    font-size: 2rem;
  }
}
/* ============================================
   SCRAPEMONK - Footer Styles
   Brand Colors: Primary #c182fd | Dark #3b0862
   ============================================ */

/* Footer */
.footer {
    background: #4b051a;
    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;
}

.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: #fc7186;
}

.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: #fc7186;
}

.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: #fc7186;
}

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

/* Monk Bar */
.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: #ffffff;
    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: #ffffff;
    border-color: #fc7186;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 113, 134, 0.3);
}

.monk-bar-item-active {
    background: #fc7186;
    border-color: #fc7186;
    box-shadow: 0 4px 15px rgba(252, 113, 134, 0.4);
}

.monk-bar-item-active:hover {
    background: #fc7186;
    transform: translateY(-3px);
}

.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: #fc7186;
    font-size: 0.95rem;
    font-style: italic;
}

.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;
}

@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;
    }
}
