/* contact form part */

/* Base Styles */
#punk-contact-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 150px 20px 100px;
    /* Add these background properties */
    background-image: url('images/1650 background 1000 22.jpg'); /* Set your image path */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image from repeating */
}

.punk-contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.punk-contact-blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: blue;
    opacity: 0.4;
    z-index: 2;
}

.punk-contact-form-wrapper {
    width: 75vw; /* Total width of both columns */
    margin-right: 10vh;
  margin-top: 15vh;
    max-width: none;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.punk-contact-background-image {
    /* Remove these styles */
    /* position: absolute; */
    /* top: 0; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* width: 50%; */
    /* height: 100%; */
    /* object-fit: cover; */
    /* z-index: 1; */
    display: none; /* Hide the img tag */
}

.punk-contact-title {
    color: white;
    background-color: rgba(128, 0, 128, 0.3);
    padding: 10px 20px;
    font-size: 8rem;
    margin-bottom: 50px;
    z-index: 10;
    display: inline-block;
    text-align: center;
}

.form-and-widget-container {
    display: flex; /* Side-by-side layout */
    justify-content: center;  /* This centers both columns */
    gap: 0px;  /* Remove gap; spacing is handled by margin-right on form */
}

/* Form Column */
.punk-rock-form-container {
    display: flex;
    flex-direction: column;
    width: auto; /*  Let content determine width */
    max-width: 750px; /* Set a fixed max-width for the form */
    margin-right: 50px; /*  Add space between form and widget */
}

/* Align labels next to inputs */
.punk-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
 width: 100%;
    margin-right: 50vh;
}

.punk-sex-pistols-label {
    color: white;
    font-family: "Chinese Rocks", sans-serif;
    font-size: 1.25rem; /* Increased from 1rem to 1.25rem */
    margin-right: 15px;
    flex-shrink: 0;
    width: 150px; /* Keep the original width */
    text-align: right;
}

.punk-form-group input,
.punk-form-group textarea {
    flex-grow: 1;
    width: calc(100% - 165px); /* Adjusted based on label width */
    padding: 15px;
    background: rgba(255, 0, 0, 0.75);
    border: 2px solid white;
    color: white;
    border-radius: 5px;
    font-family: Arial, sans-serif; /* Changed to Arial */
    font-size: 1.25rem; /* Increased from 1rem to 1.25rem */
    font-weight: bold; /* Make the text bold */
}

.punk-form-group textarea {
    height: 150px; /* Keep the original height */
    resize: none;
}

/* Submit button styling */
.punk-submit-button {
    width: 10vw;
    height: 7.5vh; 
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    font-family: "Chinese Rocks", sans-serif;
    font-size: 1.25rem;
    margin-top: 20px;
    align-self: center;
    transition: all 0.3s ease-in-out;
}

.punk-submit-button:hover {
    background-color: white;
    color: red;
}

/* Widget Column */
.widget-column {
    display: flex;
    justify-content: center;
    width: auto; /* Let content determine width */
}

.ents-widget {
    width: 300px; /* Fixed widget width */
    height: calc(400px + 15vh);
    background-color: white;
    z-index: 6;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ents-widget iframe {
    width: 100%;
    height: 100%;
}

/* punk submit form message styling */ 
