/* Homepage Styles - RSBL */

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 10px;
}

html {
  font-family: "Lucida Sans", sans-serif;
  background-color: #000000;
}

.header {
  padding: 10px;
}

.header1 {
  padding: 10px;
  max-width: 175px;
}

/* --- Mobile Menu Button --- */
.hamburger {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: #0033cc;
  border: 2px solid #4466ff;
  border-radius: 6px;
  color: white;
  font-family: "Lucida Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hamburger:hover {
  background: #0044ee;
}

/* --- Nav Overlay --- */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.nav-overlay.show {
  display: block;
}

.menu {
  min-width: 175px;
  max-width: 175px;
}
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 4px;
  margin-bottom: 4px;
  background-color: #0033cc;
  border-radius: 5px;
}

.menu li:hover {
  background-color: #FFFF00;
}

.menu li a {
  display: block;
  text-decoration: none;
  color: #ffffff;
}

.menu li:hover a {
  display: block;
  text-decoration: none;
  color: #000000;
}

.main {
  color: white;
  padding: 0;
  background-image: url("https://rsbl.org/images/baseball-smoke.jpg");
  background-color: black;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}

.main h2 {
  color: yellow;
}

.main a {
  color: aqua;
}

.main a:hover {
  color: yellow;
}

.footer {
  background-color: #0033cc;
  border-radius: 5px;
  color: #ffffff;
  text-align: left;
  font-size: 12px;
  padding: 2px;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Mobile (< 768px): hamburger + slide-in menu */
@media only screen and (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  .header1 {
    display: none;
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    max-width: 220px;
    height: 100%;
    background: #0a0a2a;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 70px 15px 15px 15px;
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0,0,0,0.5);
  }
  .menu.open {
    transform: translateX(0);
  }
  .menu li {
    padding: 10px 12px;
    margin-bottom: 6px;
    font-size: 15px;
  }
}

/* Tablet (768px+) */
@media only screen and (min-width: 768px) {
  .header1 {
    display: inline;
  }
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

/* Desktop (1024px+) */
@media only screen and (min-width: 1024px) {
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}
