/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  max-width: 600px;
}

/* Brand name */
.brand {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

/* Meaning */
.meaning {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Tagline */
.tagline {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* Visitors */
.visitors {
  font-size: 1rem;
  margin-bottom: 0;
  color: #aaaaaa;
  font-weight: 300;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.scroll-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: blink 2s infinite;
}

.scroll-arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.scroll-arrow i {
  color: #ffffff;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

/* Fallback if icon doesn't load */
.scroll-arrow::after {
  content: "↓";
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  display: none;
}

.scroll-arrow i:not([class*="fa-"]) + .scroll-arrow::after {
  display: block;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0;
  animation: fadeInOut 3s infinite;
}

/* Blink animation */
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Fade in out animation */
@keyframes fadeInOut {
  0%,
  50% {
    opacity: 0.7;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

/* Content Sections */
.content {
  background-color: #ffffff;
  color: #000000;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background-color: #fafafa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #000000;
  letter-spacing: -1px;
}

.story-content {
  display: grid;
  gap: 40px;
}

.story-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.story-block h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: -0.5px;
}

.story-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333333;
  font-weight: 400;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.cta-section .section-title {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Journey Section */
.journey-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.journey-visual {
  text-align: center;
  margin: 60px 0;
}

.journey-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for journey */
@media (max-width: 768px) {
  .journey-section {
    padding: 60px 0;
  }

  .journey-visual {
    margin: 40px 0;
  }
}

@media (max-width: 480px) {
  .journey-section {
    padding: 40px 0;
  }

  .journey-visual {
    margin: 30px 0;
  }
}

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
  font-weight: 300;
}

.footer p {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

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

  .brand {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .story-section {
    padding: 60px 0;
  }

  .story-block {
    padding: 30px;
  }

  .story-block h4 {
    font-size: 1.2rem;
  }

  .story-block p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .story-block {
    padding: 25px;
  }
}
