/*MAIN*/
body {
        margin: 0;
        padding: 0;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
        color: #000000;
        line-height: 1.25em;
        height: 100%;
}
header {
    background: url(../grafics/hgsolid.jpg) repeat left bottom;
    width: 100%;
    height: 180px;
    top: 0;
    left: 0;
    z-index: 100;
    text-align: center;
}
#logo{
   display: inline-block;
   margin-right: auto;
   margin-top: 10px;
        font-size: 12px;
}
#menu-icon {
        width: 40px;
        height: 40px;
        background: #DE7510 url(../grafics/menu-icon.png) center;
}
p {
    font-family: Arial, sans-serif;
    text-align: center;
}
a {
    text-decoration: none;
    font-weight: bold;
    color: #800000;
}
section {
        margin: auto;
        max-width: 1200px;
        position: relative;
        padding: 20px;
         line-height: 3.4em;
    min-height: 100vh;
}
.text1 {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    line-height: 1.4em;
    text-align: justify;
    min-height: 100%;
    margin-bottom: 40px;
}
nav {
    float: right;
    margin: 60px 100px 0 0;
}
ul#navigation {
       list-style: none;
       margin: 0;
       padding: 0;
       position: relative;
}
ul#navigation li {
        display: inline-block;
        float: left;
       margin: 0 10px 2px 5px;
         color: #000000;
}
ul#navigation li a {
    margin:10px 10px 2px 10px;
    color: #000000;
    display:inline-block;
    background:none;
    text-decoration:none;
    border:0 none;
    float:left;
    clear:both;
}
ul#navigation li a.first {
    border-left: 0 none;
}
ul#navigation li a.last {
    border-right: 0 none;
}
ul#navigation li ul li {
    padding: 0;
    color: #DE7510;
    margin: 0;
    text-align: initial;
}

/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
    color: #DE7510 !important;
margin: 0;
margin-top: 30px;
padding: 0;
text-align: left;
width: max-content;
float: left;

}

ul#navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
    color: #DE7510 !important;
}

ul#navigation ul li ul {
    top: 0;
    display: block;
    position: relative;
    float: left;
    background: #1bc2a2;
    left: 1px; /* strong related to width:180px; from above */
}
ul#navigation li ul:hover > li {
    top: 0;
    display: block;
    position: relative;
    float: left;
    left: 1px; /* strong related to width:180px; from above */
}
ul#navigation ul li ul a {
    background:none;
    padding:4px 0 0;
    color: #DE7510 !important;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:150px;
    line-height: 0.9em;
}
ul:before, ul:after {
    content: " ";
    display: table;
}
ul#navigation ul li {
    clear:both;
    width:100%;
    border:0 none;
}
/*Form Container*/

/* Layout to put First Name and Last Name sections side-by-side */
.input-container {
  display: flex;
  flex-direction: row;       /* Places columns horizontally */
  gap: 16px;                 /* Spacing between First Name and Last Name columns */
  width: 100%;
  max-width: 1200px;
  font-family: sans-serif;
    line-height: 1em;
margin-bottom: 20px;
}
    /* Container Box */
.input-container1 {
 font-family: system-ui, sans-serif;
    max-width: 850px;
    padding: 10px;
    background: transparent;
    border-radius: 8px;
    border: 3px solid #914f10;
    font-size: 20px;
    color: #000000;
        line-height: 2em;
        display: flex;
  flex-direction: column;   /* Moves elements down in a clean vertical line */
  gap: 8px;                 /* Spacing between the question text and options */
  margin-bottom: 20px;

}
    .input-container1 input::placeholder{
        color: #000000;
    }
    .input-container2 {
 font-family: system-ui, sans-serif;
    max-width: 100%;
    padding: 10px;
    background: transparent;
    border-radius: 8px;
    border: 3px solid #914f10;
    font-size: 20px;
    color: #000000;
  margin-bottom: 20px;
}
    .input-container2 input::placeholder{
        color: #000000;
    }
/* Individual Column Layout */
.input-wrapper {
  display: flex;
  flex-direction: column;    /* Forces the label to stack directly above the input box */
  flex: 1;                   /* Makes both columns expand equally in size */
}
label {
  display: block;          /* Forces the label onto its own line */
  margin-bottom: 1px;      /* Adds space between the label and the input */
      font-size: 20px;
  font-family: sans-serif;
  color: #000000;
      line-height: 1.4;
}
/* Label Styling */
.input-wrapper label {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
    font-family: sans-serif;
    text-align: left;
}
.form-input {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 15px 10px 15px 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
/* Individual layout for each radio option */
.form-input {
  display: flex;
  align-items: center;      /* Vertically aligns the circle directly with text label */
}
.form-input1 {
    font-size: 20px;
    font-family: sans-serif;
    color: #000000;
    cursor: pointer;
    user-select: none;
    text-align: left;
     display: flex;
    align-items: center;
    gap: 8px;
}
}
/* Input Box Styling */
.form-input input {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;    /* Keeps padding calculations inside the total width boundary */
}

/* Focus Indicator */
.form-input input:focus {
  border-color: #cc3a00;
  outline: none;
}



.input-container input {
  flex: 1;            /* Forces both inputs to share width equally */
  padding: 8px;       /* Adds inner spacing for better UX */
}
/* Stack container for the textarea module */
.textarea-group {
  display: flex;
  flex-direction: column;    /* Forces the label text to stack vertically above the input box */
  gap: 8px;                 /* Clean spacing between the label text and textarea border */
  width: 100%;
  max-width: 1200px;
  font-family: sans-serif;
}

/* Label text modifications */
.textarea-group label {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;         /* Makes multi-line label text clean and easy to read */
}

/* Red mandatory indicator styling */
.required-star {
  color: #d93025;
  margin-left: 2px;
}
/* Style for the main question text sitting on top */
.radio-main-label {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  display: block;
  line-height: 1.4;
  text-align: left;
}


/* Formats the spacing on the little circles */
.form-input input[type="radio"] {
  cursor: pointer;
  width: 16px;
  height: 18px;
}

/* Style for the option text labels (Male, Female, etc) */
.form-input label {
  font-size: 14px;
  color: #444444;
  cursor: pointer;          /* Shows a pointer finger when hovering over the text */
}

    .container1{
        color: #fff;
        width: 100%;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, .2);
        padding: 30px 40px;
        border-radius: 12px;
        backdrop-filter: blur(9px);
    }

/* Main container layout */
.form-container {
  display: flex;
  flex-direction: row;       /* Aligns the input groups horizontally side-by-side */
  gap: 16px;                 /* Adds spacing between the two columns */
  width: 100%;
  max-width: 700px;          /* Expanded width to fit two fields comfortably */
  font-family: sans-serif;
}

/* Container holding both fields */
.form-row {
  display: flex;
  gap: 16px; /* Spacing between the two fields */
  width: 100%;
}

/* Individual field wrappers */
.form-group {
  display: flex;
  flex-direction: column; /* Forces label to sit strictly on top of the input */
  gap: 8px; /* Spacing between the label and its input field */
  flex: 1; /* Makes both fields take up equal width */
}

/* Optional styling to clean up appearance */
.form-group input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}


/* Responsive adjustment for small mobile screens */
@media (max-width: 600px) {
  .form-container {
    flex-direction: column;  /* Stacks them vertically on mobile for readability */
  }
}

.flex-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
      align-items: center;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container > div {
    margin: 10px;
    padding: 2px;
    width: 30%;
    justify-content: center;
    background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
      align-items: center;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container1 > div {
  margin: 5px;
  padding: 2px;
  width: 48%;
  justify-content: center;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
      align-items: center;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container2 > div {
   margin: 40px;
    padding: 2px;
    justify-content: center;
    background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container3{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
      align-items: center;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.flex-container3 > div {
    margin: 40px;
    padding: 2px;
    justify-content: center;
    background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
.title {
        font-family: Monotype Corsiva;
        text-align: center;
        font-size: 36px;
        margin-bottom: 50px;
        line-height: 1em;
        }
.title1 {
        font-family: Monotype Corsiva;
        text-align: center;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1em;
}
.title2 {
        font-family: Monotype Corsiva;
    text-align: center;
    font-size: 42px;
    line-height: 1.4em;
}
.titlequeens1 {
    font-family: "Lucida Handwriting", cursive;
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    text-shadow: 0 0 3px #FF0000;
}


        .form-input input {
        width: 100%;
        height: 100%;
        background: transparent;
        outline: none;
    border: 3px solid #914f10;
        font-size: 20px;
        padding: 20px 45px 20px 20px;
        border-radius: 5px;
    }
    .form-input input::placeholder{
        color: #000000;
    }
textarea {
    overflow: auto;
    resize: vertical;
position: relative;
    width: 100%;
    margin: 10px 0;
       height: 100%;
    background: transparent;
    outline: none;
    border: 3px solid #914f10;
    font-size: 20px;
    padding: 20px 45px 20px 20px;
    border-radius: 5px;
}
    textarea::placeholder{
        color: #000000;
    }



/* Question Title */
.form-title {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333333;
}

.required {
  color: #e53e3e;
}

/* Flexbox wrapper to align them horizontally */
.radio-group {
  display: flex;
  gap: 10px;
}



.form-input label {
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  color: #000000;
  font-family: system-ui, sans-serif;
    }
}
/* Container spacing */
.checkbox-container {
  font-family: system-ui, -apple-system, sans-serif;
  padding: 10px;
}
/* Form Item wrapper - acts like clear:left but with better alignment */
.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;          /* Spacing between the square box and text */
  margin-bottom: 8px; /* Spacing between rows */
  cursor: pointer;
}

/* Style the actual checkbox */
.form-checkbox {
  cursor: pointer;
  accent-color: #3182ce; /* Modern color for the checkmark fill */
  width: 18px;          /* Slightly larger, easier to click */
  height: 18px;
}

/* Style the label text */
.form-checkbox-item label {
display: block;
    font-size: 20px;
    font-family: sans-serif;
    color: #000000;
  cursor: pointer;
  user-select: none;    /* Prevents accidental text highlighting on double click */
  text-align: left;
}
/* Question Header */
.form-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #2d3748;
}

.required {
  color: #e53e3e;
}

/* Main Grid Layout */
.checkbox-container {
  display: grid;
  /* Creates exactly 3 columns of equal width */
  grid-template-columns: repeat(3, 1fr);
  /* Spacing between grid cells: 16px vertical, 24px horizontal */
  gap: 16px 24px;
  margin-top: 16px;
}
.checkbox-container1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    margin-top: 16px;
}

/* Individual Item adjustments */
.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between square checkbox and text */
}

/* Checkbox Style */
.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #3182ce;
  /* Prevents the checkbox square from shrinking if text gets long */
  flex-shrink: 0;
}
.btn{
        width: 100%;
        height: 45px;
        background-color: green;
        color: #fff;
        border: none;
        outline: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 20px;
        color: #000000;
        font-weight: 550;
        transition: all .4s ease-in-out;
    }

    .btn:hover{
        background: #6c757d;
        color: #fff;
    }
.footer {
    display: inline;
    position: absolute;
    left: 0;
    height: 50px;
    width: 100%;
    background: url(../grafics/hgsolid.jpg) repeat left bottom;
    margin-bottom: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 1.8em;
}

.text {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    line-height: 1.4em;
    text-align: center;
        min-height:100%;
        margin-bottom: 40px;
}
.text1 {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    line-height: 1.4em;
    text-align: justify;
        min-height:100%;
        margin-bottom: 40px;
}
nav {
         float: right;
         margin: 60px 100px 0 0;
}

a {
text-decoration: none;
    font-weight: bold;
    color: #800000;
}
a:hover {
      color: #800000;
      text-decoration: none;
}
header {
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
        width: 100%;
        height: 180px;
        top: 0;
        left: 0;
        z-index: 100;
         text-align: center;
}
h1 {
        font-size: 2em;
        color: #000000;
        line-height: 1.15em;
        margin: 20px 0 ;
}
h2 {
    font-family: Monotype Corsiva;
    font-size: 42px;
    line-height: 1.15em;
    margin: 20px 0;
    text-align: center;
}

a:hover#menu-icon {

        background-color: #800000;
        border-radius: 4px 4px 0 0;
}
.footer {
display: inline;
    position: absolute;
    left: 0;
  height:50px;   /* Height of the footer */
     width:100%;
        background: url(../grafics/hgsolid.jpg) repeat left bottom;
  margin-bottom: 20px;
  text-align: center;
  font-size: 12px;
      line-height: 1.8em;
}
/*MEDIA QUERY*/
@media only screen and (max-width: 640px) {
/* Responsive Fix: Switch to a single column on small mobile screens */
  .checkbox-container {
    grid-template-columns: 1fr;
  }
    .checkbox-container1 {
    grid-template-columns: 1fr;
  }
  .radio-group {
      display: grid;
  /* Creates exactly 3 columns of equal width */
  grid-template-columns: repeat(3, 1fr);
  /* Spacing between grid cells: 16px vertical, 24px horizontal */
  gap: 16px 24px;
  margin-top: 16px;
}
.form-input1 {
        position: relative;
        width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
/* Individual layout for each radio option */
.form-input1 {
  display: flex;
  align-items: center;      /* Vertically aligns the circle directly with text label */
}
#logo{
display: block;
margin: 10px 0 0 0;
height: fit-content;
}
#menu-icon {
    display:inline-block;
}
ul#navigation {
       list-style: none;
        background: url(../grafics/hgsolid.jpg);
       opacity:1;
       width: 51%;
       z-index: 9;
       position: absolute;
}
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
    color: #DE7510 !important;
        background: url(../grafics/hgsolid.jpg);
           position: relative;
    margin-left: 30px;
    margin-top: 5px;
}
ul#navigation li a:hover {
        background: url(../grafics/hgsolid.jpg);
    color:#e65100;
    padding-bottom: 2px;
    margin: 10px 1px 2px 1px;
}
/* Responsive adjustment for phone screens */
  .input-container {
    flex-direction: column;  /* Stacks First Name above Last Name on mobile screens */
  }
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}
.flex-container > div {
  width: 100%;
  text-align: center;
  line-height: 1.3;
  font-size: 1em;
}
        .flex-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
      width: 100%;
}
        .flex-container1 > div {
    margin: 5px;
    padding: 2px;
        width: 100%;
    justify-content: center;
    background: url(../grafics/hgsolid.jpg) repeat left bottom;
}
    .flex-container2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-bottom: 12px;
    }
    .flex-container2 > div {
        width: 100%;
        text-align: center;
        line-height: 1.3;
        font-size: 20px;
        margin: 10px;
    }
    .flex-container3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-bottom: 12px;
    }
.flex-container3 > div {
        width: 100%;
        text-align: center;
        line-height: 1.3;
        font-size: 20px;
        margin: 10px;
    }
.title {
         font-family: Monotype Corsiva, cursive;
        font-size: 30px;
        margin: 12px;
        line-height: 1.1em;
        text-align: center;
}
.title1 {
        font-family: Monotype Corsiva;
        font-size: 10px;
        margin-bottom: 15px;
        line-height: 1em;
}
        .title2 {
        font-family: Monotype Corsiva;
    text-align: center;
    font-size: 20px;
    line-height: 1em;
}
.titlequeens1 {
    font-family: "Lucida Handwriting", cursive;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    text-shadow: 0 0 3px #FF0000;
    line-height: 1em;
}

.text {
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.1em;
    margin: 12px;
    text-align: center;
}
        .text1 {
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.1em;
    margin: 12px;
    text-align: justify;
}
    h2 {
        font-family: Monotype Corsiva;
        font-size: 30px;
        line-height: 1.15em;
        margin: 20px 0;
        text-align: center;
    }

.footer {
position: absolute;
background-color: #000000;
text-align: center;
font-size: 12px;
margin: 12px;
padding: 12px;
line-height: 1.1;
width: auto;
}
header {
        display: flex;
        height: 100px;
}
section {
    margin: auto;
    max-width: 1200px;
    position: relative;
    padding: 5px; 15px; 15px;
    line-height: 3em;
    min-height: 100vh;
}
        h1 {
        font-size: 2em;
        color: #000000;
        line-height: 1.15em;
        margin: 5px 0 ;
}
nav {
         float: right;
         margin: 30px 15px 0 0;
}
nav ul, nav:active ul {
       display: none;
       position: absolute;
       border: 2px solid #444;
       padding: 2px;
        background: url(../grafics/hgsolid.jpg);
        right: 20px;
       width: 50%;
}
        nav li {
                text-align: center;
                width: 100%;
                padding: 5px 0;
                margin: 0;
           color: #DE7510 !important;
}
nav:hover ul {
      display: block;
      line-height: 0.9em;
      margin: 0;
        background: url(../grafics/hgsolid.jpg);
              width: 40%;
}

video {
  /* override other styles to make responsive */
  width: 100%!important;
  height: auto!important;
}
.img-fluid {
    max-width: 90%;
margin-left: -10px;
}
}