:root {
  --violet: #8b7db8;
  --navy: #3f4e78;
  --ink: #23242e;
  --rose: #e97fa8;
  --sky: #a8c5e8;
  --off-white: #f8f6fa;
  --butter: #ffd49d;
  --lilac-tint: #c8b8e8;
  --pervinca-light: #d4caf2;
  --radius-pill: 9999px;
  --radius-card: 20px;
  --base-space: 8px;
  --space-2: calc(var(--base-space) * 2);
  --space-3: calc(var(--base-space) * 3);
}

body {
  background-color: var(--off-white);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  padding-top: 88px;
}

h1,
h2,
h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.caption-kawaii {
  font-family: "Gaegu", cursive !important;
  color: var(--navy);
}

.text-violet {
  color: var(--violet) !important;
}

.text-butter {
  color: var(--butter) !important;
}

.font-fredoka {
  font-family: "Fredoka", sans-serif !important;
}

.font-nunito {
  font-family: "Nunito", sans-serif !important;
}

.bg-off-white {
  background-color: var(--off-white) !important;
}

.bg-rose {
  background-color: var(--rose) !important;
}

.bg-sky {
  background-color: var(--sky) !important;
}

.bg-pervinca-light {
  background-color: var(--pervinca-light) !important;
}

.bg-ink {
  background-color: var(--ink) !important;
}

.custom-nav {
  height: 88px;
  background-color: var(--off-white) !important;
  border: none;
}
.custom-nav .nav-link {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: var(--navy) !important;
  transition: color 0.3s ease;
}
.custom-nav .nav-link:hover {
  color: var(--violet) !important;
}

.btn-menu-custom {
  background-color: var(--pervinca-light);
  color: var(--ink);
  border: none;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-menu-custom:hover {
  transform: scale(1.05);
  background-color: var(--navy);
  color: var(--off-white);
}

.offcanvas {
  background-color: var(--violet) !important;
  border-radius: 30px;
  width: 350px !important;
  padding: 20px;
  margin: 20px;
  height: calc(100% - 40px);
  border: none !important;
}
.offcanvas .offcanvas-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
}
.offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
}
.offcanvas .nav-link {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white !important;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.offcanvas .nav-link:hover {
  transform: translateX(10px);
  color: var(--off-white) !important;
}
.offcanvas .nav-item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.offcanvas .nav-item:last-child {
  border-bottom: none;
}

.btn-pill-custom {
  border-radius: var(--radius-pill);
  border: none;
  background-color: var(--off-white) !important;
  color: var(--ink) !important;
  padding: 8px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-pill-custom:hover {
  background-color: var(--navy) !important;
  color: var(--off-white) !important;
  transform: translateY(-2px);
}

.btn-check:checked + .btn-pill-custom {
  background-color: var(--navy) !important;
  color: white !important;
}

.btn-submit {
  background-color: var(--ink);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: opacity 0.2s;
}
.btn-submit:hover {
  opacity: 0.9;
}

.btn-navy-pill {
  background-color: var(--navy) !important;
  color: var(--off-white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 12px 30px;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-navy-pill:hover {
  background-color: var(--violet) !important;
  transform: scale(1.05);
}

.tag-pill {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--navy);
  font-family: "Fredoka", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
}

.bg-sky,
.tag-sky {
  background-color: var(--sky);
}

.bg-rose,
.tag-rose {
  background-color: var(--rose);
}

.bg-butter,
.tag-butter {
  background-color: var(--butter);
}

.tag-white {
  background-color: #ffffff;
}

.divider-container,
.divider-container-flipped {
  width: 100%;
  height: 144px;
  -webkit-mask-image: url(../assets/divider-full.svg);
  mask-image: url(../assets/divider-full.svg);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .divider-container,
  .divider-container-flipped {
    height: 114px;
  }
}

.divider-container {
  margin-top: -72px;
  margin-bottom: -72px;
}

.divider-container-flipped {
  transform: rotate(180deg);
  margin-top: -1px;
  margin-bottom: -72px;
}

.divider-ink img {
  filter: brightness(0.15);
}

.badge-skill,
.badge-creative-skill {
  color: white !important;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: default;
}
.badge-skill:hover,
.badge-creative-skill:hover {
  transform: scale(1.1) rotate(3deg);
  background-color: var(--violet) !important;
}

.badge-skill {
  background-color: var(--navy) !important;
}

.badge-creative-skill {
  background-color: var(--rose) !important;
}

.project-card {
  background-color: var(--off-white);
  border: 1px solid var(--navy);
  border-radius: 30px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-10px);
}
.project-card .project-img-container img {
  width: 100%;
  border: 1px solid rgba(63, 78, 120, 0.1);
}

.cta-box {
  background-color: var(--off-white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 40px 60px;
  margin-top: 80px;
}
.cta-box h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.cta-contact-box {
  background-color: var(--sky);
  border-radius: 40px;
  padding: 110px 40px;
  transition: transform 0.3s ease;
}
.cta-contact-box h2 {
  font-family: "Fredoka", sans-serif;
  color: var(--navy) !important;
  margin: 0;
  transition: transform 0.3s ease;
}
.cta-contact-box:hover h2 {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .cta-contact-box {
    padding: 60px 20px;
  }
  .cta-contact-box h2 {
    font-size: 1.8rem;
  }
}

.custom-accordion .accordion-item {
  border: 2px solid var(--ink) !important;
  border-radius: 20px !important;
  overflow: hidden;
  margin-bottom: 24px;
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background-color: transparent;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.custom-accordion .accordion-button::after {
  background-image: none !important;
  content: "+";
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ink);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-accordion .accordion-content-text {
  text-align: left;
}

.tool-card {
  width: 80px;
  height: 80px;
  background-color: white;
  border: 1px solid rgba(63, 78, 120, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.tool-card:hover {
  transform: translateY(-5px);
}
.tool-card img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-bg {
  background-color: var(--off-white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-title {
  color: var(--navy);
}
.hero-title .text-violet {
  color: var(--violet) !important;
}

p.font-nunito {
  color: var(--ink);
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--violet);
}

#hero {
  min-height: 80vh;
  background-image: url(../assets/pattern.svg);
  background-repeat: repeat;
  background-size: 1200px;
  background-color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .hero-title {
  font-family: "Fredoka", sans-serif !important;
  font-weight: 700;
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--navy);
  line-height: 0.9;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  #hero .hero-title {
    font-size: 4.5rem !important;
    margin-top: 20px;
  }
}
#hero .tagline-gaegu {
  font-family: "Gaegu", cursive !important;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 768px) {
  #hero .tagline-gaegu {
    font-size: 1.4rem !important;
    gap: 1px;
  }
}
@media (max-width: 768px) {
  #hero .dot {
    width: 12px;
    height: 12px;
  }
}

#values {
  background-color: var(--pervinca-light);
  padding-top: 80px;
  padding-bottom: 80px;
}
#values h3 {
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.1;
}
#values p {
  font-size: 1.2rem;
  max-width: 320px;
  margin: 0 auto;
  color: var(--ink);
}
#values .value-illustration {
  max-height: 250px;
  width: auto;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .cta-box {
    padding: 30px;
    text-align: center;
    justify-content: center !important;
  }
}

#services {
  background-color: var(--ink);
  padding-top: 144px;
  padding-bottom: 144px;
}
#services h2.display-3 {
  font-family: "Fredoka", sans-serif !important;
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 10rem) !important;
  color: var(--butter) !important;
  line-height: 1.1;
  margin-bottom: 2rem;
}

#featured-projects .hero-title-projects {
  font-family: "Fredoka", sans-serif !important;
  font-weight: 700;
  font-size: clamp(5rem, 12vw, 10rem) !important;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -2px;
}

.hero-title-about {
  font-family: "Fredoka", sans-serif !important;
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--navy);
  line-height: 0.9;
  margin-bottom: 96px;
}

.about-text {
  font-family: "Nunito", sans-serif !important;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1.5;
  text-align: center;
}
.about-text .fw-bold {
  font-weight: 800 !important;
}
.about-text .text-violet {
  color: var(--violet) !important;
}

#about-details h2 {
  font-size: 2.2rem;
  line-height: 1.2;
}
#about-details p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
}
@media (max-width: 768px) {
  #about-details {
    text-align: center;
  }
}

.photo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--violet);
}
.photo-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .photo-circle {
    width: 200px;
    height: 200px;
    margin-top: 10px;
    margin-bottom: 44px;
  }
}

#skills h2 {
  font-size: clamp(4rem, 8vw, 7rem);
  margin-top: -10px;
}
#skills h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
}
#skills p {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}

#tools h2 {
  line-height: 1;
}
#tools .tool-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}
#tools .tool-slider .tool-track {
  display: flex;
  gap: 40px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-loop 30s linear infinite;
}
#tools .tool-slider .tool-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cv-section {
  background-color: var(--off-white);
  padding-top: 120px !important;
}
.cv-section .profile-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cv-section .profile-img-container .profile-img-cv {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.cv-section .lang-item {
  padding: 8px 0;
  transition: all 0.3s ease;
}
.cv-section .lang-item:hover {
  transform: translateX(10px);
  color: var(--violet);
  font-weight: 700;
}
.cv-section .border-pervinca {
  border-color: var(--pervinca-light) !important;
}
@media (min-width: 992px) {
  .cv-section .border-start-custom {
    border-left: 2px dashed var(--pervinca-light);
  }
}

.contact-section {
  background-color: var(--pervinca-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.contact-section .contact-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}
.contact-section .contact-cat {
  max-width: 350px;
  width: 80%;
  height: auto;
}
.contact-section .contact-form {
  font-family: "Nunito", sans-serif;
}
.contact-section .contact-form .form-label {
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
  display: block;
  margin-bottom: 0;
}
.contact-section .contact-form .custom-input {
  width: 100%;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  transition: all 0.3s ease;
  border-radius: 0;
}
.contact-section .contact-form .custom-input:focus {
  border-bottom-color: var(--ink);
  box-shadow: none;
}
.contact-section .contact-form textarea.custom-input {
  min-height: 40px;
  resize: none;
}/*# sourceMappingURL=style.css.map */