 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
 }

 body,
 html {
   height: 100%;
   margin: 0;
   overflow-x: hidden;
 }

 .home {
   width: 100%;
   min-height: 100vh;
   background: url("/assets/hero-final.png") no-repeat center center;
   background-size: cover;
   background-color: #f5e9d0;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 40px 20px;
 }

 @media (max-width: 768px) {
   .home {
     background-position: top center;
     padding: 60px 15px;
   }
 }


 .home h1 {
   font-size: 3rem;
   color: #222;
   text-align: center;
   background: rgba(255, 255, 255, 0.6);
   padding: 20px 30px;
   border-radius: 10px;
 }

 body {
   margin: 0;
   font-family: "Poppins", sans-serif;
   background: #fdf5c9;
 }

 #speakers-section {
   padding: 80px 20px;
   text-align: center;
   position: relative;
   overflow: hidden;
 }

 .speakers-grid {
   display: flex;
   gap: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }

 /* Speaker card */
 .speaker {
   position: relative;
   max-width: 320px;
   cursor: pointer;
   text-align: center;
 }

 .speaker h3 {
   margin: 12px 0 6px;
   color: #111;
   font-size: 1.15rem;
 }

 .speaker p {
   margin: 0;
   color: #444;
 }

 .svg-frame {
   position: relative;
   width: 220px;
   height: 220px;
   margin: 0 auto 14px;
   display: block;
 }

 .svg-frame img.photo {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 66%;
   height: 66%;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   object-fit: cover;
   z-index: 1;
   border: 6px solid #fff;
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
   background: #eee;
 }

 .svg-frame img.frame {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   transform: translate(-50%, -50%);
   z-index: 2;
   pointer-events: none;
   object-fit: contain;
 }

 /* Responsive tweak: scale down on small screens */
 @media (max-width:420px) {
   .svg-frame {
     width: 160px;
     height: 160px;
   }

   .svg-frame img.photo {
     width: 68%;
     height: 68%;
   }
 }

 .wave-top-svg path,
 .wave-top-svg1 path {
   display: none;
 }

 :root {
   --bar-color: #fbc75d;
   --pop-color: #ff8a5b;
   --bar-height: 60px;
   --bar-width: 340px;
   --notch-radius: 30;
   /* px */
 }

 body {
   margin: 0;
   font-family: Inter, system-ui, Arial;
   scroll-behavior: smooth;
 }

 /* demo content so you can test scrolling */

 /* NAVBAR */
 .navbar-mobile {
   position: fixed;
   left: 50%;
   bottom: calc(16px + env(safe-area-inset-bottom, 0px));
   transform: translateX(-50%);
   width: var(--bar-width);
   height: var(--bar-height);
   border-radius: 30px;
   display: flex;
   align-items: center;
   justify-content: space-around;
   z-index: 2000;
   /* background is drawn by the SVG so set transparent here */
   background: transparent;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   overflow: visible;
   /* allow notch to show */
   pointer-events: auto;
 }

 /* svg covers the bar and draws the bar with the mask (cut-out) */
 .navbar-mobile svg.cut {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   /* clicks go to icons */
   z-index: 0;
   display: block;
 }

 /* nav items (icons) above SVG */
 .nav-item {
   position: relative;
   z-index: 2;
   color: #222;
   font-size: 20px;
   width: 48px;
   height: 48px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   user-select: none;
 }

 /* hovered/active look: we'll keep same popped-circle via pseudo element */
 .nav-item.active {
   color: transparent;
 }

 .nav-item.active::after {
   content: attr(data-icon);
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   position: absolute;
   top: -36px;
   left: 50%;
   transform: translateX(-50%);
   width: 52px;
   height: 52px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--pop-color);
   color: #fff;
   font-size: 18px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
   animation: pop .25s ease;
 }

 @keyframes pop {
   from {
     transform: translateX(-50%) translateY(6px) scale(.8);
     opacity: 0
   }

   to {
     transform: translateX(-50%) translateY(0) scale(1);
     opacity: 1
   }
 }

 /* hide on desktop */
 @media (min-width: 769px) {
   .navbar-mobile {
     display: none
   }

   #copyright-btm {
     display: none;
   }
 }

 /* Cartoon Navbar */
 @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&display=swap');

 .cartoon-navbar {
   background: #ffcc66;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 40px;
   position: sticky;
   top: 0;
   z-index: 1000;
   border-bottom: 6px solid #ff9966;
   box-shadow: 0 6px 0 #d47f50;
   font-family: 'Baloo 2', cursive;
 }

 /* Logo */
 .cartoon-navbar .logo {
   display: flex;
   align-items: center;
   font-size: 1.6rem;
   font-weight: 700;
   color: #2d3748;
   text-shadow: 2px 2px #fff, 4px 4px #ff6699;
 }

 .cartoon-navbar .logo img {
   height: 40px;
   margin-right: 10px;
 }

 /* Links */
 .cartoon-navbar ul {
   list-style: none;
   display: flex;
   gap: 25px;
   margin: 0;
   padding: 0;
 }

 .cartoon-navbar ul li a {
   text-decoration: none;
   font-size: 1.2rem;
   font-weight: 600;
   padding: 10px 18px;
   border-radius: 20px;
   background: #fff6e6;
   color: #333;
   box-shadow: 0 4px 0 #d47f50;
   transition: all 0.2s ease;
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .cartoon-navbar ul li:nth-child(5) a {
   background: #000000;
   color: #fff;
   box-shadow: 0 4px 0 #f57710;
   font-weight: 700;
 }


 .cartoon-navbar ul li:nth-child(5) a:hover {
   background: rgb(82, 82, 217);
   color: white;
   transform: translateY(-3px);
  box-shadow: 0 4px 0 #000000;


 }


 .cartoon-navbar ul li a:hover {
   transform: translateY(-3px);
   background: #ff9966;
   color: #fff;
   box-shadow: 0 6px 0 #cc6600;
 }

 /* Show navbar only on desktop */
 @media (max-width: 768px) {
   .cartoon-navbar {
     display: block;
   }

   #copyright-btm {
     display: none;
   }
 }

 /* Mobile: keep logo, hide menu items */
 @media (max-width: 768px) {
   .cartoon-navbar ul {
     display: none;
     /* hide nav links */
   }

   .cartoon-navbar .logo {
     margin: 0 auto;
     /* center the logo */
   }

   .strawberry-character1 {
     transform: translate(0%, 50%);
     width: 50%;
     -webkit-transform: translate(0%, 50%);
     -moz-transform: translate(0%, 50%);
     -ms-transform: translate(0%, 50%);
     -o-transform: translate(0%, 50%);
   }

   footer h4,
   footer p,
   footer a:not(.social-icons a):not(.copyright-btm) {
     font-size: 12px;
     margin-left: 40px;
   }

   .social-icons {
     padding-left: 40px;
   }

   #copyright {
     display: none;
   }

   #copyright-btm {
     display: block;
     text-align: center;
   }
 }

 /* Collaborators Section */
 .collaborators {
   text-align: center;
   padding: 3rem 1rem;
   background: #fdf5c9;
   /* match cartoon theme */
 }

 .collaborators h2 {
   font-size: 2rem;
   margin-bottom: 2rem;
   color: #222;
 }

 .collab-logos {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 2rem;
 }

 .collab-logos img {
   height: 50px;
   /* keep logos small */
   width: auto;
   object-fit: contain;
   filter: drop-shadow(2px 2px 0 #000);
   /* cartoon effect */
   transition: transform 0.3s ease;
 }

 .collab-logos img:hover {
   transform: scale(1.1) rotate(-2deg);
   /* fun hover */
 }

 /* Collaborators (drop this where your other CSS lives) */
 .collaborators {
   padding: 2.5rem 1rem;
   background: #2e2e2d;
   text-align: center;
 }

 .collaborators h2 {
   font-size: 1.6rem;
   color: #ffffff;
 }

 /* logos row */
 .collab-logos {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 1rem;
   align-items: center;
 }

 /* each logo wrapper — keeps logos small & consistent */
 .logo-item {
   width: 200px;
   /* control visible size */
   height: 56px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 6px;
   border-radius: 8px;
   overflow: hidden;
 }

 /* actual image sizing — will not exceed wrapper */
 .logo-item img {
   max-height: 300px;
   max-width: 1000%;
   object-fit: contain;
   display: block;
   width: 100%;
   height: 800%;
 }

 .tink img {
   width: 100%;
   height: 800%;
 }

 /* responsive: smaller on very small screens */
 @media (max-width: 420px) {
   .logo-item {
     width: 72px;
     height: 46px;
   }

   .logo-item img {
     max-height: 32px;
   }
 }

 .create-partner {
  text-align: center;
}

.create-partner img {
  height: 60px;
  margin-bottom: 8px;
  filter: drop-shadow(2px 2px 0 #000);
}

.create-partner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

#footer-phones a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.3s;
}
#footer-phones a:hover {
  color: #fff;
  cursor: pointer;
}
