/* src/styles.scss */
:root {
  --color-primary: #FF6B3D;
  --color-primary-hover: #FF845C;
  --color-accent-1: #FFCF56;
  --color-accent-2: #20B8A6;
  --color-bg-main: #FFF7EE;
  --color-bg-card: #FFFFFF;
  --color-text-dark: #111827;
  --color-text-muted: #6B7280;
  --color-text-medium: #4B5563;
  --color-border: #E5E7EB;
  --color-footer-bg: #1F2933;
  --color-footer-text-light: #CBD5E1;
  --gradient-hero:
    linear-gradient(
      135deg,
      #FFE1C7 0%,
      #FFF7EE 100%);
}
@font-face {
  font-family: "Poppins";
  src: url("./media/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./media/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./media/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--color-bg-main);
  color: var(--color-text-dark);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
}
html {
  overflow-x: clip;
  position: relative;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  transition: padding 0.3s ease, max-width 0.3s ease;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
body.editor-active {
  overflow-x: hidden;
  background-color: #000;
}
.success-animation {
  animation: successPulse 0.8s ease-in-out !important;
}
@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.editor-container {
  transition: all 0.3s ease-out;
}
body {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
  max-width: 100vw;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
