/* Загальні стилі – світлий фон, м'які відтінки */
body {
    background-color: #F8F6F9; /* Ніжний молочний відтінок */
    color: #4A4A4A; /* Стриманий темно-сірий текст */
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    line-height: 1.8;
}

/* Заголовки – легкі, повітряні */
h1 {
    font-size: 50px;
    font-weight: 800;
    color: #5D4E7C; /* Витончений лавандово-сірий */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: #6A5B8A;
    margin-bottom: 15px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    color: #7D6FA2;
    margin-bottom: 10px;
}

/* Посилання */
a {
    color: #8B79B1; /* Приглушений лавандовий */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #A08EC7; /* Світліший лавандовий */
}

/* Кнопки – мінімалізм, світлі відтінки */
.t-btn {
    background-color: #B8A1D9; /* Ніжний лавандовий */
    color: #FDFDFD;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(184, 161, 217, 0.4);
}

.t-btn:hover {
    background-color: #9C85C5; /* Трохи темніший при наведенні */
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(156, 133, 197, 0.5);
}

/* Шапка */
.t-header {
    background-color: #EDE8F2 !important; /* Світла, але контрастна */
    color: #5D4E7C !important;
    border-bottom: 1px solid #C2B6D4;
}

/* Підвал */
.t-footer {
    background-color: #EDE8F2 !important;
    color: #4A4A4A !important;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #C2B6D4;
}

/* Форми */
input, textarea {
    background: #F6F3FA;
    color: #4A4A4A;
    border: 1px solid #C2B6D4;
    padding: 12px;
    border-radius: 6px;
    font-size: 17px;
}

input:focus, textarea:focus {
    border-color: #8B79B1;
    outline: none;
}

/* Анімація м'якого з'явлення */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.t-container, .t-btn, .t-title {
    animation: fadeIn 0.8s ease-in-out;
}
