.hero {
  position: relative;
  height: 100vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  max-width: 600px;
}

.buttons {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* Click */
.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
	
/* Hover */
.btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
	
.primary {
  background: #fff;
  color: #2b1a12;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* HERO CIRCULAR BADGES */


.hero-circles {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: nowrap; /* force inline */
  overflow-x: auto;  /* allow scroll if needed */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;  
}

/* Hover */
.circle:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-circles::-webkit-scrollbar {
  display: none;
  scroll-snap-type: x mandatory;
}

.circle {
  min-width: 78px;
  height: 78px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  padding: 6px;
  white-space: normal;
  flex-shrink: 0; /* critical for fold devices */
  scroll-snap-align: center;
  background: rgba(0,0,0,0.25); /* subtle contrast on image */
  backdrop-filter: blur(2px);  /* modern glass effect */  
}

.hero-quote {
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 50px;
  text-align: center;
}

/* MOBILE TUNING */
@media (max-width: 768px) {
  .hero-circles {
    gap: 12px;
  }

  .hero-circles .circle {
    width: 72px;
    height: 72px;
    font-size: 10.5px;
    border-width: 1.5px;
  }
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
  
	.insta {
	  border: 2px solid #e1306c;
	  color: #e1306c;
	  background: transparent;
	}  
}
