/* custom css */


.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gradient-border {
  position: relative;
  display: inline-block;
  border-radius: 12px; /* optional */
  padding: 5px; /* thickness of the border */
  background: linear-gradient(45deg, #FF660B, #7873f5);
}

.gradient-border img {
  display: block;
  border-radius: 10px; /* match radius - padding for neatness */
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;       /* ensures it doesn’t exceed screen */
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* For Shorts (vertical 9:16) */
.video-container-vertical {
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
}

@media (max-width: 767px) {
  footer .logo img {
    height: 80px !important;  /* adjust to desired size */
    width: auto !important;    /* keep proportions correct */
    margin-top: 5px;           /* optional, spacing above */
    margin-bottom: 5px;        /* optional, spacing below */
  }
}

@media (max-width: 767px) {
  .logo img {
    height: 50px !important;   /* adjust */
    width: auto !important;    /* keeps proportions correct */
    padding-bottom: 10px;  /* adds space below */
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .logo img {
    height: 55px !important; /* adjust for tablet */
    width: auto !important;
    padding-bottom: 10px;
  }
}

/* Cookie banner overrides */
.cc-window {
  background: linear-gradient(135deg, #751F9B, #FF6600) !important;
  color: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.cc-message, .cc-link {
  color: #fff !important;
}

.cc-btn {
  border-radius: 20px !important;
  font-weight: bold !important;
  padding: 6px 16px !important;
  background: #fff !important;
  color: #751F9B !important;
  transition: all 0.3s ease !important;
}

.cc-btn:hover {
  background: #FF6600 !important;
  color: #fff !important;
}
