/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #333;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;
  z-index: 1000;

    overflow: visible;
}

/* LOGO */
header .logo {
  display: flex;
  align-items: center;   /* vertical centering */
  gap: 10px;             /* optional spacing between image and text */
  font-size: 20px;
  font-weight: bold;
}

/* HAMBURGER WRAPPER */
.hamburger-wrapper {
  position: relative;   /* anchor point for dropdown */
  display: inline-block;
}

/* HAMBURGER ICON */
.hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* DROPDOWN MENU */
.hamburger-menu {
  position: absolute;
  top: 30px;       /* directly below hamburger */
  right: 0;        /* align with hamburger icon */
/*  background: #fff; */
    background: red !important;
  border: 1px solid #ccc;
  padding: 15px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 999999 !important;
}

.hamburger-menu.show {
  display: flex;
}

/* BODY OFFSET FOR FIXED HEADER */
body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f5f5;
  padding-top: 80px;   /* space for fixed header */
}

.wrap-img-left {
    float: left;
    margin: 0 20px 20px 0; /* spacing around the image */
}

.wrap-img-right {
    float: right;
    margin: 0 20px 20px 0; /* spacing around the image */
}

.wrap-video-left {
    float: left;              /* or left */
    margin: 0 0 20px 20px;     /* spacing around the video */
    max-width: 420px;          /* optional */
}

.wrap-video-right {
    float: right;              /* or left */
    margin: 0 0 20px 20px;     /* spacing around the video */
    max-width: 420px;          /* optional */
}

table {
    border-collapse: collapse;   /* makes borders clean */
    width: 100%;                 /* optional */
}

th, td {
    border: 1px solid #000;      /* outlines every cell */
    padding: 8px;                /* spacing inside cells */
    text-align: left;            /* aligns text */
}
