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

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "clarendon-text-pro", serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.italic {
  font-family: "clarendon-text-pro", serif;
  font-weight: 400;
  font-style: italic;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.section-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.section-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.section-5 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.content-wrapper {
  max-width: 900px;
  padding: 40px;
  text-align: center;
  color: white;
}

h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typewriter {
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.typewriter.active {
  opacity: 1;
}

.fly-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fly-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fly-in-up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fly-in-down {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fly-in-left.visible,
.fly-in-right.visible,
.fly-in-up.visible,
.fly-in-down.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.decorative-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: white;
  bottom: -50px;
  left: -50px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.grid-item {
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.grid-item.visible {
  opacity: 1;
  transform: scale(1);
}

.grid-item:nth-child(1) {
  transition-delay: 0.1s;
}

.grid-item:nth-child(2) {
  transition-delay: 0.2s;
}

.grid-item:nth-child(3) {
  transition-delay: 0.3s;
}

.grid-item:nth-child(4) {
  transition-delay: 0.4s;
}

.grid-item:nth-child(5) {
  transition-delay: 0.5s;
}

.grid-item:nth-child(6) {
  transition-delay: 0.6s;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .typewriter {
    font-size: 1.2rem;
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=style.css.map */