body {
    padding: 0;
    margin: 0;
    font-family: 'Avant Garde Gothic', sans-serif;
    background-image: url('images/background.jpeg');
    background-size: cover;
}

.content {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    text-align: center;
    position: relative;
    height: 300px; 
}

.form {
    position: relative;
}

.contact-button {
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.324);
    color: white;
}

.coming-soon {
    display:none;
}

.coming-soon.active {
    display: block;
    font-size: 16px;
    color: white;
    margin-top: 20px;
}

/* Contact styling */

.contact-container {
    display: none;
    left: 50%;
    transform: translateX(-50%);
    top: 35%; 
    margin-top: 20px;
}

.contact-container.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 20px;
    width: 420px;
}

.email-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    color: white;
}

.name-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    color: white;
}

.message-input {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
    background-color: transparent;
    color: white;
    font-family: 'Avant Garde Gothic', sans-serif;
}
.email-input, .message-input, .name-input {
    caret-color: white;
}

.email-input::placeholder {
    color: rgba(255, 255, 255);
}

.message-input::placeholder {
    color: rgba(255, 255, 255);
}

.name-input::placeholder {
    color: rgba(255, 255, 255);
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0 0;
    gap: 10px;
}

.submit-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.submit-button:hover {
    background-color: rgba(255, 255, 255, 0.324);
    color: white;
}

.cancel-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cancel-button:hover {
    background-color: rgba(255, 255, 255, 0.324);
    color: white;
}


.content h1 {
    font-size: 70px;
    color: white;
    margin: 0;
}

.pb-logo {
    width: 200px;
    height: auto;
}



footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .background-image {
        position: absolute;
    }

    .content {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: fill-available;
    }
    
    .info-content {
        text-align: center;
        position: relative;
        height: 500px; /* Fixed height to maintain spacing */
    }

    .content h1 {
        font-size: 52px;
    }

    .contact-container.active {
        width: 90%;
        margin: 0;
    }

    footer {
        font-size: 12px;
    }

}


