:root {
  font-size: 16px;

  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
:-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}



@media (max-width: 500px) {
  :root {
    font-size: 14px;
  }
  .scrollContainer {
    margin-right: 30%;
  }
  .separator {
    max-width: 85%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background: #87cd33;
  color: white;
}

::selection {
  background: #87cd33;
  color: white;
}

body {
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji;
}

h1 {
  font-size: 5rem;
}
h2 {
  font-size: 2rem;
}

img {
  width: 100%;
  height: auto;
  background-size: fill;
  background-repeat: no-repeat;
  background-position: center;
}

ul {
  padding-left: 1rem;
  list-style: none;
}

li {
  flex-shrink: 0;
  width: clamp(500px, 60vw, 800px);
  padding-right: 1rem;
}

header {
  height: 100vh;
}
footer {
  height: 50vh;
}

:-webkit-any-link {
  color: #4e9815;
}

:-moz-any-link {
  color: #4e9815;
}

:any-link {
  color: #4e9815;
}

.df {
  display: flex;
}
.aic {
  align-items: center;
}
.jcc {
  justify-content: center;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  color: white;
}

.demo-wrapper {
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  
}

.demo-gallery:not(.last) {
  padding-bottom: 1rem;
}

.demo-text .text {
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 1;
  font-weight: 900;
}
.happy-text .text {
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap; /* Tek satırda kalmasını sağlar */
}

.container {
  display: flex;
  margin-top: 20px;
  padding: 25px;
}

.tutorial_link .a{
    display: none;
}

.column {
  flex: 1;
  padding: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Optional: Add responsive styles for smaller screens */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .column {
    width: 100%;
    margin-bottom: 15px;
  }
  .separator {
    max-width: 60%;
  }
}

.menuItem {
  margin-bottom: 15px;
}

.drinkName {
  font-weight: bold;
}

.price {
  float: right;
}

.description {
  margin-top: 5px;
  font-style: italic;
  color: #777;
}

/* Dotted line separator */
.separator {
  border-top: 1px dashed #999;
  margin-top: 5px;
  max-width: 85%;
  padding-right: 5px;
  margin-bottom: 10px;
}

.scroll {
  width: 50px;
  height: 90px;
  position: relative;
  &::before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
  }
}

@keyframes wheel {
  to {
    opacity: 0;
    top: -30px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: -30px;
  }
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

.scrollContainer {
  display: block; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}
.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 400px;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 400px;
}
.gmap_iframe {
  height: 400px !important;
}

.btn {
  display: inline-block;
  width: 120px;
  height: 120px;
  background: #f1f1f1;
  margin: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px -5px #535c68;
  color: #686de0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.btn i {
  font-size: 56px;
  line-height: 2.2;
  transition: 0.2s linear;
}
.btn:hover i {
  transform: scale(1.3);
  color: #f1f1f1;
}
.btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #4834d4;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
.btn:hover::before {
  animation: pounce 0.7s 1;
  top: -10%;
  left: -10%;
}

@keyframes pounce {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: 10%;
    top: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}
