@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:wght@300..700&display=swap");
:root {
  --bg: #0b0b0f;
  --card: #14141a;
  --text: #c1c1c1;
  --muted: #bdbdbd;
  --border: #b8b8b8;
  --accent: #ffffff;
  --inputbg: #464646;
  --stop: 100%;
  --brand: #bb00ff;
  --brand-comp: #DD7400;
  
  --fs-smallest: 0.7rem;
  --fs-small: 0.85rem;
  --fs-reg: 14px;
  --fs-body-large: 16px;
  --fs-h1: clamp(2rem, 2vw, 3.2rem);
  --fs-h2: 45px;
  --fs-h3: clamp(1.1rem, 1.2rem, 1.5rem);
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.brand-comp {
    color: var(--brand-comp);
}



a {
  text-decoration: none;
}

.social-btn {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

textarea {
  resize: vertical;
  overflow: auto;
  padding: 0.5rem;
}

p {
  text-wrap: pretty;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  font-size: var(--fs-reg);
}

.nav-container {
  width: 100%;
  height: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--bg);
  background-color: transparent;
  z-index: 100;
  isolation: isolate;
  mix-blend-mode: screen;
  display: flex;
  align-items: center;

}

nav {
  /*padding-block: 0.5rem;*/
  width: calc(1400px + 3rem);
  
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
    position: relative;
  text-align: center;
  height: 100vh;
  display: grid;
  place-content: center;
  /*margin-top: 4rem;*/
}



.hero-text {
    text-shadow: 3px 3px 12px #000000;
    text-transform: uppercase;
}

.pile {
    display: grid;
    grid-template-areas: 'pile';
    place-items: center;
    
    > * {
        grid-area: 'pile';
    }
}

@keyframes softBounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-10px); }
    60%  { transform: translateY(0); }
    80%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

.prompt {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: softBounce 2s ease-in-out infinite;
    color: white;
    display: inline-block;
}

.bg-env {
  height: 50vh;
  background-image: url("../images/socials.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8);
  /*margin-top: 4rem;*/
}

.hero h1 {
  font-size: var(--fs-h1);
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-family: "Quantico", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
}

.hero img {
  width: clamp(150px, 3rem, 300px);
  mix-blend-mode: screen;
  filter: brightness(1.3);
}

#navlogo {
 display: block;
  width: 3.5rem;
  cursor: pointer;
  mix-blend-mode: screen;
  
}

#nav_logo {
  width: 100%;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.5) contrast(1) saturate(1);
  transition: filter 0.3s ease;
}

#nav_logo:hover {
  filter: brightness(2.3) contrast(1.3) saturate(2);
}


.hero p {
  color: var(--muted);
  max-width: 700px;
  /*margin: 0 auto 24px;*/
  font-size: var(--fs-reg);
  font-weight: 400;
}

.buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  display: inline-block;
  font-family: "Quantico", sans-serif;
}

.btn.primary {
  background: var(--accent);
  color: #000;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.top {
    margin-top: 4rem;
}
.section .text {
  text-align: center;
  margin-bottom: px;
}
.section h1 {
  text-align: center;
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0%, rgba(98, 158, 157, 0) var(--stop));
}

.card h3 {
  font-size: var(--fs-h3);
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}

.card p {
  color: var(--muted);
  font-size: var(--fs-reg);
}

.package-title {
    margin-bottom: 0.5rem;
    /*border-bottom: 1px solid white;*/
}

.package-title h3 {
    line-height: 1;
}

.package-title p {
    font-size: var(--fs-small);
    color: var(--brand);
}

article {
  width: min(95%, 60ch);
  margin-inline: auto;
  text-align: justify;
}

article h3 {
  font-family: "Quantico", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}
article h3 p {
  color: var(--text);
}

article p:not(:last-child) {
  margin-bottom: 0.5rem;
}

article:first-child {
  margin-top: 3.5rem;
}

article:not(:last-child) {
  margin-bottom: 2rem;
}

/* CENTER TEXT SECTION */
.center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.center h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}

.center p {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}

.cta p {
  color: var(--muted);
  margin-bottom: 20px;
}

.socialList {
  max-width: 75%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  align-items: center;
  margin-inline: auto;
  font-size: 2rem;
}

.socialList li {
  width: 3rem;
  transform-origin: center;
}

.fa-whatsapp {
  color: white;
  width: inherit;
  position: relative;
}
.fa-whatsapp::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 80%;
  background: #25D366;
  top: 8%;
  left: 5%;
  z-index: -1;
  border-radius: 2rem 2rem 2rem 0rem;
}

.fa-linkedin {
  color: #0a66c2;
  position: relative;
}
.fa-linkedin::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 80%;
  background: whitesmoke;
  top: 10%;
  left: 5%;
  z-index: -1;
}

.fa-facebook {
  color: #1877F2;
  width: inherit;
  position: relative;
}
.fa-facebook::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  background: white;
  top: 5%;
  left: 3%;
  z-index: -1;
  border-radius: 2rem;
}

.fa-snapchat {
  color: yellow;
}

.fa-reddit {
  color: #FF4500;
  width: inherit;
  position: relative;
}
.fa-reddit::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: whitesmoke;
  top: 5%;
  left: 5%;
  z-index: -1;
  border-radius: 2rem;
}

.fa-youtube {
  color: red;
  position: relative;
}
.fa-youtube::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 50%;
  background: whitesmoke;
  top: 25%;
  left: 5%;
  z-index: -1;
}

.fa-instagram {
  background: radial-gradient(circle at 30% 107%, #FFDC80 0%, #FCAF45 5%, #F77737 45%, #F56040 60%, #E1306C 75%, #C13584 90%, #833AB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fa-soundcloud {
  color: #F37422;
}

.fa-spotify {
  color: #1ED760;
}

.fa-tiktok,
.fa-threads,
.fa-x-twitter {
  color: var(--text);
}

.bullets {
  margin-top: 0.6rem;
}

.bullet {
  display: flex;
  gap: 8px;
}
.bullet .bullet-icon {
  display: grid;
  place-items: center;
  width: 1.5rem;
}
.bullet i {
  color: #bf0fff;
}

ul li {
  line-height: 2;
  list-style: none;
}

form {
  max-width: 60ch;
  margin-inline: auto;
}

fieldset {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  /*gap: 0.5rem;*/
}

legend {
  margin-inline: 1rem;
  padding-inline: 5px;
  font-family: "Quantico", sans-serif;
  text-transform: uppercase;
  color: white;
}

input,
select,
textarea {
  padding: 0.3rem;
  background-color: var(--inputbg);
  color: white;
  border: none;
  border-radius: 5px;
  height: 2rem;
}

footer {
  color: var(--muted);
  display: grid;
  place-items: center;
  border-top: 1px solid var(--inputbg);
  font-size: 0.8rem;
  padding: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

footer .socialList {
  display: flex;
  flex-wrap: wrap;
  max-width: 18rem;
}
footer .socialList li {
  display: grid;
  place-items: center;
  place-content: center;
  width: 1.7rem;
  height: 1.7rem;
}
footer .socialList i {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}




fieldset:not(:last-child) {
  margin-bottom: 1rem;
}

select:not(:last-child) {
  margin-bottom: 0.5rem;
}

input:not(:last-child) {
  margin-bottom: 1rem;
}

input[type=checkbox] {
  accent-color: #bf0fff;
}

input[type=radio] {
  accent-color: #bf0fff;
}

.platform-option {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 10px;
}

.platform-url {
  display: none;
}

.platform-option input[type=checkbox]:checked ~ .platform-url {
  display: inline-block;
}

.stack {
  display: flex;
  flex-direction: column;
  text-justify: left;
  text-align: left;
  justify-content: left;
  width: 100%;
}

textarea {
    width: 100%;
}


.stack input, label {
    width: 100%;
}



.hashtag {
  display: inline-block;
  margin-right: 3px;
  font-size: 0.7rem;
  font-weight: 500;
  background: #FFCB0D;
  color: #000;
  border-radius: 6px;
  padding: 1px 8px;
  text-align: center;
}
.glass {
margin: auto;
  position: relative;
  width: 120px;
  height: 45px;
  border-radius: 10px;
  overflow: hidden;
  border-top: 2px solid #FFFFFFD4;
  border-right: 2px solid #FFFFFFD4;
  border-bottom: 1px solid #FFFFFFD4;
  border-left: 1px solid #FFFFFFD4;
  transition: transform 0.26s ease-in-out;
}

/* ONLY this layer gets displacement */
.glass__surface {
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(4px) saturate(180%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
}

.glass__surface {
  filter: url(#glass-displace);
}

.glass__content {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-weight: 600;

  z-index: 2;
  pointer-events: none;
  transition: all 0.26s ease-in-out;
}

.glass-debug .glass__surface {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.3),
    inset 0 0 20px rgba(255,0,0,0.2),
    inset 0 0 40px rgba(0,255,0,0.15);
}


/* hover */
.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* press state */
.glass:active {
  transform: scale(0.98);
}

.social-tag {
  display: inline-block;
  margin-right: 3px;
  font-size: 0.6rem;
  font-weight: 500;
  background: var(--brand);
  color: #FFF;
  border-radius: 6px;
  padding: 1px 8px;
  text-align: center;
  text-transform: uppercase;
}


/* ANIMATED BACKGROUND*/
#tile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;

    z-index: -1;
    pointer-events: none;
}

#tile canvas {
    position: absolute;
    background: red;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    filter: brightness(0.5);
}

.icon-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background-image: url("../images/ICONTILE.png");
    background-repeat: repeat;
    background-size: 150px 150px;

    pointer-events: none;
}


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