/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  background-color: #e1c29d;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

:root {
  --site-width: 1200px;
  --title-font: "Sedan SC", serif;
  --heading-font: "Caprasimo", serif;
  --text-font: "Indie Flower", cursive;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
}
/*
section, header {
  padding: 4rem 2rem;
  max-width: var(--site-width);
  margin: 0 auto;
}
*/
section .content-wrapper, header .content-wrapper {
  padding: 4rem 2rem;
  max-width: var(--site-width);
  margin: 0 auto;
}
.hero {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(300deg, hsl(18deg 90% 65%) 0%, hsl(2deg 96% 72%) 20%, hsl(345deg 91% 69%) 35%, hsl(329deg 75% 66%) 48%, hsl(312deg 56% 65%) 60%, hsl(282deg 55% 67%) 71%, hsl(250deg 69% 76%) 82%, hsl(225deg 79% 79%) 91%, hsl(212deg 74% 82%) 100%);
  color: white;
}
h1 {
    font-size: clamp(2rem, 5vw, 6rem);
    line-height: 1.2em;
    margin: 2rem 0px;
    filter: drop-shadow(1px 2px 4px hsl(220deg 60% 50%));
}
h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
}
.pricing h3 {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  text-align: center;
}
.hero h2 {
  font-family: var(--title-font);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2em;
  z-index: 1;
  padding: 2rem 2rem 3rem 2rem;
  position: relative;
  display: inline-block;
}
#company-1 {
  font-family: var(--title-font);
  font-weight: 100;
}
#company-2 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;

}
/* Add Title Animation */

.paint-reveal-1 {
  color: transparent;
  background: linear-gradient(90deg, white 50%, transparent 50%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100% 0;
  animation: paintStroke 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/*
.paint-reveal-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translateY(-50%) scaleX(0);
  animation: brushGlow 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
*/
@keyframes paintStroke {
  to {
    background-position: 0% 0;
    color: white;
  }
}

@keyframes brushGlow {
  50% {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scaleX(1);
    opacity: 0;
  }
}

/* End Title Animation */

/* TEST ANIMATION */
.paint-reveal-2 {
  color: white;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: brushReveal 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes brushReveal {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* Add roughness with filter */
.paint-reveal-2::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  opacity: 0;
  filter: blur(2px);
  animation: brushBlur 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes brushBlur {
  50% {
    opacity: 0.3;
    filter: blur(1px);
  }
  100% {
    opacity: 0;
  }
}

/* End TEST ANIMATION */


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.pricing .card {
  position: relative;
}
.price {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
  margin: 1rem 0;
}
/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: red;
}
.ribbon {
  --f: .5em; /* control the folded part */
  
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(
    100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
  transform-origin: 0% 100%;
  background-color: #BD1550; /* the main color  */
}
.notice {
  font-style: italic;
  text-align: center;
}
.card ul {
  width: 80%;
  margin: 0px auto;
}
ul {
  list-style: none;
}
li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
button {
  padding: 1rem 2rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
}
button:hover {
  background: #f7835c;
}
button a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.carousel-container {
  position: relative;
  max-width: 100%;
}
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar {
  height: 8px;
}
.carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.carousel::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.carousel .card {
  min-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  height: fit-content;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1em;
  cursor: pointer;
  z-index: 1;
  width: 1em;
  height: 1em;
  padding: 0px;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
.gradient {
  background-image: linear-gradient(180deg, hsl(18deg 90% 65%) 0%, hsl(2deg 96% 72%) 13%, hsl(345deg 91% 69%) 25%, hsl(329deg 75% 66%) 37%, hsl(312deg 56% 65%) 50%, hsl(282deg 55% 67%) 63%, hsl(250deg 69% 76%) 75%, hsl(225deg 79% 79%) 87%, hsl(212deg 74% 82%) 100%);
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

