/* @override 
	http://localhost/bsac/assets/css/style.css
	https://bsac.com.au/assets/css/style.css */

@charset "UTF-8";
/* Ensure header doesn't collapse */
header.position-relative {
    min-height: 220px;
    overflow: visible;
}

body {
	font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5 {
	font-family: "Chewy", system-ui;
	color: #0ec7fc;
}

.introtext {
	font-size: 1.2em;
	line-height: 1.7em;
	margin-bottom: 2em;
	color: #5f5858;
	border-bottom: 1px solid #0fc7fb;
	padding-bottom: 1em;
}

/* Logo Styling */
header img {
	
}



/* Gradient Overlay (for depth) */
.bg-gradient {
    pointer-events: none;
}


.bg-hero {
	background: url(../images/jumbobg00.jpg) center bottom no-repeat;
	background-size: cover;
	min-height: 220px;
}




.bg-hero h1 {
	color: #fffffe;
	font-size: 4em;
	text-transform: uppercase;
	text-shadow: 2px 2px 5px #5e5a5a;
}

.bg-hero p.lead {
	color: #fffffe;
	background-color: rgba(27, 26, 26, 0.32);
}

section:first-of-type {
	margin-top: 0!important;
}

/* Sticky Navbar */
.navbar.sticky-top {
    backdrop-filter: blur(10px);
	background-color: #14a6dc;
}

/* On small screens, hide large logo, show small brand */
.navbar-brand img {
    border-radius: 8px;
}

/* Nav bar */

ul.navbar-nav  {
	list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
	  gap: 10px;
	
}

.navbar-nav li  {
	flex: 1;
	
      
}

.navbar-nav a {
	display: block;
      padding: 12px 20px;
      background-color: #dddfdf;
      color: #333866;
      text-decoration: none;
      text-align: center;
      border-radius: 5px;
      font-family: "Open Sans", sans-serif;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.1s ease;
	  box-shadow: inset 0 0 10px #ffffff;
}

 /* Hover effect */
    .navbar-nav a:hover {
      background-color: #65defb;
      transform: translateY(-2px);
    }

    /* Active/click effect */
    .navbar-nav .active a {
	transform: translateY(0);
		background-color: white;
	}

    /* Optional: Focus style for accessibility */
    .navbar-nav a:focus {
      outline: 2px solid #005eff;
      outline-offset: 2px;
    }

/* Shooting Status Widget */
.shooting-status-widget {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 14px;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease;
  
}

.shooting-status-widget .status-header {
  background: #231f23;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
}

.shooting-status-widget .status-body {
  padding: 15px;
  line-height: 1.5;
}

.shooting-status-widget .status-body p {
	margin-bottom: 0;
}

.shooting-status-widget .status-yes { color: #155724; background: #d4edda; padding: 2px 6px; border-radius: 3px; }
.shooting-status-widget .status-no { color: #721c24; background: #f8d7da; padding: 2px 6px; border-radius: 3px; }
.shooting-status-widget .status-tba { color: #856404; background: #fff3cd; padding: 2px 6px; border-radius: 3px;
text-transform: uppercase;
}

.shooting-status-widget .btn-min {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

#shooting-status.collapsed .status-body {
  display: none;
}
   

    /* Button Styles */
    .btn {
      display: inline-block;
      padding: 10px 20px;
      margin: 10px 0;
      border-radius: 5px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      text-align: center;
      transition: opacity 0.2s ease;
    }

    .btn:hover {
      opacity: 0.9;
    }

    .btn-primary {
      background-color: #0292F8;
    }

    .btn-success {
      background-color: #379C02;
    }

    .btn-warning {
      background-color: #E38F04;
    }

    .btn-danger {
      background-color: #EC2827;
    }
	  
	  /* Flex Schedule */
.flex-schedule {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.day-badge {
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.day-badge.bg-primary {
  background-color: #42c717!important;
}

.bg-secondary {
  background-color: #0292F8; /* Blue - alternate for WED */
}

.time-info {
  font-size: 1em;
  color: #555;
}


    /* Responsive Table */
    .schedule-table {
      width: 100%;
      max-width: 400px;
      margin: 15px auto;
      border-collapse: collapse;
      font-size: 1em;
    }

    .schedule-table td {
      padding: 10px;
      text-align: center;
      border: 3px solid #EC2827;
    }

    .schedule-table .day {
      background-color: #EC2827;
      color: white;
      font-weight: bold;
      padding: 10px 20px;
    }

    .schedule-table .time {
      text-align: center;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .box {
        flex: 1 1 100%;
      }
      .schedule-table {
        font-size: 0.9em;
      }
	  
    }
    
  

    @media (min-width: 769px) {
      .container {
        justify-content: space-between;
      }
    }
    
        @media (max-width: 590px) {
	  	.shooting-status-widget {
	  	width: 150px!important;
	  }
	  .shooting-status-widget .status-body strong {
	  	display: block;
	  }
	  .shooting-status-widget .status-header em {
	  	display: none;
	  }
	  	}
    
    .hero-content {
		  border: medium solid;
		  padding: 0.5rem;
		background-color: rgba(21, 20, 20, 0.44);
	}
	
	/* Box Sections */
	
	.bsac-boxes, .box-container  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 1rem 0; /* Optional: add some top/bottom spacing */
	justify-content: center!important;
}

.bsac-card, .box, .bsac-card-wide {
    border: 1px solid #19abfb;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 3px 3px 3px #e1dfdf;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    transition: transform 0.1s; /* Optional: subtle effect on interaction */
	text-align: center;
}



.bsac-card:hover {
    transform: scale(1.01); /* Optional: slight scale on hover */
}

.bsac-q {
    margin-bottom: 0.5rem;
    color: #19abfb;
	font: 1.4rem "Chewy", system-ui;
}

.box {
	text-align: center;
}

    .box h3 {
      margin-bottom: 12px;
	  text-align: center;
	}

    .box p {
      color: #666;
      font-size: 0.95em;
      line-height: 1.7;
    }
    
    
    
    .contentbox p {
		text-align: center;
		font-size: 1.2em;
	}
	
	.breakout {
		background-color: #ebeaea;
		border-bottom-style: none;
		margin-bottom: 2rem;
		padding: 2em;
		font-size: 1.3em;
		border-radius: 10px;
		box-shadow: 2px 2px 6px #c9cbcd;
	}
	
	.breakout i {
		font-size: 1.5em;
		margin-right: 10px;
	margin-left: 10px;
	}
	
	.breakout i:first-of-type {
		margin-left: 0;
	}
	
	.author {
		text-align: right;
		font-style: italic;
		font-size: .9em;
	}
	
	.legal {
		font-size: 0.8em;
	}
	
	.legal h3 {
		font: bold 1.2em "Open Sans", sans-serif;
		color: #504b4b;
	}