
@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,600,400italic);

/* BODY */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 12px;
  line-height: 30px;
  color: f777;
  background-image: url("/uploads/SUN24_0820_CULTURA_PEOPLE_PEOPLE20_LDA_005.jpg");
  /*background-color: green;*/
  /*background-image: url("/uploads/Logo-SVJ25.jpg");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-width: 100vw;

  /* CHANGED: keep flex for horizontal centering, but top-align so the page scrolls naturally */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* was center */
}

#container {
  max-width: 400px;
  width: 100%;

  /* CHANGED: remove vh/calc vertical offsets that pushed the header off-screen.
     Give a fixed top margin so the title sits below the fixed menu. */
  margin: 240px auto 80px auto;

  position: relative;
  background-color: transparent;

  /* removed: margin: 10vh auto 0 auto; */
  /* removed: margin-top: calc(10vh - 150px); */
}

#logo-container {
  width: 100%;
  background: #006400;
  border: 0px;
  border-radius: 0;
  padding: 12px 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#logo-container h1 {
  font: 400 28px/32px "Roboto", Helvetica, Arial, sans-serif;
  color: white;
  text-align: center;
}

#success-message {
  background-color: #006400;
  border-radius: 0;
  padding: 12px 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  margin: 10px 0;
  font-weight: bold;
  font: 400 28px/32px "Roboto", Helvetica, Arial, sans-serif;
  color: #e0e0e0;
  text-align: center;
}

#menu-container {
    position: fixed; /* Ensures the button stays fixed at the top */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 1000;
}

#menu-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#menu-button:hover {
    background-color: #228B22;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#dropdown-menu {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    right: 0;
    width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

#dropdown-menu a {
    display: block;
    color: green;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
}

#dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* FORM */

form {
  background: #e0e0e0;
  padding: 25px;
  margin: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

fieldset {
  border: none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select,
option,
button[type="submit"] {
  font: 400 14px/16px "Roboto", Helvetica, Arial, sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;
  height: 42px;
  border: 1px solid #43A047;
  border-radius: 4px;
  background: #FFF;
  margin-bottom: 25px;
  padding: 10px;
  text-align: center;
  color: #43A047;
}

textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

option {
  width: 100%;
  background: #FFF;
  margin: 0;
  padding: 12px;
  text-align: center;
}

select {
  width: 100%;
  height: 42px;
  background-color: white;
  border: 1px solid #43A047;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  margin-bottom: 25px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) calc(1.2em + 2px),
    calc(100% - 10px) calc(1.2em + 2px),
    calc(100% - 2.2em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 2em;
  background-repeat: no-repeat;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="url"]:hover,
select:hover,
textarea:hover {
  transition: border-color 0.3s ease-in-out;
  border: 1px solid blue;
}

select:focus {
  background-image:
    linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 10px) 1.25em,
    calc(100% - 15px) 1.25em,
    calc(100% - 2.2em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 2em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}

button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4CAF50;
  color: #FFF;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 15px;
}

button[type="submit"]:hover {
  background: #43A047;
  transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border: 1px solid blue;
}

#ui-datepicker-div {
  width: 350px;
}

#photo-upload-files {
  font: 400 12px/14px "Roboto", Helvetica, Arial, sans-serif;
  width: 100%;
  border: 1px solid #43A047;
  border-radius: 4px;
  margin: 0 auto 25px auto;
  display: block;
  padding: 8px;
  text-align: center;
}

#photo-upload-files:hover, 
#photo-upload-files:focus {
  transition: border-color 0.3s ease-in-out;
  border: 1px solid blue;
}

#photo-upload-fileDiv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 42px;
  border: 1px solid #43A047;
  border-radius: 4px;
  background: #FFF;
  margin-bottom: 25px;
  text-align: center;
  padding: 5px;
}

#photo-upload-fileDiv:hover, 
#photo-upload-fileDiv:focus {
  transition: border-color 0.3s ease-in-out;
  border: 1px solid blue;
}

#photo-upload-fileSpan {
  font: 400 12px/14px "Roboto", Helvetica, Arial, sans-serif;
  text-align: center;
}

#photo-upload-files {
  height: 42px;
  position: absolute;
  background: black;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

input[type="submit"] {
  font: 400 16px/18px "Roboto", Helvetica, Arial, sans-serif;
  color: white;
  width: 40%;
  height: 52px;
  border: none;
  background: #555555;
  margin: auto;
  display: block;
  padding: 10px;
  text-align: center;
}

input[type="submit"]:hover, 
input[type="submit"]:focus {
  background-color: #43A047;
  transition: background-color 0.3s ease-in-out;
}

::-webkit-input-placeholder {
  color: #43A047;
}

:-moz-placeholder {
  color: #43A047;
}

::-moz-placeholder {
  color: #43A047;
}

:-ms-input-placeholder {
  color: #43A047;
}

/* SELECT2 */

.select2-container {
  height: 43px;
  margin-bottom: 25px;  
}

.select2-container--default .select2-selection--single {
  height: 43px;
  padding: 7px 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 80%; 
}

/* PHP POPUP */

#popup {
  width: 100%;
  background: #006400;
  border: 0;
  border-radius: 0;
  padding: 12px 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  margin-bottom: 10px;
}

#popup-text {
  font-size: 25px;
  color: #fff;
  margin: 21px 0;
  font-weight: bolder;
}

/* COPYRIGHT */

#copyright {
  font: 400 10px/12px "Roboto", Helvetica, Arial, sans-serif;
  color: white;
  text-align: center;
}

