@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {
    --primary-color: #f7f3e9;
    --secondary-color: #e0f2f1;
    --accent-color: #a7d9b9;
    --text-color: #333;
    --font-family: 'Varela Round', sans-serif;
}

body {
    font-family: var(--font-family);
    direction: rtl;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    background-color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 700px;
    text-align: center;
    margin: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

header h1 {
    color: var(--text-color);
    font-size: 2.8em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    line-height: 1.3;
}

main p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.scent-element {
    font-size: 3em;
    margin: 30px 0;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.05); opacity: 1; }
}

.contact-placeholder p {
    font-size: 1.1em;
    margin-top: 30px;
    color: #555;
}

.contact-placeholder a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-placeholder a:hover {
    color: #7ab18c;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

@media (max-width: 600px) {
    .container {
        padding: 25px;
        margin: 10px;
    }
    header h1 {
        font-size: 2em;
    }
    main p {
        font-size: 1.1em;
    }
    .scent-element {
        font-size: 2.5em;
    }
}