/* ===== CUSTOM UPDATES ===== */

/* ===== SCROLL INDICATOR (Mouse Style) ===== */

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mouse-btn {
  width: 40px;
  height: 70px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  transition: border-color 0.3s ease;
}

.scroll-indicator:hover .mouse-btn {
  border-color: rgba(255, 255, 255, 0.9);
}

.mouse-scroll {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: mouseScroll 1.5s linear infinite;
}

.scroll-indicator:hover .mouse-scroll {
  background: rgba(255, 255, 255, 1);
}

@keyframes mouseScroll {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.scroll-text {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
  opacity: 1;
}

/* Custom white cross cursor */
*, *::before, *::after {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cline x1='16' y1='4' x2='16' y2='28' stroke='rgba(255,255,255,0.7)' stroke-width='1.5'/%3E%3Cline x1='4' y1='16' x2='28' y2='16' stroke='rgba(255,255,255,0.7)' stroke-width='1.5'/%3E%3C/svg%3E") 16 16, crosshair;
}

a, button, .w-button, [role="button"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cline x1='16' y1='4' x2='16' y2='28' stroke='rgba(255,255,255,1)' stroke-width='2'/%3E%3Cline x1='4' y1='16' x2='28' y2='16' stroke='rgba(255,255,255,1)' stroke-width='2'/%3E%3C/svg%3E") 16 16, pointer;
}

/* Header z-index fix */
.section_intro .header {
  position: relative;
  z-index: 9999;
}

/* Fix intro_hider blocking clicks */
.intro_hider {
  pointer-events: none;
}

/* Ensure header elements are clickable */
.section_intro .header {
  position: relative;
  z-index: 100;
}

.block_button_contact,
.button_contact {
  position: relative;
  z-index: 10000;
  pointer-events: auto !important;
}

/* ===== INTRO SECTION ANIMATIONS ===== */

/* Intro section animation initial states - override any existing opacity */
.section_intro .block_menu,
.section_intro .intro_outline,
.section_intro .logo_header,
.section_intro .block_button_contact,
.section_intro .title,
.section_intro .subtitle,
.section_intro .block_button {
  opacity: 0 !important;
  transform: translateY(20px);
}

/* Animated state - when JS adds this class */
.section_intro .block_menu.intro-animated,
.section_intro .intro_outline.intro-animated,
.section_intro .logo_header.intro-animated,
.section_intro .block_button_contact.intro-animated,
.section_intro .title.intro-animated,
.section_intro .subtitle.intro-animated,
.section_intro .block_button.intro-animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== MOBILE CONTACT BUTTON ===== */

/* Hide mobile contact button on desktop/tablet */
.block_button_contact_mobile {
  display: none;
}

/* On mobile: hide header contact, show mobile contact */
@media screen and (max-width: 767px) {
  .block_button_contact {
    display: none !important;
  }
  
  .block_button_contact_mobile {
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .section_intro .subtitle {
    margin-bottom: 50px !important;
  }
  
  .button_contact_mobile {
    display: inline-block;
    height: 54px;
    padding: 18px 70px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background-color: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .button_contact_mobile:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
}

/* ===== BLOCK SMALL TITLE ===== */

.block_small_title {
  background-color: transparent !important;
}

/* ===== FOOTER TAGLINE ===== */

.footer-tagline {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 100px 0;
}

.footer-tagline strong {
  font-weight: 700;
}

.image-2 {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .footer-tagline {
    font-size: 24px;
    margin: 80px 0;
  }
}

@media screen and (max-width: 479px) {
  .footer-tagline {
    font-size: 20px;
    margin: 60px 0;
  }
}

/* ===== FOOTER TEXT ===== */

.footer-text {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 60px;
}

.footer-copyright {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.footer-email {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  user-select: text;
}

@media screen and (max-width: 767px) {
  .footer-text {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  
  .footer-copyright {
    font-size: 10px;
    letter-spacing: 1px;
  }
  
  .footer-email {
    font-size: 12px;
  }
}

@media screen and (max-width: 479px) {
  .footer-text {
    margin-top: 40px;
    padding-bottom: 40px;
  }
  
  .footer-copyright {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  
  .footer-email {
    font-size: 11px;
  }
}

