/* Custom Styles for Status by Wil'liam Paul */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Geometric Shapes */
.geo-shape {
  position: absolute;
  pointer-events: none;
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 112, 63, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  border-radius: 50%;
}

.geo-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.1) 0%, transparent 70%);
  bottom: 10%;
  left: -100px;
  border-radius: 50%;
}

.geo-rect-1 {
  width: 200px;
  height: 200px;
  background: rgba(196, 112, 63, 0.05);
  top: 30%;
  right: 5%;
  border-radius: 30px;
  transform: rotate(45deg);
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid rgba(212, 148, 58, 0.06);
  top: 60%;
  left: 5%;
  transform: rotate(-15deg);
}

/* Marquee Animation */
.marquee-track {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Scroll Indicator */
.scroll-dot {
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    top: 60%;
    opacity: 0.5;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Navigation Scroll Effect */
nav.scrolled {
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Mobile Menu */
.mobile-link {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-open .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-open .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-open .mobile-link:nth-child(5) { transition-delay: 0.5s; }

/* Menu Button Animation */
.menu-open .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-line:nth-child(3) {
  width: 6px;
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Intersection Observer Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hover Card Lift */
.group:hover .group-hover\:-translate-y-2 {
  transform: translateY(-8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FDF8F0;
}

::-webkit-scrollbar-thumb {
  background: #C4703F;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a85a32;
}

/* Focus Styles */
*:focus-visible {
  outline: 2px solid #C4703F;
  outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .geo-circle-1 {
    width: 300px;
    height: 300px;
  }
  
  .geo-circle-2 {
    width: 200px;
    height: 200px;
  }
  
  .geo-rect-1 {
    width: 100px;
    height: 100px;
  }
  
  .geo-triangle {
    border-left-width: 50px;
    border-right-width: 50px;
    border-bottom-width: 87px;
  }
}

/* Print Styles */
@media print {
  nav, .marquee-strip, #contact {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}
