body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

.hero {
  background-image: url("../images/toast_main.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.hero-text-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-img {
  width: 80%;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Initial state */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* When scrolled into view */
[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

.rotate-right {
  transform: rotate(8deg);
  transition: transform 0.3s ease;
}

.bg-cafe {
  background-color: #f5efe7; /* warm beige */
}

/* .glf-button {
  font-family: "Segoe UI", sans-serif !important;
  background-color: #fff !important;
  color: #000 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: none !important;
} */

/* Animations, buttons, section styles, footer, etc. */
/* Add the rest of your styles here */
