
.top-header {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-header .programmes {
  font-weight: bold;
  font-size: 18px;
}
.top-header .programmes span {
  color: #f58220; /* orange */
  font-weight: 600;
}
.top-header img {
  height: 50px;
}
.social-icons a {
  color: #e74c3c;
  margin-left: 10px;
  font-size: 20px;
}


 .social-circle {
    width:44px; height:44px; border-radius:50%;
    background:#ff8a3d; color:#fff; font-size:1.05rem;
    text-decoration:none; box-shadow:0 2px 6px rgba(0,0,0,0.08);
  }
  .social-circle i { font-size:1.05rem; }

/* Custom offcanvas menu */
#customMenu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 1050;
}
#customMenu.active {
  right: 0;
}
#customMenu ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
#customMenu ul li {
  margin: 15px 0;
}
#customMenu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
#menuToggle {
  cursor: pointer;
  font-weight: bold;
}
.programmes {
  font-size: 20px !important;
  font-weight: 700 !important;
}
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: bold;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hamburger .line {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
}

.line1 {
  background-color: gold !important;
}
.line2 {
  background-color: red !important;
}
.line3 {
  background-color: navy !important;
}

.menu-text {
  padding-left: 6px;
  font-size: 19px;
  color: #000;
}
.sizeoficon {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .nestlogo {
    width: 130px;
    height: 80px !important;
  }
}
 /****************************/
      :root{
      --accent3: #ff7a00; /* orange */
      --dark: #111;
      --muted: #5a5a5a;
      --white: #fff;
    }
    *{box-sizing:border-box}
    body{font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif; margin:0; color:var(--dark)}
    a{color:inherit; text-decoration:none}

    /* Layout: top bar with menu toggle (for demo) */
    header{display:flex; align-items:center; justify-content:flex-end; padding:18px 20px; background:#fff; border-bottom:1px solid #eee}
    .menu-toggle{display:flex; align-items:center; gap:12px; cursor:pointer; user-select:none}
    .menu-toggle .hamburger{width:28px; height:20px; display:flex; flex-direction:column; justify-content:space-between}
    .menu-toggle .line{display:block; height:3px; border-radius:3px; background:#111}
    .menu-toggle .menu-text{font-weight:600; letter-spacing:0.6px}

    /* Desktop narrow white sidebar (right) */
    #customMenu {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 320px;             /* narrow sidebar on desktop */
      max-width: 85vw;
      background: var(--accent3);
      box-shadow: -6px 0 18px rgba(12,12,12,0.08);
      transform: translateX(110%); /* hidden by default */
      transition: transform .35s cubic-bezier(.2,.9,.25,1);
      z-index: 1200;
      padding: 28px 26px;
      overflow: auto;
    }
    #customMenu.active { transform: translateX(0); }

    /* Mobile full overlay (orange) — appears on small screens */
    @media (max-width: 900px){
      #customMenu{
        width: 100%;
        max-width: none;
        left: 0;
        right: 0;
        transform: translateX(100%);
        padding: 48px 40px;
        background: linear-gradient(180deg, var(--accent3) 0%, #ff7d00 100%);
        color: #000;
      }
      #customMenu.active{ transform: translateX(0); }
      /* make hamburger lines white on mobile */
      header .line{background:#fff}
      header{background:var(--accent3)}
      .menu-toggle .menu-text{color:#fff}
    }

    /* Header inside menu (title) */
    #customMenu h5{
      margin: 0 0 18px 0;
      font-size: 20px;
      color: var(--muted);
      font-weight:700;
    }
    /* Menu list */
    #customMenu ul{list-style:none; padding:0; margin:0}
    #customMenu li{margin-bottom:18px; display:block}

    /* Top-level links style — large on mobile overlay */
    #customMenu a.top-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:8px 0;
      font-size:16px;
      font-weight:600;
      color:var(--dark);
    }
    @media (max-width:900px){
      #customMenu h5{color: rgba(0,0,0,.85)}
      #customMenu a.top-link{font-size:22px; color:#000}
    }

    /* Arrow icon */
    .chev{
      display:inline-block;
      width:18px; height:18px;
      transform:rotate(0);
      transition: transform .25s ease;
      opacity:.9;
    }
    .chev svg{display:block}

    /* Submenu area (collapsible) */
    .submenu{
      overflow: hidden;
      max-height: 0;
      transition: max-height .32s ease, opacity .25s ease;
      opacity: 0;
      margin-top:6px;
      padding-left:6px;
      border-left: 2px dashed rgba(0,0,0,0.04);
    }
    .submenu.open{
      opacity: 1;
      /* large enough max-height to fit content; will animate properly */
      max-height: 1200px;
    }
    .submenu a{
      display:block;
      padding:10px 6px;
      font-size:14px;
      color:var(--muted);
      font-weight:500;
      border-radius:6px;
    }
    .submenu a:hover{background:rgba(0,0,0,0.03); color:var(--dark)}

    /* Make the chevron rotate when submenu open */
    .has-sub.open > .top-link .chev{
      transform: rotate(180deg);
    }

    /* Larger spacing and weight for overlay look */
    @media (max-width:900px){
      #customMenu { padding-top:60px; }
      #customMenu ul li { margin-bottom:22px; }
      .submenu a{font-size:16px; padding-left:12px}
    }

    /* Close X button (desktop & mobile) */
    .close-btn{
      position: absolute;
      top: 18px;
      right: 18px;
      width:30px; height:30px;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      border-radius:6px;
      background:transparent;
    }
    @media (max-width:900px){
      .close-btn{ color:#000 }
    }

    /* Styled custom scrollbars (Webkit browsers) */
    #customMenu::-webkit-scrollbar{width:14px}
    #customMenu::-webkit-scrollbar-track{background: rgba(0,0,0,0.05); border-radius:10px}
    #customMenu::-webkit-scrollbar-thumb{background: rgba(0,0,0,0.25); border-radius:10px; border:4px solid rgba(0,0,0,0.06)}

    /* Accessibility focus */
    a:focus { outline: 3px solid rgba(0,0,0,0.08); outline-offset:3px }



      /* brochure vertical tab on left */
  .brochure-tab {
    position: fixed; left:8px; bottom:140px;
    background:#ff9b1a; color:#fff;
    width:56px; height:110px;
    writing-mode:vertical-rl; text-orientation:mixed;
    transform:rotate(180deg);
    border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.15);
    z-index:1050; font-weight:700; text-decoration:none;
  }

  .setcalaendarsize{
    width:70%;
    height: 500px;
  }


  .nestival-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* --- Active state --- */
.nestival-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Modal box --- */
.nestival-modal {
  background: #fff;
  border-radius: 10px;
  padding: 15px 15px 25px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s ease;
}

/* --- Poster Image --- */
.nestival-poster {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
}

/* --- Close Button --- */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f44336;
  color: #fff;
  font-size: 22px;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  line-height: 28px;
  transition: background 0.2s;
}
.close-btn:hover {
  background: #d32f2f;
}

/* --- Caption --- */
.caption {
  font-size: 15px;
  margin-top: 5px;
  color: #333;
}

/* --- Animation --- */
@keyframes slideIn {
  from {
    transform: translateY(-25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.floating-link {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    background: #ff9224;
    border-radius: 50%;
    color: #fff;
    z-index: 1050;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.follow-section p {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.social-circle {
  width: 45px;
  height: 45px;
  border: 2px solid black;
  border-radius: 10px;
  font-size: 22px;
  color: black;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-circle:hover {
  background-color: black;
  color: #ff6600;
  transform: translateY(-3px);
}