/* Cocktail Section Layout */
.cocktail-section {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 18vw;
}

.cocktail-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
}

/* Left: Text and Button */
.cocktail-text {
  width: 50%;
  max-width: 500px;
  min-height: 240px;
  color: white;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Lobster", serif;
  display: flex;
  flex-direction: column;
  justify-content: center;

  opacity: 1;
  transition: opacity 1.2s ease;
}

#exploreButtonWrapper {
  margin-top: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.2s ease 1.2s, transform 1.2s ease 1.2s;
}

#exploreButtonWrapper.show {
  opacity: 1;
  transform: scale(1);
}

#exploreButton {
  font-family: "Germania", serif;
  font-size: 1.4rem;
  padding: 0.75rem 2rem;
  border: none;
  background-color: #3d7b92;
  color: white;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#exploreButton:hover {
  background-color: #56a8c6;
}

/* Right: Glass and Ingredients */
.cocktail-glass-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 45%;
  height: 60vh;
  margin-top: -25vh;
  pointer-events: none;
}

.glass-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.liquid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.glass-image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.ingredients {
  margin-top: 2rem;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}

.ingredient {
  font-size: 3rem;
  cursor: grab;
  z-index: 10;
}
.ingredients,
.ingredient {
  pointer-events: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .cocktail-section {
    padding: 0vh 4vw 2vh 4vw;
  }
  .cocktail-layout {
    flex-direction: column;
    gap: 0rem;
    align-items: center;
  }
  .cocktail-glass-area {
    width: 80%;
    max-width: 100%;
  }
  .cocktail-text {
    text-align: center;
    font-size: 1rem;
    width: 95%;
    max-width: 100%;
  }
  #exploreButton {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}
