@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&family=Kanit:wght@300;400;500;600&display=swap");


:root {
  --color-body: #8b4c5c;            /* Deep rose for body text */
  --color-heading: #black;         /* White for headings */
  --color-base: #f9d4dd;            /* Very light blush pink for elements */
  --color-base2: #f2aebc;           /* Soft light pink background */
  --color-brand: #ff4d97;           /* Accent pink */
  --color-brand2: #d63384;          /* Darker pink for hover effect */
  --sidbar-width: 240px;
  --font-base: "Kanit";
}
body {
  background-color: var(--color-base2);
  color: var(--color-body);
  font-family: var(--font-base);
}

.card .img {
  overflow: hidden;
}

.card .img img {
  transition: all 0.5s ease;
}
.card:hover .img img {
  transform: scale(1.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--color-body);
  transition: all 0.4s ease;
}

a:hover {
  color: var(--color-brand);
}

img {
  width: 100%;
}

.navbar .nav-link {
  font-weight: 700 !important;
  text-transform: uppercase;
  color: white;
}
.navbar .nav-link:hover {
  color: var(--color-brand);
}

@media (min-width: 992px) {
  .navbar {
    min-height: 100vh !important;
    max-width: var(--sidbar-width) !important;

  }

  .navbar-brand img {
    border: 5px solid var(--color-brand);
  }

  #content-wrapper {
    margin-left: var(--sidbar-width);
  }
}
/* new added here */
#stickyNote {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffe0f0;
  color: #4a0d2b;
  padding: 1rem;
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 1000;
  cursor: move;
  display: none; /* hidden by default */
  transition: opacity 0.3s ease;
}

#stickyNote.show {
  display: block;
  animation: fadeIn 0.6s ease-in;
}

.pin-icon {
  position: absolute;
  top: -12px;
  left: -12px;
  font-size: 20px;
  background: #ff80b5;
  color: white;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#tsparticles {
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.skills-list {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: left;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 40px;
}

.skills-list li {
  background-color: #ffeef5;
  color: #5b2b4f;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 192, 203, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
  cursor: default;
}

.skills-list li:hover {
  background-color: #fff0f7;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.3);
}

/* here */
#pet-container {
  justify-content: center;
  gap: 20px;
  size: 90;
}

#pet-avatar {
  transition: all 0.3s ease-in-out;
}

#water-btn {
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: #f2aebc;
  background-color: #f2aebc;


}

#water-btn:hover {
  background-color: #fce4ec;
  color: #f2aebc;
}
#grass-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 10px;
  background: radial-gradient(ellipse at center, #6dbf47 0%, #3c8c30 100%);
  opacity: 0.7;
  border-radius: 50%;
  z-index: -1; /* shadow neeche dikhe */
}
/* till here */
.social-icons a:hover {
  transform: scale(1.2);
  color: #0077b5; /* Optional: change color on hover */
}
 
.text-brand {
  color: var(--color-brand);
}

.full-hight {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.355);
}

.bg-base {
  background-color: var(--color-base);
}

.shadow-effect {
  transition: all 0.5s ease;
}

.shadow-effect:hover {
  box-shadow: -6px 6px 0 0 var(--color-brand);
}

.navbar .nav-link.active {
  color: var(--color-brand);
}

.iconbox {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background-color: var(--color-brand);
  color: var(--color-base);
}

/* BTN */
.btn {
  padding: 12px 28px;
  font-weight: 700 !important;
    border-radius: 20px;
}

.stars {
  color: var(--color-brand2);
}

.btn-brand {
  border: 2px solid var(--color-base2);
  background-color: var(--color-base2);
  border: 2px solid var(--color-base2);
}

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

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--color-base);
  border: 2px solid var(--color-brand2);
  color: var(--color-brand2);
}
/* //BTN */

.custom-link {
  font-weight: 700;
  position: relative;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-brand);
  position: absolute;
  left: 0;
  top: 110%;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.custom-link:hover::after {
  width: 100%;
}

.navbar {
  background-color: var(--color-base);
}

#contact .form-control {
  background-color: var(--color-base);
  color: var(--color-body);
  border-color: var(--color-base);
}

#contact .form-control:focus {
  border-color: var(--color-brand);
  box-shadow: none;
}

#contact .form-control::placeholder {
  color: var(--color-body);
}

#contact input.form-control {
  height: 42px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: var(--color-base);
  color: var(--color-brand);
  font-size: 24px;
}
.profilepic {
  width: 180px;
  height: 180px;
  
}

@media (max-width: 422px) {
  .num {
    padding-top: 2rem;
    display: block;
  }
}
.small-card {
  font-size: 0.85rem;
}

.small-card .iconbox i {
  font-size: 1.4rem;
}

.custom-link.small {
  font-size: 0.8rem;
}

/* newly added here */

.custom-badge {
  background-color: #f8bbd0;
  color: #880e4f;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.project-card {
  display: flex;
  flex-direction: column;
  width: 320px;
  background: #fff0f7;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #e91e63;
}

.project-content p {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.lang-badges {
  margin-bottom: 10px;
}

.lang-badges span {
  display: inline-block;
  background: #fce4ec;
  color: #880e4f;
  padding: 4px 8px;
  margin: 2px;
  border-radius: 8px;
  font-size: 0.8em;
  font-weight: bold;
}

.project-buttons a {
  text-decoration: none;
  color: #fff;
  background: #ec407a;
  padding: 8px 12px;
  margin-right: 10px;
  border-radius: 8px;
  font-size: 0.9em;
  transition: background 0.3s;
}

.project-buttons a:hover {
  background: #d81b60;
}
