/*primary color*/
html {
	scroll-behavior: smooth;
}
.bg-cream {
    background-color: #FFF2E1;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #F6A863;
}
.text-yellow-500 {
    color: #F6A863;
}
.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: #67557A;
}

/* Custom Responsive Font Sizes */
.hero-title-responsive {
    font-size: 1.875rem; /* text-3xl equivalent */
}
.hero-subtitle-responsive {
    font-size: 1.125rem; /* text-lg equivalent */
}
@media (min-width: 768px) {
    .hero-title-responsive {
        font-size: 2.7rem;
    }
    .hero-subtitle-responsive {
        font-size: 1.35rem;
    }
}