/* Theme Name: DentMove
Theme URI: https://candev.org/cases/dentmove
Description: Professional website for DentMove company.
Author: Candev Studio
Version: 1.0
Author URI: https://candev.org
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
.soon-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    gap: 20px;
    padding: 20px;
    position: relative;
}
.soon-page h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.soon-page p {
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}
.soon-page-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    object-fit: contain;
}
.soon-page-button {
    background-color: #4DA9E3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.soon-page-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px;
}
.popup.active{
    display: flex;
}
.popup-content{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}
.popup-close{
    background-color: #4DA9E3;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 5px;
}
.popup-close svg{
    width: 20px;
    height: 20px;
    display: block;
}
@media screen and (max-width: 700px) {
    .soon-page h1 {
        font-size:30px;
        line-height: 1.1;
    }
    .soon-page p {
        font-size: 1rem;
    }
}