@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Noto+Sans&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #EEF4F7;
    color: #2E2E2E;
    background: linear-gradient(to bottom right, #EEF4F7, #D9E4EC);
    animation: fadeInBody 1.5s ease-in;

    
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;


    margin: 0;
    padding: 0;
    line-height: 1.6;
}
body::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-flower.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}
.new-badge {
    background-color: rgb(196, 118, 115);
    color: white;
    font-size: 0.6em;
    padding: 0.2em 0.5em;
    border-radius: 10px;
    margin-left: 0.5em;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #A5A8D1;
    margin-bottom: 0.5em;
}

section {
    padding: 4em 2em;
    max-width: 800px;
    margin: auto;
    text-align: center;
}
hr{
    margin: 1rem;
}
.app-card{
    background-color: antiquewhite; 
    border-radius: 6px;
    padding: 2em;
    margin-bottom: 2rem;
}
.buttons .btn-buy{
    background-color: #F0938C; 
    color: #fff;
}

.buttons .btn-demo{
    background-color: #7FAEDC;
    color: #fff;
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
}

.buttons a {
    /* background-color: #F0938C; */
    color: #fff;
    text-decoration: none;
    padding: 0.6em 1.2em;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buttons a:hover {
    background-color: #e0bd73;
    cursor: pointer;
}

.ad-area {
    max-width: 800px;
    margin: 40px auto;
    padding: 16px 20px;
    background-color: #fff7fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

footer {
    background-color: #B0C4D8;
    text-align: center;
    padding: 2em;
    font-size: 0.9em;
    color: #2E2E2E;
    position: relative;
    z-index: 1;
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}

section {
    opacity: 0;
    animation: fadeInSection 1.2s ease-in forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInSection {
    to { opacity: 1; }
}
