/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 48px;
  background-color: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  position: fixed;
  top: 35%;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Typewriter Effect */
.typewriter-container {
  display: flex;
  align-items: center;
}

.typewriter-text {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1.1;
}

.typewriter-cursor {
  font-size: 80px;
  font-weight: 200;
  color: #1a1a1a;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.tagline {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #666666;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Circle Buttons */
.circle-buttons {
  position: fixed;
  top: 20%;
  left: 66.66%;
  display: flex;
  gap: 24px;
  transform: translate(-50%, -50%);
}

.circle-btn {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #ff6b00;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.circle-btn:hover {
  transform: scale(1.05);
  background-color: #e55f00;
  opacity: 1;
}


.attrib {
    font-size: 10px;
    color: #a8a6a1
}


/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background-color: #f8f6f1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}

.footer-contact a {
  color: #666666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
  }

  .hero {
    padding: 80px 24px 60px;
    min-height: 40vh;
  }

  .typewriter-text,
  .typewriter-cursor {
    font-size: 40px;
  }

  .circle-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .circle-btn {
    width: 120px;
    height: 120px;
  }

  .footer {
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }
}
