body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.coming-soon {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./66ValleyView_Trumbull_Int_8.jpg'); /* Replace with your photo URL */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black filter overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3em;
    margin: 0;
}

p {
    font-size: 1.5em;
    margin: 10px 0;
}

.email-form {
    margin-top: 20px;
}

.email-form input {
    padding: 10px;
    font-size: 1em;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
}

.email-form button {
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #555;
}

.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.social-links a {
    margin-left: 10px;
}

.social-links img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}
