﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


:root {
    
  --first-color:  #e365b1f9;
  --first-color-dark: #C1576A;
  --garden-bg: #fff0f1;
  --garden-dark: #333333;
  --white-color: #FCF8F8;
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 3.5rem;
  --normal-font-size: 1rem;
  --rounded: 40px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}



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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--garden-bg);
  color: var(--garden-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.about-garden {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}

.garden-header {
  font-size: var(--big-font-size);
  line-height: 1;
  margin-bottom: 60px;
}

.garden-header span {
  font-weight: 300;
}

.garden-icon {
  font-size: 0.8em;
  vertical-align: super;
  margin-left: 10px;
  color: var(--first-color);
}

.garden-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.profile-col {
  flex: 0 0 400px;
}

.profile-img {
  width: 100%;
  border-radius: var(--rounded);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.text-col {
  flex: 1;
}

.garden-paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 300;
}

.bold {
  font-weight: 700;
}

.highlight {
  font-weight: 700;
  color: var(--garden-dark);
}

.highlight.pink {
  color: var(--first-color);
}

.inline-asset {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
 /* border-radius: 100px; */
  object-fit: cover;
}

.pill {
  width: 80px;
 /* height: 45px; */
}

.squiggle {
  width: 120px;
 /* height: 60px; */
  vertical-align: bottom;
  /* object-fit: cover; */
}

.video {
  width: 100px;
  height: 60px;
 
  border-radius: 20px;
}

.val-prag {
  background: radial-gradient(circle, #f096cb, #fb8bd0);
  color: #fff;
  width: min(1100px, 80%);
  margin: 0 auto 60px auto;
  padding: 4rem 3rem;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.val-prag h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #1f1f1f;
}

.val-prag p {
  font-size: 1.8rem;
  line-height: 1.8;
}

.hobbies-title {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.hobbies-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
  margin-bottom: 5rem;
}

.hobbies-text {
  text-align: center;
  max-width: 900px;
  font-family: var(--body-font);
  font-size: 2rem;
  line-height: 2.2;
  color: #2d3436;
}

.hobbies-text .hobby {
  position: relative;
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
  padding: 0 4px;
  margin: 0 2px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.diy {
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
  border-radius: 8px;
}

.drawing {
  color: #4834d4;
  text-decoration: underline wavy #4834d4;
}

.kdrama {
  color: #f9ca24;
  border-bottom: 3px dotted #f9ca24;
}

.mapping {
  color: #6ab04c;
  background-color: rgba(106, 176, 76, 0.1);
  border-radius: 4px;
}

.hover-media {
  display: none;
}

.hobby:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 100;
}

.hobby:hover .hover-media {
  display: block;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.intro-icon {
  display: inline-block;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.kdrama .hover-media {
  width: 200px;
  border: 3px solid #f9ca24;
}

.drawing .hover-media {
  width: 130px;
  bottom: 110%;
}

@media (max-width: 900px) {
  .about-garden {
    padding: 60px 5%;
  }
  .garden-header {
    font-size: 2.8rem;
    text-align: center;
  }
  .garden-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .profile-col {
    flex: 0 0 auto;
    width: 300px;
  }
  .garden-paragraph {
    font-size: 1.4rem;
    text-align: center;
  }
  .val-prag {
    width: 100%;
    padding: 3rem 2rem;
  }
  .hobbies-container {
    padding: 30px 2rem;
  }
  .hobbies-text {
    font-size: 1.5rem;
    line-height: 2.4;
  }
}

/* Stronger mobile scaling */
@media (max-width: 600px) {

  /* GENERAL SPACING */
  .about-garden {
    padding: 40px 1.5rem;
    margin-top: 2rem;
  }

  /* HEADER: "A little info about me" */
  .garden-header {
    font-size: 1.9rem;
    margin-bottom: 30px;
    line-height: 1.2;
  }

  /* IMAGE */
  .profile-col {
    width: 220px;
  }

  .profile-img {
    border-radius: 25px;
  }

  /* PARAGRAPH UNDER ABOUT ME */
  .garden-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
  }

  /* INLINE ASSETS (bulb, squiggle, video) */
  .pill {
    width: 45px;
    margin: 0 5px;
  }

  .squiggle {
    width: 70px;
  }

  .video {
    width: 70px;
    height: 40px;
  }

  /* MY VALUES SECTION */
  .val-prag {
    padding: 2rem 1.5rem;
    border-radius: 25px;
  }

  .val-prag h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .val-prag p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* HOBBIES SECTION */
  .hobbies-title {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .hobbies-text {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 0 1rem;
  }

  /* Reduce hover media size on mobile */
  .hover-media {
    width: 120px !important;
  }
}

