
body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #e59b4f;
    color: white;
    text-align: center;
}

.title {
    font-family: 'Prata', serif;
    font-size: 3em;
    margin-top: 50px;
}

.subtitle {
    font-family: 'Satisfy', cursive;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.coming-soon {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #983036;
    color: #983036;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    background-color: transparent;
    transition: 0.3s;
}

.coming-soon:hover {
    background-color: #983036;
    color: white;
}

.hero-banner img {
    max-width: 90%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
}

.description {
    margin: 30px auto;
    max-width: 800px;
    font-size: 1em;
    color: white;
}

.btn {
    background-color: #983036;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.socials img {
    width: 40px;
    height: 40px;
    margin: 10px;
}

.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup.active {
    display: flex;
}

.popup-content {
    background-color: white;
    padding: 20px;
    position: relative;
    border-radius: 10px;
}

.popup-content img {
    max-height: 200px;
    object-fit: cover;

    max-width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.5em;
    color: #983036;
    cursor: pointer;
}

.coming-img {
    width: 200px;
    height: auto;
    cursor: pointer;
    margin: 20px 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.newsletter-form input,
.newsletter-form button {
    padding: 10px;
    font-size: 1em;
}
.newsletter-form button {
    background-color: #983036;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
