/* All custom CSS from the <style> tag goes here */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F5F7;
    overflow-x: hidden;
}

.font-script {
    font-family: 'Dancing Script', cursive;
}

.font-garamond {
    font-family: 'Cormorant Garamond', serif;
}

.bg-custom-blue {
    background-color: #9ab8c7;
}

.text-custom-blue {
    color: #9ab8c7;
}

.max-w-screen-sm {
    max-width: 640px;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.floral-background {
    position: relative;
    z-index: 1;
}

.floral-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./pattern_flowers.webp");
    background-repeat: repeat;
    background-size: 900px;
    opacity: 0.1;
    z-index: -1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.hidden-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-wiggle {
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
}