@charset "UTF-8";
/*
0px	      - 		600px:			mobile 		-->   Mobile First Approach (where normal styles apply)
600px 	- 		900px: 			tab-port 	      -->	Tablet Portrait 
900px	      -		1200px:			tab-land	      -->	Tablet Landscape
1200px	-		1800px:			desk		      -->	Desktop 
1800px +							big-desk	      -->	Big Desktop

REMEMBER: 1em = 16px;
$breakpoint argument choices
	- tab-port and >	600 --> 900 	: min-width: 37.5em (600/16)
	- tab-land and >	900 --> 1200	: min-width: 56.25em (900/16)
	- desk and     >	1200 --> 1800	: min-width: 75em (1200/16)
	- big-desk and >  1800 +		: min-width: 112.5em (1800/16)

ORDER: base + typography > general layout + grid > page layout > components

*/
@keyframes flash-pop-fade {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}
@keyframes container-fade {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
  /* Mobile-first base font size */
  font-size: 62.5%; /* Makes 1rem = 10px for easier scaling */
  -webkit-text-size-adjust: 100%; /* Prevents iOS from auto-resizing text */
  -moz-tab-size: 4; /* Sets tab width to 4 spaces in Firefox */
  tab-size: 4; /* Sets tab width to 4 spaces in other browsers */
  scroll-behavior: smooth;
  box-sizing: border-box;
}
@media (min-width: 37.5em) {
  html {
    /* 	11px / 16px *100 = 68.75% */
    font-size: 68.75%;
  }
}
@media (min-width: 56.25em) {
  html {
    /* 	12px / 16px *100 = 75% */
    font-size: 75%;
  }
}
@media (min-width: 75em) {
  html {
    /* 	13px / 16px *100 = 81.25% */
    font-size: 81.25%;
  }
}
@media (min-width: 112.5em) {
  html {
    /* 	14px / 16px *100 = 87.5% */
    font-size: 87.5%;
  }
}

body {
  color: #363535;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f0f0;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button {
  all: unset;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
}

*:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 1px;
  transition: outline 0.2s ease-in-out;
}

.headingH1 {
  font-size: clamp(2.8rem, 7vw, 3rem);
  line-height: 1;
}
.headingH1--auth {
  color: #800020;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
}

.headingH2 {
  color: #066150;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 7vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.headingH2--footerLogo {
  color: #800020;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.8rem, 7vw, 3rem);
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: none;
}

.headingH3 {
  color: #00aec2;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 6vw, 2rem);
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: none;
}

.headingH4 {
  color: #363535;
  font-size: clamp(1.5rem, 4.5vw, 1.7rem);
}

.heroLogo__heroHeading {
  color: #800020;
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.4rem, 11.5vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: none;
}
.heroLogo__heroSubtitle {
  color: #066150;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 7vw, 2.2rem);
  line-height: 1.2;
}

.heroIntro {
  color: #363535;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1px;
}

.paragraph {
  color: #363535;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
}
.paragraph--footerLogo {
  color: #066150;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  line-height: 1.2;
}
.paragraph--authSwitch, .paragraph--switchLink {
  color: #363535;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  line-height: 1.2;
}
.paragraph--switchLink {
  color: #800020;
  text-decoration: 2px solid underline;
  text-underline-offset: 2px;
}
.paragraph--alert {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}
.paragraph--authMessage {
  color: #363535;
  line-height: 1.2;
}
.paragraph--authError {
  color: #990000;
}
.paragraph--authSuccess {
  color: #006600;
}
.paragraph--authInfo {
  color: #004488;
}
.paragraph--passwordError {
  font-size: 1.1rem;
  line-height: 1.1;
  text-align: center;
}

.btn {
  color: #f0f0f0;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 1px;
}
.btn--authStatusLogout {
  color: rgba(54, 53, 53, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.navbar__navbarlink,
.contact__link {
  color: #e99c0d;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  font-weight: 400;
  transition: color 0.3s ease;
}

.input__auth {
  color: #f0f0f0;
}

.designCard__headingH4 {
  color: rgba(128, 0, 32, 0.85);
  font-family: "DM Serif Display", serif;
  font-weight: 700;
  font-style: italic;
}
.designCard__headingH4--step {
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.designCard__headingH4--info {
  color: rgba(6, 97, 80, 0.75);
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  letter-spacing: 1px;
  text-transform: lowercase;
}
.designCard__paragraph {
  font-size: clamp(1.2rem, 4.2vw, 1.4rem);
  letter-spacing: 0px;
  line-height: 1.2;
}

.productCard__heading {
  color: rgba(6, 97, 80, 0.75);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 5.5vw, 2rem);
  font-weight: 400;
  font-style: normal;
}
.productCard__description {
  color: #363535;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
}

.contactUsForm__headingH3, .contactUsForm__headingH4 {
  color: #800020;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 6vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 3px;
  text-shadow: 1px 1px 1px rgba(54, 53, 53, 0.25);
  text-transform: uppercase;
}
.contactUsForm__headingH4 {
  color: rgba(128, 0, 32, 0.85);
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 600;
  text-transform: none;
}
.contactUsForm__input, .contactUsForm__textarea {
  color: rgba(240, 240, 240, 0.85);
}
.contactUsForm__input::placeholder, .contactUsForm__textarea::placeholder {
  color: rgba(240, 240, 240, 0.45);
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 1px;
}

.faqSection {
  color: #363535;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
}
.faqSection__faqSummary {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: left;
}
.faqSection__faqDetailsParagraph {
  color: rgba(0, 95, 238, 0.9);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: left;
}

.flash-message {
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: bold;
}
.flash-message--success {
  color: #006600;
}
.flash-message--error {
  color: #990000;
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 0.5rem;
  background-color: #363535;
  border-top: 2px solid #939291;
  border-left: 2px solid #939291;
  border-bottom: 2px solid #ddd9d7;
  border-right: 2px solid #ddd9d7;
  border-radius: 0.45rem;
  box-shadow: 0px 0px 6px 3px rgba(54, 53, 53, 0.45);
  width: fit-content;
  padding: 0.5em 1.5em 0.35em;
  margin: 0 auto;
  cursor: pointer;
  backface-visibility: hidden;
  transition: all 0.2s;
}
.btn:link, .btn:visited {
  text-decoration: none;
  transform: translateY(0px);
}
.btn:hover {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
}
.btn:active {
  border-bottom: 2px solid #939291;
  border-right: 2px solid #939291;
  box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}
.btn--primary {
  background-color: rgba(128, 0, 32, 0.8);
}
.btn--primary:hover {
  background-color: #800020;
}
.btn--secondary {
  background-color: rgba(0, 174, 194, 0.55);
}
.btn--secondary:hover {
  background-color: #00aec2;
}
.btn--authStatusLogout {
  background-color: transparent;
  margin: 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 1rem;
}
.card--designCard {
  width: clamp(25rem, 90vw, 30rem);
  height: clamp(25rem, 90vw, 30rem);
  perspective: 1000px;
  cursor: pointer;
}

.designCard__inner {
  background: linear-gradient(to bottom right, #f0f0f0 30%, rgba(18, 167, 117, 0.5) 80%, #12a775);
  border: 7px solid #800020;
  border-radius: 100%;
  box-shadow: 0 0 25px 8px rgba(54, 53, 53, 0.25);
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 100%;
}
.designCard--flip:hover .designCard__inner {
  transform: rotateY(180deg);
}
.designCard.is-flipped .designCard__inner {
  transform: rotateY(180deg);
}
.designCard__front, .designCard__back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  backface-visibility: hidden;
  display: flex;
  padding: 2rem;
  text-align: center;
}
.designCard__front {
  background: inherit;
}
.designCard__back {
  background: inherit;
  transform: rotateY(180deg);
}

.productCard {
  position: relative;
  overflow: hidden;
  width: min(100%, 35rem);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 25px 5px rgba(54, 53, 53, 0.25);
  gap: 0;
  /* Heading is positioned absolute, floating at the top */
  /* Metadata bar */
}
.productCard__imgContainer {
  position: relative;
  width: 100%;
  height: 27rem;
  background: linear-gradient(to bottom right, #12a775, #066150);
}
.productCard__image {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 25px 5px rgba(54, 53, 53, 0.45);
  object-fit: contain;
}
.productCard__caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0 0 3rem;
  gap: 2rem;
}
.productCard__heading {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 85%;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 25px 5px rgba(54, 53, 53, 0.45);
  text-align: center;
}
.productCard__legend {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  justify-content: space-around;
  width: 100%;
  padding: 0.5rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #f7f7f7;
  color: #444;
  font-size: 0.875rem;
}
.productCard__description {
  width: 75%;
}
.productCard__button {
  align-self: center;
  margin-top: auto;
}

.contact {
  font-style: normal;
}
.contact__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.contact__item:hover {
  transform: scale(1.05);
}
.contact__item:hover .contact__link {
  color: #ed7f10;
  font-weight: 600;
}
.contact__item:hover .contact__link::after {
  transform: scaleX(1);
  background-color: #ed7f10;
  height: 2px;
}
.contact__item:hover .contact__iconColor {
  fill: rgba(237, 127, 16, 0.85);
}
.contact__icon {
  display: block;
  width: clamp(1.5rem, 3vw, 2rem);
  height: auto;
}
.contact__iconColor {
  fill: rgba(233, 156, 13, 0.85);
  transition: fill 0.3s ease;
}
.contact__link {
  color: #e99c0d;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.contact__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #e99c0d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, background-color 0.3s ease, height 0.2s ease;
}

.contactUsForm {
  background: linear-gradient(to bottom right, #f0f0f0, #ddd9d7 45%);
  border: 1px solid rgba(54, 53, 53, 0.15);
  border-radius: 0.5rem;
  box-shadow: 0 0 24px 4px rgba(54, 53, 53, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(100%, 45rem);
  padding: 3.5rem clamp(2rem, 7vw, 5rem);
  margin-top: 1rem;
}
.contactUsForm__headingH3 {
  margin-bottom: 1rem;
}
.contactUsForm__group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  gap: 0.5rem;
}
.contactUsForm__label {
  margin-left: 1.15rem;
}
.contactUsForm__input, .contactUsForm__textarea {
  background-color: #363535;
  border: 1px solid #ddd9d7;
  border-radius: 0.5rem;
  width: 100%;
  padding: clamp(0.25rem, 3vw, 1rem) 1rem;
}
.contactUsForm__input:focus, .contactUsForm__textarea:focus {
  outline: 2px solid #800020;
  border: 1px solid rgba(147, 146, 145, 0.45);
  box-shadow: 0 0 5px rgba(128, 0, 32, 0.4);
}
.contactUsForm__textarea {
  resize: vertical;
  min-height: 6rem;
}
.contactUsForm__btn {
  margin-top: 2.25rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.contactUsForm__btn:hover, .contactUsForm__btn:focus {
  transform: scale(1.05);
  background: linear-gradient(to bottom right, #800020 10%, #363535);
}

.flash-message {
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(54, 53, 53, 0.15);
  opacity: 0;
  transform: scale(0.95);
  animation: flash-pop-fade 4s ease-in-out forwards;
}
.flash-message--success {
  background-color: #e0ffe0;
  border: 1px solid #00aa00;
}
.flash-message--error {
  background-color: #ffe0e0;
  border: 1px solid #cc0000;
}

.faqSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
  /* ---------- FAQ List ---------- */
  /* ---------- FAQ Item ---------- */
  /* ---------- FAQ Summary ---------- */
  /* ---------- FAQ Symbol (+ / –) ---------- */
  /* ---------- Swap Plus ↔ Minus on Open ---------- */
  /* ---------- FAQ Content (collapsible area) ---------- */
}
.faqSection__faqList {
  list-style: none;
  padding: 0;
  margin: 0;
  width: min(100%, 45rem);
}
.faqSection__faqItem {
  background-color: rgba(147, 146, 145, 0.35);
  border: 1px solid rgba(240, 240, 240, 0.45);
  padding: 0rem;
}
.faqSection__faqItem.faqItem--open {
  /* Open state handled via JS for content and icon swap */
}
.faqSection__faqSummary {
  cursor: pointer;
  position: relative;
  user-select: none;
  padding: 1rem 3rem;
  padding-right: 6rem;
  /* Hover effect only on text */
}
.faqSection__faqSummary:hover .faqSummary__text {
  color: #800020;
}
.faqSection__faqSummary .faqSummary__text {
  display: inline-block;
  transition: color 300ms ease;
  transform-origin: center;
}
.faqSection__faqSummary:hover .faqSection__faqSymbol {
  transform: translateY(-50%) scale(1.2);
}
.faqSection__faqSymbol {
  position: absolute;
  top: 2.6rem;
  right: 2.5rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  transform: translateY(-50%);
  overflow: visible;
  transition: transform 0.5s;
  /* Stack icons on top of each other */
}
.faqSection__faqSymbol svg {
  background: white;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 300ms ease, transform 300ms ease;
}
.faqSection__faqSymbol .faqSection__plusIcon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.faqSection__faqSymbol .faqSection__plusIcon path {
  fill: green;
}
.faqSection__faqSymbol .faqSection__minusIcon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}
.faqSection__faqSymbol .faqSection__minusIcon path {
  fill: red;
}
.faqSection__faqItem.faqItem--open .faqSection__plusIcon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}
.faqSection__faqItem.faqItem--open .faqSection__minusIcon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.faqSection__faqContent {
  overflow: hidden;
  padding: 0rem 3rem;
  height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

.icon__socialMedia {
  border-radius: 1rem;
  box-shadow: 0 0 25px 5px rgba(54, 53, 53, 0.45);
  display: block;
  width: clamp(20rem, 70vw, 25rem);
  height: auto;
  color: #800020;
  transition: transform 0.2s ease, color 0.2s ease;
}
.icon__socialMedia:hover, .icon__socialMedia:focus {
  transform: scale(1.1);
  color: #ed7f10;
}
.icon--designIcon {
  display: block;
  width: 50%;
  height: auto;
  transition: transform 0.2s ease;
}
.icon--designIcon:hover, .icon--designIcon:focus {
  transform: scale(1.1);
}
.icon--youtubeIcon {
  width: clamp(10rem, 12vw, 12rem);
  height: auto;
}

.heroLogo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 0;
}
.heroLogo__logoImage {
  display: block;
  width: min(75%, 18rem);
  height: auto;
  margin-bottom: 0.25rem;
}

.footerLogo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(to bottom right, rgba(221, 217, 215, 0.75), #f0f0f0 45%);
  border-radius: 0.5rem;
  border: 1px solid rgba(54, 53, 53, 0.65);
  box-shadow: 0 0 12px 8px rgba(54, 53, 53, 0.45);
  padding: 2rem;
  transition: transform 0.3s;
}
.footerLogo:hover {
  transform: scale(1.05);
}
.footerLogo__logoImage {
  display: block;
  width: 12rem;
  height: auto;
}

.footer__developerLogo {
  width: clamp(8rem, 13vw, 12rem);
  height: auto;
  margin: 0 auto;
  transition: transform 0.3s;
  transform-origin: left;
}
.footer__developerLogo:hover {
  transform: scale(1.05);
}

.navbar__navbarlist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.navbar__navbaritem {
  width: fit-content;
  transition: transform 0.3s;
}
.navbar__navbaritem:hover {
  transform: scale(1.05);
}
.navbar__navbaritem:hover .navbar__navbarlink {
  color: #ed7f10;
  font-weight: 600;
}
.navbar__navbaritem:hover .navbar__navbarlink::after {
  transform: scaleX(1);
  background-color: #ed7f10;
  height: 2px;
}
.navbar__navbarlink {
  position: relative;
  display: inline-block;
}
.navbar__navbarlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background-color: #e99c0d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, background-color 0.3s ease, height 0.3s ease;
}

.sectionDivider {
  width: 100%;
}
.sectionDivider__bottomPath {
  fill: rgba(128, 0, 32, 0.15);
}
.sectionDivider__middlePath {
  fill: rgba(128, 0, 32, 0.65);
}
.sectionDivider__topPath {
  fill: rgba(128, 0, 32, 0.88);
}

.socialMedia {
  width: 100%;
}
.socialMedia__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  justify-content: space-around;
  width: min(100%, 45rem);
  margin: 0 auto;
}
.socialMedia__icon {
  display: block;
  width: clamp(3.5rem, 13vw, 5rem);
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0 12px 4px rgba(54, 53, 53, 0.45);
  transition: transform 0.3s;
}
.socialMedia__icon:hover {
  transform: scale(1.05);
}
.socialMedia__icon:hover .socialMedia__iconColor {
  fill: rgba(237, 127, 16, 0.85);
}
.socialMedia__iconColor {
  fill: rgba(240, 240, 240, 0.85);
  transition: transform 0.3s;
}

.spinner-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(to bottom right, #363535 20%, rgba(54, 53, 53, 0.9) 60%, rgba(54, 53, 53, 0.85));
  padding: 4rem;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.spinner-overlay.hidden {
  display: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #1d72b8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.authStatus__authStatusContainer {
  border: 1px solid rgba(147, 146, 145, 0.45);
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(221, 217, 215, 0.85), #f0f0f0);
  padding: 1rem 2rem;
  margin-top: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-end;
  gap: 0.75rem;
  position: fixed;
  top: 0;
  right: 1rem;
  z-index: 1000;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 5rem;
  background: linear-gradient(to bottom right, rgba(6, 97, 80, 0.65) 15%, rgba(6, 97, 80, 0.75) 25%, #066150 55%, #12a775);
  padding: clamp(1rem, 8vw, 10vw) 1rem 1rem;
}
.footer__logo {
  padding: 1rem;
}
.footer__nav {
  padding: 1rem;
}
.footer__social {
  padding: 1rem;
}
.footer__contact {
  padding: 1rem;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 0.25rem;
  padding: 1rem;
}
.footer__developer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 0rem;
}
@media (min-width: 450px) {
  .footer__copyrightLineBreak {
    display: none;
  }
  .footer__developer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    gap: 0.5rem;
  }
  .footer__developerLogo {
    margin-bottom: 0.45rem;
  }
}

.header__heroSection {
  padding: 12rem 0 0;
}

.heroSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
  background: linear-gradient(to bottom, transparent 80%, rgba(128, 0, 32, 0.84)), linear-gradient(to bottom, rgba(240, 240, 240, 0.45), rgba(240, 240, 240, 0.7) 75%, rgba(128, 0, 32, 0.8)), url(/img/background/heroBgImage.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.heroSection__contentContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
  width: min(100%, 45rem);
}
.heroSection__ctaContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0.15) 35%, rgba(240, 240, 240, 0.95), #f0f0f0);
  border-radius: 0.5rem;
  box-shadow: 0 0 28px 8px rgba(54, 53, 53, 0.25);
  padding: 3rem 2rem;
  width: min(100%, 45rem);
}
.heroSection__ctaTextLineBreak {
  display: none;
}
.heroSection__ctaButtons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
}
@media (min-width: 400px) {
  .heroSection__ctaTextLineBreak {
    display: block;
  }
}

.main {
  padding: 0 2rem;
}

.designSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
}
.designSection__designProcess {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 5rem;
  padding-top: 3rem;
}
.designSection__designCardContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 5rem;
}
.designSection__designButtonsContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 3rem;
}
.designSection__youtubeLink {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  gap: 0.15rem;
}
.designSection .youtubeLink__text {
  margin-top: 1.45rem;
  width: min(60%, 23rem);
  text-align: left;
  line-height: 1.5;
}

.shopSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
}
.shopSection__productCardsContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 5rem;
  margin-top: 3rem;
}
.shopSection__btnContainer {
  margin-top: 5rem;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #333;
  border-bottom: 1px solid rgba(240, 240, 240, 0.65);
  box-shadow: 0px 8px 12px 8px rgba(54, 53, 53, 0.85);
  height: 7rem;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: opacity 800ms;
  /* Nav items default state (hidden) */
}
.nav__logoContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.nav__logo {
  display: block;
  width: 4rem;
  height: auto;
  transition: width 0.3s;
}
.nav__logo:hover {
  width: 4.5rem;
}
.nav__hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  backface-visibility: hidden;
  transition: gap 0.3s;
}
.nav__hamburger div {
  width: 3rem;
  height: 3px;
  background: #f0f0f0;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
.nav__hamburger--active div:nth-child(1) {
  background: rgba(240, 240, 240, 0.35);
  width: 3.3rem;
  height: 5px;
  transform: translateY(10px) rotate(45deg);
}
.nav__hamburger--active div:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--active div:nth-child(3) {
  background: rgba(240, 240, 240, 0.35);
  width: 3.3rem;
  height: 5px;
  transform: translateY(-8px) rotate(-45deg);
}
.nav__hamburger--activeBar {
  background: #f0f0f0;
}
.nav__hamburger--active:hover div:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.nav__hamburger--active:hover div:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.nav__hamburger:hover {
  gap: 7px;
}
.nav__list {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  background: rgba(54, 53, 53, 0.95);
  border-top: 1px solid rgba(240, 240, 240, 0.65);
  width: 100%;
  height: 95vh;
  padding: 5rem 1rem 0;
  position: fixed;
  top: 6.9rem;
  left: 0;
  visibility: hidden; /* Hide initially */
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}
.nav__list--open {
  display: flex; /* Show on open */
}
.nav__item {
  opacity: 0;
  transform: translateY(20rem);
}
.nav__link {
  display: block;
  width: 10rem;
  height: 3rem;
  transition: all 0.3s ease;
}

@media (min-width: 750px) {
  .nav {
    padding: 0.5rem 2rem;
  }
  .nav__hamburger {
    display: none;
  }
  .nav__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
    gap: 1rem;
    background: transparent;
    border-top: none;
    height: 2rem;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    position: static;
    z-index: 1100;
  }
  .nav__item {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}
.section {
  padding: 3rem 1rem;
  width: 100%;
}

.sidebar {
  padding: 0rem;
}

.contactUsSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
}
.contactUsSection__flashMessageContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 0;
  background: linear-gradient(to bottom right, rgba(54, 53, 53, 0.92) 10%, rgba(54, 53, 53, 0.96), #363535 75%);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  animation: container-fade 5s ease-in-out forwards;
}

.socialMediaSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2rem;
}
.socialMediaSection__platformsContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 5rem;
  padding: 2rem 0;
}
.socialMediaSection__platformSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 2.5rem;
  width: min(100%, 35rem);
}
.socialMediaSection__platformSection .headingH3 {
  margin-bottom: 0.5rem;
}

.auth-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(to bottom right, #066150 10%, rgba(6, 97, 80, 0.9) 45%, rgba(6, 97, 80, 0.45));
  min-height: 100vh;
  padding: 3rem;
}

.auth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 1.65rem;
  background: linear-gradient(to bottom right, rgba(240, 240, 240, 0.95) 5%, rgba(147, 146, 145, 0.95));
  border-radius: 0.5rem;
  box-shadow: 0 0 24px 8px rgba(54, 53, 53, 0.25);
  padding: 3rem;
  width: min(100%, 45rem);
}
.auth__headingH1 {
  margin-bottom: 0.65rem;
}
.auth__authMessageContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  gap: 0.25rem;
}
.auth__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: stretch;
  gap: 0;
  width: min(100%, 35rem);
}
.auth__group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.auth__group:last-of-type {
  margin-bottom: 0;
}
.auth__input {
  background-color: #363535;
  padding: 0.25rem 1rem;
  width: 100%;
}
.auth__passwordError {
  margin-top: 0.5rem;
  min-height: 4.2rem;
  align-self: center;
}
.auth__btn {
  margin-top: 1.5rem;
}

.paragraph--authMessage {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/*# sourceMappingURL=style.css.map */
