/* Reset and Normalize Styles for Cross-Browser Consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and overall layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    background-color: #ba6f3a;
    padding: 20px;
    text-align: center;
    color: white;
}

.content-container {
    max-width: 600px;
    width: 100%;
    overflow-y: auto; /* Scrolls only if content overflows vertically */
}


/* Form container */
.signup-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

/* Form group for label and input */
.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

/* Style for form labels */
.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style for form inputs, textareas, and selects */
.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

/* File input specific styling */
.form-group input[type="file"] {
    padding: 3px;
}

/* Footer styling */
footer {
    background-color: #ddd;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 600px) {
    .signup-form {
        padding: 15px;
        max-width: 100%;
    }

    header {
        padding: 15px;
    }

    .button {
        padding: 10px;
    }
}


img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Container for vertical form layout */
.signup-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style for form groups */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
}

/* Style for input labels */
.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style for inputs and textareas */
.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style for file input */
.form-group input[type="file"] {
    padding: 5px;
}

/* Style for button */
.signup-form .button {
    width: 100%;
    padding: 12px;
    background-color: #ba6f3a;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.signup-form .button:hover {
    background-color: #45a049;
}

/* Vertical button layout for index.html */
.vertical-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Add spacing between buttons */
    align-items: center;
    width: 100%;
}

/* Ensure button width is consistent */
.vertical-buttons .button {
    width: 100%;
    max-width: 300px; /* Optional: Consistent button width */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    flex-shrink: 0; /* Prevent shrinking */
}

footer {
    background-color: #ddd;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: auto; /* Ensures footer stays at the bottom */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ensures wrapper takes full viewport height */
}

header, footer {
    flex-shrink: 0; /* prevents header/footer from shrinking */
}

.main-content {
    flex-grow: 1; /* takes available vertical space */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}

.center-content {
    display: flex;
    flex-direction: column;  /* stack buttons vertically */
    gap: 15px;               /* spacing between buttons */
    align-items: center;     /* center buttons horizontally */
}

.button {
    padding: 12px 24px;
    background-color: #ba6f3a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 250px;  /* consistent button width */
    text-align: center;
}

.button:hover {
    background-color: #45a049;
}

/* Vimeo */
.vimeo-short-wrapper {
    width: 315px;
    height: 560px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .vimeo-short-wrapper iframe {
    width: 100%;
    height: 100%;
  }
  
  

  