@charset "UTF-8";
/* ==========================================================
   GLOBAL CSS ARCHITECTURE
   By: Liuvys Perez
   ========================================================== */
:root {
  /* Colors */
  --color-primary: #cd377f;
  --color-primary-light: #d96aa7;
  --color-accent-bg: #fbcdcd;
  --color-text-main: #1a1a1a;
  --color-text-muted: #666666;
  --color-text-light: #ffffffd9;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-bg-alt: #f2f2f2;
  --color-border-light: #eeeeee;
  --color-border-medium: #dddddd;
  /* Typography */
  --font-serif: "Perpetua-Regular", serif;
  --font-serif-bold: "Perpetua-Titling-Bold", serif;
  --font-sans: "GillSansMT", sans-serif;
  --text-xs: clamp(0.7rem, 0.2vw + 0.65rem, 0.8rem);
  --text-sm: clamp(0.85rem, 0.3vw + 0.75rem, 0.95rem);
  --text-base: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
  --text-lg: clamp(1.15rem, 0.8vw + 1rem, 1.4rem);
  --text-xl: clamp(1.35rem, 1.2vw + 1rem, 1.75rem);
  --text-xxl: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  --text-hero-sm: clamp(1.5rem, 5vw + 1rem, 2.5rem);
  --text-hero-lg: clamp(1rem, 5vw + 2rem, 4.5rem);
  --line-height-relaxed: 1.3;
  --line-height-tight: 0.9;
  /* Spacing */
  --container-width: 100%;
  --spacing-section: clamp(40px, 10vh, 100px);
  --button-padding: 15px 30px;
  /* Borders & Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 30px;
  --radius-full: 50px;
  --radius-circle: 50%;
  --radius-brand: 60px 0;
  /* Transitions */
  --transition-base:
    color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-button:
    transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease,
    color 0.3s ease;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  /* Shadows */
  --shadow-primary: 0 8px 20px
    color-mix(in srgb, var(--color-primary) 35%, transparent);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-interactive: 0 2px 4px rgba(0, 0, 0, 0.15);
  --shadow-pink: 0 8px 20px rgba(205, 55, 127, 0.35);
  --shadow-pink-hover: 0 12px 28px rgba(205, 55, 127, 0.45);
  --shadow-text: 0 4px 10px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 30px 60px rgba(0, 0, 0, 0.2);
  /* Hover Effects */
  --hover-effect: translateY(-3px);
}

/* ==========================================================
   FONTS
   ========================================================== */
/* Perpetua Regular */
@font-face {
  font-family: "Perpetua-Regular";
  src: url("../fonts/Perpetua-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Perpetua Titling Bold */
@font-face {
  font-family: "Perpetua-Titling-Bold";
  src: url("../fonts/Perpetua-Titling-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Gill Sans MT */
@font-face {
  font-family: "GillSansMT";
  src: url("../fonts/gillsansmt.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-alt) 100%);
  overflow-x: hidden;
}



input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-tight);
}

h1, h2, h3, h4, h5, h6,
p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.fa-solid, .fas,
.fa-solid, .fas,
.fa-regular, .far {
  color: var(--color-primary);
}

/* ==========================================================
   BUTTONS
   ========================================================== */
/* Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  margin: 0;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-button);
  gap: 20px;
}

/* Primary */
.btn-primary, .btn-thirdary {
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary));
  color: var(--color-white);
  box-shadow: var(--shadow-pink);
  border: none;
}

.btn-primary:hover, .btn-thirdary:hover {
  transform: var(--hover-effect);
  box-shadow: var(--shadow-pink-hover);
}

/* Secondary */
.btn-secondary {
  border: 1px solid currentColor;
  color: var(--color-white);
  background: transparent;
}

.btn-thirdary {
  border: 1px solid currentColor;
  color: var(--color-primary);
  background: transparent;
}

.btn-thirdary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-interactive);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-interactive);
}

/* Secondary Button (Arrow) Icon */
.btn-secondary i {
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}