@import url('https://fonts.googleapis.com/css2?family=Telegraf:wght@400;700&family=Garet:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Garet', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #082449;
    color: #fff;
}

.container {
    text-align: center;
    max-width: 1200px;
}

.property-logo {
    display: none;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 20px auto;
}

.coming-2025 {
    font-family: 'Telegraf', sans-serif;
    font-size: 100px;
    margin-bottom: 20px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.text-section {
    flex: 1;
    max-width: 50%;
    text-align: left;
    padding-right: 20px;
}

.unit-rendering {
    flex: 1;
    max-width: 65%;
    margin-top: 180px;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.description {
    font-family: 'Telegraf', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 5px 10px;
    max-width: 250px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    background-color: #082449;
    border: 3.5px solid #ffffff;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-bottom: 40px;
}

.cta-button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 20px;
}

.company-logo {
    width: 70px;
    background-color: #ffffff;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

label {
    align-self: flex-start;
    margin-bottom: 5px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 10px;
    font-size: 1em;
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.social-media p {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 600;
}

.line {
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 0 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

/* Map container styles */
.map-container {
    display: none;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100vh;
    }    
    .container {
        max-width: 100%;
        padding: 20px;
    }
    
    .unit-rendering {
        margin-top: 20px;
    }

    .property-logo {
        display: none;
        max-width: 300px;
        width: 150px;
        height: auto;
        margin: 10px auto;
    }

    .coming-2025 {
        font-size: 40px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .text-section {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .unit-rendering {
        max-width: 100%;
        margin: 20px 0;
    }

    .cta-button {
        max-width: 100%;
        width: auto;
    }

    .social-media {
        position: static;
        margin-top: 30px;
    }

    .social-media p {
        flex-direction: row;
        align-items: center;
    }

    .line {
        width: 80px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        margin: 5px;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .company-logo {
        width: 40px;
        margin-top: 20px;
    }

    .map-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}
.loading-indicator {
    display: none;
    text-align: center;
    font-size: 24px;
}

#success-message {
    display: none;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-button:hover {
    background-color: #0056b3;
}

.property-logo {
    display: flex;
    max-width: 250px;
    width: 50%;
    height: auto;
    margin: 20px auto;
}