/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overscroll-behavior: none;
}

html {
  scroll-behavior: smooth;
}

/* Accesibility and transparent clicks */
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}

/* Logo */
.logo {
  position: fixed;
  top: 32px;
  left: 48px;
  z-index: 100;
  opacity: 0.85;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo:focus {
  outline: none;
}

.logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
}

.logo img {
  width: 34px;
  height: auto;
  display: block;
}

.logo:hover {
  opacity: 1;
}

/* Base */
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.018) -45%,
  rgba(0, 0, 0, 0.95) 27%,
  rgba(0, 0, 0, 1) 100%
);
  color: #f5f5f5;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

/* Image rightclick/ long press settings */
img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Section Power Spacing */
.hero {
  min-height: 100vh;
  padding: 100px 60px;
  display: flex;
  
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  flex: 1;
  align-items: flex-start;
}

.hero h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-photo {
  flex-shrink: 0;
}

.hero-photo img {
  width: 240px;
  height: auto;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .hero-photo img {
    width: 200px;
    margin-bottom: 5px;
  }
}

.tagline {
  font-size: 22px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 20px;
}

.intro {
  max-width: none;
  font-size: 20px;
  font-weight: 300;
  margin-top: 30px;
}

/* Section Styles */
.section {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 8px;
}

.section p {
  font-size: 18px;
  font-weight: 300;
  margin-top: 12px;
}

/* Footer */
footer {
  padding: 50px 60px;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

footer a {
  color: #ffffff;
  opacity: 0.8;
  margin: 0 10px;
}
footer a {
  transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
  footer {
    font-size: 12px;
  }


a:hover {
  opacity: 1;
}

/* Progressive reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo {
    top: 24px;
    left: 24px;
  }

  .logo img {
    width: 30px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero .tagline {
    font-size: 14px;
  }

  .hero .intro {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 12px;
  }

  .section h2 {
    font-size: 18px;
  }

  .section p {
    font-size: 12px;
    line-height: 1.6;
  }


@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}




