/*
Theme Name: Meditation
Author: nekithh
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: Lato, sans-serif;
    background-color: #f3f3f3;
}
a {
    padding: 0;
    margin: 0;
    text-decoration: none;
}
.header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 12px;
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: #00000089;
}
.header img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    object-fit: cover;
}
.header h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 0;
    z-index: 2;
    max-width: 630px;
    margin-top: 100px;
    position: relative;
}
@media(max-width: 480px) {
    .header h1 {
        font-size: 36px;
        line-height: 41px;
    }
}
.header h1::before {
    content: '';
    width: 150px;
    height: 1.5px;
    background: white;
    position: absolute;
    bottom: -20px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}
.header p {
    font-size: 22px;
    margin: 40px 0 0 0;
    text-align: center;
    z-index: 2;
    max-width: 700px;
}
.header .button {
    padding: 15px 30px;
    background-color: #ffe7a5;
    color: black;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    transition: background-color 0.3s;
    z-index: 2;
    margin-top: 20px;
}
.section {
    padding: 50px 20px;
    text-align: center;
}
.benefits, .cta {
    background-color: white;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    padding: 30px;
}
.benefits ul {
    list-style: none;
    padding: 0;
}
.benefits ul li {
    text-align: left;
    margin: 10px 0;
    font-size: 1.1rem;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
input {
    padding: 10px;
    margin: 10px 0;
    width: 80%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form a {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
form a:hover {
    background-color: #45a049;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}