*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at top, #fff6e5, #e8d2a6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3b2a1a;
    text-align: center;
}

.container {
    max-width: 650px;
    padding: 40px 20px;
}

.logo{
    width: 120px;
    margin-bottom: 20px;
    justify-content: center;
}

.soon {
    display: inline-block;
    background: linear-gradient(45deg, #c6a14d, #e8c97a);
    color: #3b2a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    justify-content: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

h1 span{
    color:#b08a2e
}

.description{
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.email-box{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.email-box input{
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    min-width: 240px;
    outline: none;
}

.email-box button{
    padding: 12px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #b08a2e, #e8c97a);
    color: #3b2a1a;
    font-weight: 500;
}

.email-box button:hover{
    transform: scale(1.10);
}

.social{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social a{
    text-decoration: none;
    color: #3b2a1a;
    font-weight: 500;
    opacity: 0.8;
}

.social a:hover{
    opacity: 1;
}

.right{
    font-size: 0.85rem;
    opacity: 0.8;
}
