/* Load Fonts */
@font-face {
  font-family: 'Gothic A1';
  src: url("/fonts/GothicA1-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ibarra Real Nova';
  src: url("/fonts/IbarraRealNova-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Castoro";
  src: url("/fonts/Castoro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CF Winterberry Demo";
  src: url("/fonts/CfWinterberryDemoRegular-nAxBg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --input-fill: rgba(217, 217, 217, 1);
  --button-fill: rgba(255, 190, 11, 1);
  --text-and-icon-main: rgba(239, 239, 239, 1);
  --performer: rgba(42, 157, 143, 1);
  --denied: rgba(201, 59, 37, 1);
  --confirmed: rgba(119, 232, 66, 1);
  --waitlisted: rgba(255, 210, 63, 1);
  --background: rgba(39, 9, 12, 1);
  --accent-text: rgba(148, 237, 226, 1);
  --font-family-gothic-a1: 'Gothic A1', sans-serif;
  --font-family-ibarra-real-nova: 'Ibarra Real Nova', sans-serif;
  --font-family-castoro: 'Castoro', serif;
  --font-family-winterberry: 'CF Winterberry Demo', 'Castoro', serif;
}

/*TEXT STYLES*/
/*.title {
  display: flex;
  width: 24.5rem;
  height: 18.75rem;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}*/

#title{
  color: #DC4A0A;
  text-align: center;
  text-shadow: 4px 6px 4px rgba(0, 0, 0, 0.75);
  z-index: 1;
  /*font-family: "CF Winterberry Demo";*/
  font-family: var(--font-family-winterberry);
  font-size: 5.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem;
}

#year{
  color: #DC4A0A;
  text-shadow: 4px 6px 4px rgba(0, 0, 0, 0.75);
  font-family: var(--font-family-castoro);
  font-size: 3rem;
  font-style: normal;
  font-weight: normal;
  line-height: 5rem;
}

.highlight{
  text-shadow: 0px -6px -4px rgba(239, 239, 239, 0.55);
  z-index:2;
}

.label {
  font-family: var(--font-family-gothic-a1);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--text-and-icon-main);
  /*padding-bottom:???;*/
}

.guest-heading {
  font-family: var(--font-family-ibarra-real-nova);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--text-and-icon-main);
  z-index: 2;
  align-self: center;
}

.subheading1 {
  font-family: var(--font-family-ibarra-real-nova);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--text-and-icon-main);

  align-self:stretch;
  width: 14.0625rem; /*change to max-width if issues occur?*/
}

.subheading2 {
  font-family: var(--font-family-ibarra-real-nova);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--text-and-icon-main);

  align-self:stretch;
  width: 14.0625rem; /*change to max-width if issues occur?*/
}

.line{
  padding-top: 0.7813rem;
  border-top: 2px solid var(--text-and-icon-main);
  background-color: var(--background);
}

.blue{
  color:var(--accent-text);
  width: 19.75rem;
  align-self: center;
}

.performer-blue{
  color:var(--performer);
}

/* CSS Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-size: 16px;*/
}

/*.layout1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 100px 85px 100px 85px;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 393px;
  width: 393px;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--background);
}*/

/*LAYOUT STYLES*/
.layout1 {
  display: flex;
  flex-wrap: wrap;
  /*width: 24.5625rem;
  height: 53.25rem;*/
  width:auto;
  min-height:100vh;
  /*flex-grow: 1;*/
  padding: 6.25rem 5.3125rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;

  background-color: var(--background);
}

.layout2 {
  display: flex;
  flex-wrap: wrap;
  /*width: 24.5625rem;
  height: 53.25rem;*/
  width:auto;
  min-height:100vh;
  /*flex-grow: 1;*/
  padding: 6.25rem 5.3125rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;

  background-color: var(--background);
}

  .layout1-denied{
    background-color: var(--denied);
  }

  .layout1-performer{
    background-color: var(--performer);
  }

  .sublayout1 {
    display: flex;
    width:auto;
    padding: 0.5208rem 0rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5625rem;
  }

.venue-info{
  width: 18.5rem;
  display: flex;
  padding-bottom: 4.0625rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.venue-info p{
  color:#FC7515;
  align-self:center;
  text-align:center;
}

.name-form-w-label{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}

.text-box-standard{
  display: flex;
  width: 14.0625rem;
  align-items: center;
  gap: 1.875rem;
}

.name-form{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}

.input-field-1{
  width: 14.0625rem;
  height: 4.6875rem;
}

.input-number{
  display: flex;
  width: 14.0625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}

.enter-number{
  width: 6.25rem;
  height: 4.625rem;
}

.input2{
  width: 6.25rem;
  height: 4.625rem;
  flex-shrink: 0;
}

.name-form-w-heading{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
}

.guest-info-dropdown{
  width: 14.0625rem;
  height: 4.6875rem;
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:space-between;
  flex-shrink: 0;

  border: none;
  border-top: 2px solid var(--text-and-icon-main);
  background-color: var(--background);
}

.radio-form-w-label{
  display: flex;
  width: 14.0625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}

.radio-button{
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  align-self: stretch;
}

.input3{
  width: 1.25rem;
  height: 1.25rem;
}

.confirm-guests{
  display: flex;
  width: 14.0625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}

.confirm-info{
  display: flex;
  width: 18.375rem;
  flex-direction: column;
  align-items: flex-start;
  /*gap: 1.5625rem;*/
  gap: 0.7813rem;
}

.text-box-subheading{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.guest-heading2{
  width: 19.75rem;
  margin-top: -1.5625rem;
  color: var(--background);
  text-align:center;
}

.guest-heading3{
  width: 19.75rem;
  margin-top: -1.5625rem;
  color: var(--text-and-icon-main);
  text-align:center;
}

.button-group{
  display: flex;
  width: 14.0625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
}

/*.top-rectangle{
  position: absolute;
  width: 100vw;
  height: 25%;
  z-index:1;
}*/

.confirmed{
  background-color: var(--confirmed);
}

.waitlisted{
  background-color: var(--waitlisted);
}

.cancelled{
  background-color: var(--denied);
}

/*BASIC COMPONENT STYLES*/
.back-button{
  width: 16.25rem;
  height: 1.375rem;

  position: absolute;
  left: 2.5rem;
  top: 3.125rem;

  display:flex;
  flex-direction: row;

  background-color: var(--background);
  border:none;
}

  .arrow{
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
  }

  .back{
    display: flex;
    width: 11.9375rem;
    height: 1.375rem;
    flex-direction: column;
    justify-content:center;
    align-items:flex-start;
    padding-left: 1.25rem;
    flex-shrink: 0;

    color: var(--button-fill);
  }

.button1{
  width: 14.0625rem;
  height: 3.125rem;
  background-color: var(--button-fill);
  color: var(--background);
  border-radius: 50px;
  border:none;
}

.button2{
  width: 14.0625rem;
  height: 3.125rem;
  background-color: var(--background);
  color: var(--button-fill);
  border-radius: 50px;
  border: 2px solid var(--button-fill);
  background: var(--background);
}

  #cancel-button{
    color:#FC7515;
    border-color:#FC7515;
  }

  #performer-button{
    color: var(--performer);
    border-color: var(--performer);
  }

input{
  width: 14.0625rem;
  height: 3.125rem;
  flex-shrink: 0;

  background: var(--input-fill);
}

.input{
  width: 14.0625rem;
  height: 3.125rem;
  flex-shrink: 0;

  background: var(--input-fill);

  /*input tag defaults*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid /*#ccc*/;
    padding: 4px 8px;
    line-height: 1.5;
    box-sizing: border-box;
    outline: none;
}

/*CONDITIONAL AND/OR DYNAMIC STYLES*/
.empty {
  outline: 5px solid var(--denied);
}

.hide {
  display:flex;
}

@media screen and (max-width: 767px) {
  .layout1{
    box-sizing:border-box;
    flex: 1 1 auto;
    padding: 6.25rem 0rem;
  }

  .layout1 > * { 
    flex: 1 1 auto; 
  }

  .layout1 > .button1 { 
    flex: 0 0 auto; 
  }

  .subheading1 {
    align-self: center;
  }
}