/* সবকিছুর margin ও padding রিসেট */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
    font-family: 'Cholontika';
    src: url('Codepotro Abu Sayed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
   @font-face {
    font-family: 'Adorsho';
    src: url('Shadhinata.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;}
body {
font-family: 'Adorsho', sans-serif !important; 
  background-color: #f5f5f5;
  color: #333;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}
        .logo-title {
      display: flex;
      align-items: center;
    }

    .logo-title img {
      height: 40px;
      width: 40px;
      border-radius: 50%; /* Make it round */
      margin-left: 60px;
      margin-top: -10px;
    }

    .logo-title h1 {
      font-family: 'Cholontika', sans-serif !important; 
      margin-left: 15px;
      color: white;
      text-shadow: 1px 1px 2px black;
      font-weight: normal;
    margin-top: -5px;
    }
/* সেকশন */
.section {
  width: 100%;
  min-height: 100vh;
  background: #e0f7fa;
}

/* হেডার */
.section h3 {
  width: 100%;
  height: 80px;
  background: #006064;
  color: white;
  font-size: 28px;
  text-align: center;
  line-height: 80px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* গ্যালারি গ্রিড */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 20px;
}

/* প্রতিটি ছবি */
.item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInSlide 0.6s ease forwards;
}

/* হোভার ইফেক্ট */
.item:hover {
  transform: scale(1.02);
}

/* ইমেজ */
.item img {
  width: 100%;
  height: auto;
  display: block;
}

/* fadeIn + slide animation */
@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    /* Hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1101;
  position: absolute;
  top: 28px;
  left: 10px;
  transition: opacity 0.3s ease;
  outline: none;
  box-shadow: none;
    -webkit-tap-highlight-color: transparent; /* মোবাইলে হালকা গ্লো বন্ধ */
  box-shadow: none !important; /* যেকোনো shadow নিষ্ক্রিয় */
  outline: none !important; /* ক্লিক করলে outline আসে, বন্ধ */
  background: none !important;
}
.hamburger:focus,
.hamburger:focus-visible,
.hamburger:active {
  outline: none !important;
  box-shadow: none !important;
    background: none !important;
}

.hamburger.hidden {
  opacity: 0;
  pointer-events: none;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-wrapper {
  position: fixed;
  height: 80px;
  top: 0;
  left: 0;
  width: 100%;
  background: #006064;
  color: white;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

    /* Top Social Bar */
    .top-right-bar {
      padding: 5px 15px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: -10px;
    }

    .social-icons img {
      width: 18px;
      height: 18px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .social-icons img:hover {
      transform: scale(1.2);
    }
        .logo-title {
      display: flex;
      align-items: center;
    }

    .logo-title img {
      height: 40px;
      width: 40px;
      border-radius: 50%; /* Make it round */
      margin-left: 60px;
      margin-top: -10px;
    }

    .logo-title h1 {
      margin-left: 15px;
      color: white;
      text-shadow: 1px 1px 2px black;
    margin-top: -5px;
    }
    .photo{ 
      font-size: 22px;
      margin-left: 80px;
      font-weight: bold;
    }
    
    
    
        /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: -260px;
      width: 250px;
      height: 100%;
      background: #006064;
      box-shadow: 2px 0 6px rgba(0,0,0,0.2);
      transition: left 0.3s ease;
      z-index: 1100;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .sidebar.active {
      left: 0;
    }

.sidebar-header {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  background-color: white;
  border: none;
  border-radius: 0; /* কোন গোল কোণা নয় */
  color: #fff;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 25; /* যেন বাকি বাটনের উপরে থাকে */
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

    .sidebar-header img {
      height: 35px;
      width: 35px;
      border-radius: 50%;
      margin-right: 8px;
    }

    .sidebar-header h2 {
      font-weight: normal;
      font-family: 'Cholontika', sans-serif !important;
      font-size: 16px;
      color: #006064;
    }

    .sidebar a {
      padding: 12px 20px;
      text-decoration: none;
      color: white;
      border-bottom: 1px solid #eee;
      transition: background 0.3s;
    }

    .sidebar a:hover {
      background-color: #00695c;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      display: none;
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }