.header-logo {
    width:150px;
}

/* --- Fix input + append alignment --- */
.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group .form-control {
  flex: 1;
  border-radius: 0.5rem 0 0 0.5rem;
  height: 45px;
  line-height: 45px;
  font-size: 0.95rem;
}

.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-append .btn {
  border-radius: 0 0.5rem 0.5rem 0;
  height: 45px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #6a5eff, #7a73ff);
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 0 10px rgba(100, 90, 255, 0.25);
  transition: all 0.2s ease;
}

.input-group-append .btn:hover {
  box-shadow: 0 0 18px rgba(120, 110, 255, 0.5);
}

/* --- Compact captcha wrapper --- */
.captcha-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  gap: 0.5rem;
}

.captcha-wrapper img {
  height: 45px; /* Match input height */
  width: auto;
  border-radius: 0.25rem;
  object-fit: contain;
}

.captcha-wrapper input {
  height: 45px;
  width: 60px;
  border: none;
  border-bottom: 2px solid #6d72ff;
  background: transparent;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  outline: none;
}


.gallery-right-img-top-wrap,
.gallery-right-single-img-top-wrap,
.gallery-right-single-img-bottom-wrap,
.gallery-right-img-buttom-wrap {
  flex: 1; /* makes each section scale to fill equal vertical space */
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes the image fill without distortion */
  filter: blur(3px); /* keeps your blur */
  transform: scale(1.1); /* optional: gives the zoomed look */
  display: block;
}

.event-img {
  height:130px;
}

@media screen and (min-width:994px) {
    .hero-title {
        font-size:50px;
    }

    .hero-countdown-wrapper {
        justify-content:start;
    }

    .hero-countdown-item {
        font-size:50px;
        max-width:300px;
    }

    .hero-countdown-time {
      font-size:50px;
    }
}

.calendar-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
  color: white;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cal-btn {
  background: none;
  border: 1px solid white;
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day-name {
  text-align: center;
  opacity: 0.7;
  font-weight: 600;
}

.calendar-day {
  height: 80px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 8px;
  font-size: 14px;
}

.calendar-day.other-month {
  opacity: 0.3;
}

.calendar {
  max-width: 400px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  color:white;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
}

.day.empty {
  background: transparent;
}

.day.event {
  background-color: #007bff; /* blue background */
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#cursor-ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999999;   /* ← bring it above ALL elements */
  opacity: 50%;
}

/* Tooltip on hover */
.day.event:hover::after {
  content: attr(data-title);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  opacity: 1;
  z-index: 10;
}

#highlighted-list h5 {
  margin-bottom: 10px;
}
#highlighted-dates li {
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.event {
  background: lightblue;
  border-radius: 6px;
}

.calendar-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  color: white;
}

#calendar-view {
  display: block;
}

#highlighted-list {
  width: 250px;
}

#highlighted-dates {
  list-style: none;
  padding-left: 0;
}

/* hide by default */
#calendar-container[style*="display:none"] {
  display: none !important;
}

/* center the calendar when visible */
.calendar {
  width: 400px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

img {
    pointer-events: none;
    user-select: none; /* Prevents selecting/highlighting the image */
}



