*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #000;
  background-color: #ffffff;
}

/* TOP BAR */

.top-bar {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}

.top-bar.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.top-bar-inner {
  width: min(1100px, 70vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.logo-pill{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-btn {
  position: relative;       
  display: inline-block;     
  padding: 8px 22px;
  text-decoration: none;
  background-color: transparent;
  color: #000000;
  font-weight: 600;
  font-size: 15px;
}

.about-btn::after {
    content: "";
    position: absolute;
    bottom: -1px;             
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 0.25s ease;
    border-radius: 5px;
}

.about-btn:hover::after {
    width: 70%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60); /* tamni overlay */
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 120px 16px 80px;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.hero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: "ABeeZee", sans-serif;
}

.hero-subtitle {
  font-size: clamp(8px, 4vw, 20px);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px;
  font-family: "ABeeZee", sans-serif;
}

/* EMAIL FORM */

.email-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: min(500px, 90vw);
  background-color: #ffffff;
  border-radius: 999px;
  overflow: hidden;
}

.email-form input[type="email"] {
  flex: 1;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

.email-submit {
  border: none;
  background: none;
  padding: 0 20px;
  font-size: 22px;
  cursor: pointer;
}

.email-submit:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease; 
}

/* ABOUT */

.about {
  padding: 60px 16px 60px;
  background-color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 46px;
}

.about-logo-pill {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 2px;
}

.about-quote {
  font-size: 14px;
  color: #555555;
}

.about-items {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.about-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.about-item h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.about-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .top-bar-inner {
    padding: 8px 16px;
    width: 60vh;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-subtitle {
    max-width: 700px;
  }

  .email-form {
    width: min(400px, 90vw);
  }
}


@media (max-width: 640px) {
  .top-bar-inner {
    padding: 8px 14px;
    width: 40vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .email-form {
    width: min(300px, 90vw);
  }

  .about {
    padding: 20px 16px 20px;
  }

  .about-heading {
    align-items: flex-start;
  }

  .about h2 {
    font-size: 26px;
  }
}