@tailwind base;
@tailwind components;
@tailwind utilities;


input {
    color: black;
}

textarea {
    color: black;
}

html {
  scroll-behavior: smooth;
}

.bg-button {
     background: linear-gradient(135deg, #00D4FF, #00FF88);
}

.gradient-text {
  background: linear-gradient(135deg, #E8ECF1 25%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for future support */
}

/*primary color*/
.bg-cream {
    background-color: #FFF2E1;
}
/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #809671;
}
.text-yellow-500 {
    color: #EEA83B
}
.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #809671;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.googlePlayGreen {
  color: #01875f;
}

.googlePlayBgGreen {
  background-color: #01875f;
}

.googlePlayButton {
  background-color: #01875f;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.googlePlayButton:hover {
  background-color: #016b4c;
}

.outlinedButton {
  /* border: 1px solid #dadce0; */
  color: #01875f;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.outlinedButton:hover {
  background-color: #f8f9fa;
}

.appIcon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.ratingBar {
  height: 8px;
  background-color: #e8eaed;
  border-radius: 4px;
  overflow: hidden;
  flex-grow: 1;
}

.ratingProgress {
  height: 100%;
  background-color: #01875f;
  border-radius: 4px;
}

.secondaryText {
  color: #5f6368;
  font-size: 14px;
}

.sectionTitle {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chip {
  padding: 6px 12px;
  border: 1px solid #dadce0;
  border-radius: 20px;
  font-size: 12px;
  color: #5f6368;
}

@media (min-width: 768px) {
  .appIcon {
    width: 96px;
    height: 96px;
  }
}
