:root {
  --difference: #000000;
  --primary: #000000;
  --secondary: #000000;
  --tertiary: #000000;
  --white: #ededed;
  --black: #2d2d2d;
  --tbg: #d9d9d925;
  --tbg2: #d9d9d945;
  --tbg3: #37373745;
  --input: #ffffff40;
}

@font-face {
  font-family: "Nympha Trial";
  src: url("/assets/fonts/NymphaTrial-Regular.woff2") format("woff2"), /* Modern browsers */
       url("/assets/fonts/NymphaTrial-Regular.woff") format("woff"),   /* Older browsers */
       url("/assets/fonts/NymphaTrial-Regular.ttf") format("truetype"); /* Legacy fallback */
  font-weight: normal;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Bodoni Moda", serif;
}

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Center align content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* CUSTOM BORDER */
.custom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--tertiary);
  width: 100%;
  height: 1px;
}

.hidden {
  display: none;
  transition: all 0.5s ease;
}

.w80 {
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centres the element */
}

.custom-border::before,
.custom-border::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--tertiary);
  border-radius: 50%;
}

.custom-border::before {
  left: 0;
  top: -1.5px;
}

.custom-border::after {
  right: 0;
  top: -1.5px;
}

/* GLOBAL CLASSES */

.fullWidth {
  width: 100%;
}

/* CAHNGE ALL OF CHANGED HERE, USED ELSEWHERE COPIED FROM HERE */
.softShadow {
  box-shadow: 6px 12px 18px -6px rgba(0, 0, 0, 0.3);
}
.italic {
  /* font-style: italic; */
  color: var(--primary);
}

.copy {
  color: var(--black);
}

.content {
  margin: auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow-x: hidden;
  gap: 5%;
  width: 100%;
  padding: 2rem 5%;
  position: relative;
}

@media (max-width: 1000px) {
  .content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.container {
  border: 1px solid var(--tertiary);
  background-color: var(--tbg);
  padding: 1rem;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blankContainer {
  padding: 1rem;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin-block: 4rem;
}
@media (max-width: 1000px) {
  .blankContainer {
    margin-block: 2rem 3rem;
  }
}
@media (max-width: 600px) {
  .blankContainer {
    margin-block: 6rem 3rem;
  }
}
.flexColumn {
  display: flex;
  flex-direction: column;
}

.extraPadding {
  padding: 2rem;
}
.pt1r {
  padding-top: 1rem;
}

.containerTitleBlock {
  position: relative;
  padding: 1rem 2rem;
}

.containerTitle {
  font-style: italic;
  text-align: center;
  color: var(--primary);
  font-weight: 200;
  font-size: 2.25rem;
  letter-spacing: -1px;
}

.cardSpaceBetween {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.secondTitle {
  font-size: 2.75rem;
  line-height: 85%;
  font-weight: 300;
  letter-spacing: -2px;
  text-align: center;
  color: var(--primary);
  font-style: italic;
}

.button {
  font-family: "Poppins";
  background-color: black;
  color: white;
  border: none;
  padding: 10px 3rem;
  font-size: 1.15rem;
  font-weight: 300;
  margin-inline: auto;
  text-decoration: none;
  transition: all 1s ease;
  white-space: nowrap;
}
.button:hover {
  text-decoration: underline;
}

.buttonRowCentered {
  width: min-content;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: auto;
}
.buttonRowBetween {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.remGapHalf {
  gap: 0.5rem;
}
.remGapOne {
  gap: 1rem;
}
.remGapTwo {
  gap: 2rem;
}

/* ACCORDION */
.accordion {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 10px;
  border: 1px solid var(--tertiary);
}
.accordion-header {
  background-color: var(--tbg2);
  color: var(--primary);
  padding: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.accordion-content {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.accordion-content-inner {
  padding: 15px;
}

/* FORM STYLINGS */
.formContent {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: auto;
  width: 85%;
}

label {
  font-family: "Poppins";
  font-size: 1.15rem;
  margin-left: 10px;
  color: var(--primary);
}

input,
textarea {
  background-color: var(--input);
  border: none;
  border-bottom: 1px solid var(--secondary);
  font-size: 1.25rem;
  font-family: "Poppins";
  color: var(--black);
  transition: all 0.75s ease-in;
  padding: 10px;
}
textarea {
  height: 100px;
  overflow: hidden;
}
.inputSmall,
input {
  height: 40px;
}

input:hover,
textarea:hover {
  border-bottom: 1px solid var(--primary2);
}

input:focus,
textarea:focus {
  background-color: var(--tbg);
  border: 1px solid var(--primary2);
  border-bottom: 2px solid var(--primary2);
  text-align: left;
}

.inputDiv {
  display: flex;
  flex-direction: column;
}

select {
  background-color: var(--input);
  border: none;
  border-bottom: 1px solid var(--secondary);
  font-size: 1.25rem;
  font-family: "Poppins";
  color: var(--black);
  transition: all 0.75s ease-in;
  height: 40px;
  width: 100%;
  text-align: center;
}
select:focus {
  background-color: var(--tbg);
  border: 1px solid var(--primary2);
  border-bottom: 2px solid var(--primary2);
}

/* HIGHLIGHT PILLS */
.pill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 1rem 0;
  border: 1px solid var(--tertiary);
}
.pill {
  color: var(--primary);
  box-shadow: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 1s;
  font-size: 1.2rem;
  font-weight: 200;
}
.pill:hover {
  box-shadow: 0 0 8px 0.5px rgba(242, 203, 158, 0.9);
}
.pill.selected {
  background-color: var(--tertiary);
  color: white;
  font-size: 1.3rem;
}

/* RESPONSE */
#response1,
#response2,
#response3,
#response4,
#response5 {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: absolute;
    top: -25px;
    left: 50%;
    translate: -50%;
    white-space: nowrap;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

.info {
    background-color: #d6d6d6;
    color: var(--black);
}


.loading {
  background-color: #a8bbe3;
  color: var(--black);
  position: relative;
}

/* Loading Spinner */
.loading::before {
  content: '';
  position: absolute;
  right: 250px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--tertiary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
      transform: translateY(-50%) rotate(360deg);
    }
}

/* INFINITE CAROUSEL GLOBAL */
.infinite-carousel {
  display: flex;
  gap: 1rem;
  height: 100%;
  overflow: hidden;
  width: max-content;
  max-width: 50%;
  justify-content: center;
  padding: 2rem;
}
.infinite-carousel > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 30%;
  position: relative;
}
@media (max-width: 1000px) {
  .infinite-carousel {
    display: none;
    visibility: hidden;
  }
}
