@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
/* Base Styles */
:root {
  --yellow-note: #fff9b1;
  --paper-color: #f9f9f9;
  --desk-color: #ffffff;
  --text-color: #333;
  --shadow-color: rgba(0, 0, 0, 0.15);
  --pin-color: #fd6b0b;
  --tape-color: rgba(255, 255, 255, 0.6);
  --accent-color: #fd6b0b;
  --secondary-accent: #4caf50;
  --grid-color: rgba(0, 0, 100, 0.1);
  --grid-size: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #f0f0f0;
  color: var(--text-color);
  line-height: 1.6;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

p {
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  font-size: 1.1rem;
}

/* Graph Paper Background */
.desk-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: var(--desk-color);
  background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
    linear-gradient(var(--grid-color) 0.5px, transparent 0.5px),
    linear-gradient(90deg, var(--grid-color) 0.5px, transparent 0.5px);
  background-size: var(--grid-size) var(--grid-size),
    var(--grid-size) var(--grid-size),
    calc(var(--grid-size) / 4) calc(var(--grid-size) / 4),
    calc(var(--grid-size) / 4) calc(var(--grid-size) / 4);
  min-height: 100vh;
  overflow: hidden;
}

/* Desk Content */
.desk-content {
  position: relative;
  padding: 20px;
  z-index: 1;
}

/* Kitchen Utensils Decoration */
.kitchen-decorations {
  position: absolute;
  top: 50px;
  right: 5%;
  z-index: 0;
  display: none;
  flex-direction: column;
  gap: 20px;
}

.utensil {
  position: relative;
  transform-origin: bottom center;
  filter: url(#pencil-filter);
}

.fork {
  width: 15px;
  height: 200px;
  background: linear-gradient(
    to bottom,
    #d3d3d3 0%,
    #d3d3d3 20%,
    #a9a9a9 20%,
    #a9a9a9 100%
  );
  position: relative;
  transform: rotate(15deg);
}

.fork:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -10px;
  width: 35px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 33%,
    #d3d3d3 33%,
    #d3d3d3 66%,
    transparent 66%,
    transparent 100%
  );
  background-size: 100% 15px;
  background-repeat: no-repeat;
}

.knife {
  width: 15px;
  height: 220px;
  background: linear-gradient(
    to bottom,
    #d3d3d3 0%,
    #d3d3d3 20%,
    #a9a9a9 20%,
    #a9a9a9 100%
  );
  position: relative;
  transform: rotate(-10deg);
}

.knife:before {
  content: "";
  position: absolute;
  top: -40px;
  left: -5px;
  width: 25px;
  height: 40px;
  background: #d3d3d3;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.spoon {
  width: 15px;
  height: 180px;
  background: linear-gradient(
    to bottom,
    #d3d3d3 0%,
    #d3d3d3 20%,
    #a9a9a9 20%,
    #a9a9a9 100%
  );
  position: relative;
  transform: rotate(5deg);
}

.spoon:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -10px;
  width: 35px;
  height: 30px;
  background: #d3d3d3;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Hand-drawn Icons */
.hand-drawn-icon {
  position: relative;
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* filter: url(#pencil-filter); */
}

.hand-drawn-icon.fa-heart:before {
  content: "\f004";
}

.hand-drawn-icon.fa-seedling:before {
  content: "\f4d8";
}

.hand-drawn-icon.fa-users:before {
  content: "\f0c0";
}

.hand-drawn-icon.fa-glass-cheers:before {
  content: "\f79f";
}

.hand-drawn-icon.fa-birthday-cake:before {
  content: "\f1fd";
}

.hand-drawn-icon.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.hand-drawn-icon.fa-carrot:before {
  content: "\f787";
}

.hand-drawn-icon.fa-utensils:before {
  content: "\f2e7";
}

.hand-drawn-icon.fa-fish:before {
  content: "\f578";
}

.hand-drawn-icon.fa-quote-left:before {
  content: "\f10d";
}

.hand-drawn-icon.fa-map-marker-alt:before {
  content: "\f3c5";
}

.hand-drawn-icon.fa-phone:before {
  content: "\f095";
}

.hand-drawn-icon.fa-envelope:before {
  content: "\f0e0";
}

.hand-drawn-icon.fa-clock:before {
  content: "\f017";
}

.hand-drawn-icon.fa-facebook-f:before {
  content: "\f39e";
}

.hand-drawn-icon.fa-instagram:before {
  content: "\f16d";
}

.hand-drawn-icon.fa-twitter:before {
  content: "\f099";
}

.hand-drawn-icon.fa-pinterest:before {
  content: "\f0d2";
}

/* SVG Filter for Pencil Effect */
body:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
}

body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
}

body:before {
  content: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1'><filter id='pencil-filter'><feTurbulence type='fractalNoise' baseFrequency='0.01' numOctaves='3' result='noise'/><feDisplacementMap in='SourceGraphic' in2='noise' scale='2' xChannelSelector='R' yChannelSelector='G' result='wavy'/><feMorphology operator='dilate' radius='1' result='dilate'/><feMorphology in='dilate' operator='erode' radius='1.2' result='erode'/><feComposite in='wavy' in2='erode' operator='in'/></filter></svg>");
}

/* Navigation */
.navbar {
  padding: 15px 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 6px var(--shadow-color);
  margin-bottom: 30px;
}

.navbar-brand {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  padding: 0;
  margin: 0;
  height: fit-content;
}
.navbar-brand i {
  color: var(--accent-color);
  margin-right: 5px;
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  color: var(--text-color);
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s;
  font-size: 1.2rem;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover:after {
  width: 100%;
}

/* Header Section */
header {
  padding: 60px 30px;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-sticky-note {
  background-color: var(--yellow-note);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  box-shadow: 5px 5px 15px var(--shadow-color);
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.main-sticky-note:hover {
  transform: rotate(0deg) scale(1.02);
}

.main-title {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.lead {
  max-width: 500px;
  margin: 0 auto 20px;
  font-size: 1.3rem;
}

.pin {
  width: 20px;
  height: 20px;
  background-color: var(--bs-black);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Call to Action Buttons */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white;
}

.cta-button:hover:before {
  left: 100%;
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px dashed var(--accent-color);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.cta-button-secondary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-cta {
  border-color: var(--secondary-accent);
  color: var(--secondary-accent);
}

.menu-cta:hover {
  background-color: var(--secondary-accent);
}

/* Section Styles */
.section {
  padding: 80px 30px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  display: inline-block;
  /* background-color: white; */
  padding: 0 20px;
  position: relative;
  z-index: 2;
  color: var(--accent-color);
}

.pencil-line {
  height: 2px;
  background-color: #333;
  width: 80%;
  max-width: 500px;
  margin: -20px auto 0;
  position: relative;
  z-index: 1;
}

/* Sticky Notes - All Yellow */
.sticky-note,
.service-note,
.menu-note,
.testimonial-note {
  background-color: var(--yellow-note);
  padding: 25px;
  height: 100%;
  position: relative;
  box-shadow: 5px 5px 15px var(--shadow-color);
  transition: all 0.3s;
}

.sticky-note:hover,
.testimonial-note:hover {
  transform: translateY(-10px) rotate(0deg);
}

.service-note:hover,
.menu-note:hover {
  transform: translateY(-10px);
}

.sticky-note h3,
.service-note h3,
.menu-note h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: var(--accent-color);
}

.sticky-note,
.testimonial-note {
  transform: rotate(-2deg);
}

.chef-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.sticky-note:hover .chef-icon {
  transform: scale(1.2);
  color: var(--accent-color);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--bs-black);
  margin-bottom: 15px;
  transition: all 0.5s;
}

.service-note:hover .service-icon {
  transform: rotate(360deg);
}

.tape {
  width: 80px;
  height: 30px;
  background-color: var(--tape-color);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.view-more-btn {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  text-decoration: none;
  color: var(--text-color);
}

.view-more-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: scale(1.05);
}

/* Menu Notes */
.menu-content {
  padding: 25px;
  position: relative;
}

.menu-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 3px 10px;
  font-size: 0.9rem;
  border-radius: 15px;
  margin-bottom: 10px;
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
}

.menu-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-accent);
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
}

.menu-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.menu-note:hover .menu-icon {
  transform: scale(1.2);
  color: var(--accent-color);
}

/* Testimonial Notes */
.quote-icon {
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.testimonial-author {
  text-align: right;
  font-weight: bold;
  margin-top: 15px;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
}

/* Contact Form */
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-list li i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.3rem;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 5px 5px 15px var(--shadow-color);
  position: relative;
}

.form-control {
  border: 1px dashed #ccc;
  border-radius: 5px;
  padding: 12px;
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  background-color: white;
}

.submit-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background-color: #b71c1c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.submit-btn:hover:after {
  width: 300px;
  height: 300px;
}

.paperclip {
  width: 30px;
  height: 60px;
  border: 4px solid #999;
  border-radius: 15px 15px 0 0;
  position: absolute;
  top: -20px;
  right: 30px;
  transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
}

/* Footer */
footer {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 -4px 6px var(--shadow-color);
  font-family: "Patrick Hand", "Comic Sans MS", sans-serif;
}

.social-icons {
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--text-color);
  color: white;
  font-family: "FontAwesome";
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
  background-color: var(--accent-color);
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--text-color);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px var(--shadow-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-5px);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes utensilMove {
  0% {
    transform: rotate(var(--rotation-start));
  }
  50% {
    transform: rotate(calc(var(--rotation-start) + 5deg)) translateX(5px);
  }
  100% {
    transform: rotate(var(--rotation-start));
  }
}

@keyframes cooking {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-3deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.main-sticky-note {
  animation: float 6s ease-in-out infinite;
}

.fork {
  --rotation-start: 15deg;
  animation: utensilMove 7s ease-in-out infinite;
}

.knife {
  --rotation-start: -10deg;
  animation: utensilMove 9s ease-in-out infinite;
}

.spoon {
  --rotation-start: 5deg;
  animation: utensilMove 8s ease-in-out infinite;
}

.service-note:hover {
  animation: cooking 1s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .main-title {
    font-size: 3rem;
  }

  .kitchen-decorations {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 767.98px) {
  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .main-sticky-note {
    padding: 30px;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .sticky-note,
  .service-note,
  .menu-note,
  .testimonial-note,
  .form-container {
    margin-bottom: 30px;
  }
}
.chef-character {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.logo-img {
  width: 150px;
  height: 100px;
  object-fit: contain;
}

.navbar-brand:hover .chef-character {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 575.98px) {
  .brand-container {
    gap: 10px;
  }

  .logo-img {
    width: 100px;
    height: auto;
  }

  .chef-character {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .desk-content {
    padding: 10px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 10px 15px;
  }

  .section {
    padding: 40px 15px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .pencil-line {
    width: 90%;
  }

  .cta-button,
  .cta-button-secondary {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
/* Client Section Styles */
.clients-note {
  background-color: var(--bs-body-bg);
  padding: 40px;
  position: relative;
  box-shadow: 5px 5px 15px var(--shadow-color);
  margin-bottom: 30px;
  /* transform: rotate(-1deg); */
  transition: all 0.3s ease;
}

.clients-note:hover {
  transform: rotate(0deg) scale(1.01);
}

.client-carousel-container {
  padding: 20px 0;
}

.client-item {
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-logo {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  /* filter: grayscale(30%); */
  opacity: 0.9;
  transition: all 0.5s ease;
}

.client-item:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-description {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

/* Custom navigation buttons for client carousel */
.client-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1) !important;
  color: var(--text-color) !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  transition: all 0.3s ease;
}

.client-carousel .owl-nav button:hover {
  background: var(--accent-color) !important;
  color: white !important;
}

.client-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.client-carousel .owl-nav button.owl-next {
  right: -20px;
}

.client-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.client-carousel .owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background: rgba(0, 0, 0, 0.2) !important;
}

.client-carousel .owl-dots button.owl-dot.active {
  background: var(--accent-color) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .clients-note {
    padding: 30px 20px;
  }

  .client-logo {
    height: 80px;
  }

  .client-carousel .owl-nav button {
    width: 30px;
    height: 30px;
  }
}
/* Social Media Sidebar */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-sticky-note {
  background-color: var(--yellow-note);
  padding: 15px 10px;
  border-radius: 0 10px 10px 0;
  box-shadow: 3px 3px 10px var(--shadow-color);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  transform: translateX(-5px);
  transition: transform 0.3s ease;
}

.social-sticky-note:hover {
  transform: translateX(0);
}

.social-sticky-note .pin {
  width: 15px;
  height: 15px;
  background-color: var(--pin-color);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: -5px;
  left: auto;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  display: none;
}

.social-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.social-sidebar-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  top: -50%;
  left: -50%;
  transition: all 0.5s ease;
}

.social-sidebar-icon:hover {
  transform: scale(1.1) rotate(5deg);
  color: white;
  background-color: var(--accent-color);
}

.social-sidebar-icon:hover:before {
  top: -20%;
  left: -20%;
}

.social-sidebar-icon i {
  font-size: 20px;
  position: relative;
  z-index: 2;
}

/* Animation for the sidebar */
@keyframes wiggle {
  0% {
    transform: translateX(-5px) rotate(0deg);
  }
  25% {
    transform: translateX(-3px) rotate(1deg);
  }
  50% {
    transform: translateX(-5px) rotate(0deg);
  }
  75% {
    transform: translateX(-7px) rotate(-1deg);
  }
  100% {
    transform: translateX(-5px) rotate(0deg);
  }
}

.social-sticky-note {
  animation: wiggle 6s ease-in-out infinite;
}

.social-sticky-note:hover {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .social-sidebar {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
  }

  .social-sticky-note {
    flex-direction: row;
    width: 100%;
    border-radius: 10px 10px 0 0;
    justify-content: center;
    padding: 10px;
    transform: translateY(5px);
  }

  .social-sticky-note:hover {
    transform: translateY(0);
  }

  .social-sticky-note .pin {
    top: 10px;
    right: 50%;
    transform: translateX(50%);
  }

  @keyframes wiggle {
    0% {
      transform: translateY(5px) rotate(0deg);
    }
    25% {
      transform: translateY(3px) rotate(0.5deg);
    }
    50% {
      transform: translateY(5px) rotate(0deg);
    }
    75% {
      transform: translateY(7px) rotate(-0.5deg);
    }
    100% {
      transform: translateY(5px) rotate(0deg);
    }
  }
}
/* End of CSS */
