/*
Theme Name:     The Fort
Theme URI:      http: //f3thefort.com
Description:    Child theme for The Fort
Author:         Jason Vinson (Gears)
Template:       sela 
Version:        0.1.3
*/

@import url("../sela/style.css");

/* Google Fonts */

body {
  font-family: 'Roboto', sans-serif;
}


/* Theme overrides Start */

.menu-toggle {
  margin: 0;
}


/* Remove block for branding at top */

.site-branding {
  display: none;
}


/* use the maximum width with no padding on front page */

.front-page-content-area .without-featured-image {
  padding: 0;
}


/* No header on the front page */

.front-page-content-area .entry-header {
  display: none;
}


/* fix color scheme of navigation */

.main-navigation {
  background-color: black;
  color: white;
}


/* remove menu separators */

.main-navigation .nav-menu>li>a:after,
.main-navigation .menu>li>a:after {
  content: "";
  color: black;
}


/* quirkiness with font-awesome adds strange block above home menu item */

.fa-home:before {
  content: "";
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#infinite-handle span {
  background-color: black;
}


/* Fix widths of search bar and AO select in sidebar */

.widget select,
.search-form label {
  width: 95%;
}


/* Larger Title */

.post header.entry-header h1.entry-title {
  font-size: 3.5rem;
}


/* no decoration on the meta-tags for posts*/

div.meta-tags-content div.well ul {
  list-style: none;
  margin: 0;
}

.main-navigation li.menu-item>a:hover,
.main-navigation li.current_page_item>a,
.main-navigation li.current-menu-item>a,
.main-navigation li.current_page_ancestor>a,
.main-navigation li.current-menu-ancestor>a {
  color: lightgray;
}


/* hide separator bar in footer */

footer.entry-meta {
  display: none;
}


/* Theme overrides End */


/* Vertical align hack and logo sizes for tablet+ sizes */

@media only screen and (min-device-width: 768px) {
  .vcenter {
    display: flex;
    align-items: center;
  }
  #f3-logo img {
    width: 50%;
  }
  .nav-menu li {
    float: left;
  }
  .nav-menu li a {
    padding-left: 20px;
  }
  .nav-menu li.right-nav {
    float: right;
  }
  .nav-menu li.right-nav a {
    padding-right: 10px;
  }
  .main-navigation ul li {
    padding: .75em 0 .75em 0;
  }
  .main-navigation {
    padding: 0.25em 0;
  }
}

@media only screen and (max-device-width: 768px) {
  #fort-logo {
    padding: 10px;
  }
  #f3-logo {
    display: none;
  }
  #f3-logo img {
    width: 25%;
  }
  #fort-logo img {
    width: 50%;
  }
  #media-caption {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  #welcome-box {
    display: none;
  }
}


/* Start Media Box */

#media-box {
  background-image: url(http://f3thefort.com/wp-content/uploads/2017/06/shovel_flags.jpg);
  background-color: rgba(0, 0, 0, .5);
  background-size: cover;
  background-blend-mode: multiply;
  color: white;
  font-size: 180%;
  text-transform: capitalize;
  text-align: center;
  padding: 10px;
}


/* End Media Box */


/* Start Welcome Box */

#welcome-box {
  padding: 36px;
  background-color: grey;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 150%;
}


/* End Welcome Box */


/* Start Bottom Half */

#bottom-half {
  padding-top: 36px;
}

#bottom-half .row {
  padding: 12px;
}

#bottom-half .img-link {
  width: 128px;
}

#bottom-half .nav-grid-text h3 {
  text-transform: uppercase;
  color: red;
}

#bottom-half .nav-grid-text .link-chevron {
  color: red;
}


/* End Bottom Half */


/* Start TClaps Custom Section */

.tclapsection {
  /* uncomment this to hide the block during dev */
  /* display: none; */
}

.tclapsbox {
  background-color: #f3f3f3;
  padding: 6px;
  border: 1px solid black;
  cursor: pointer;
  width: 120px;
  display: flex;
}

.tclapsbox div {
  margin: auto;
}

.tclapsbox div.tclap_spinner {
  display: none;
}

div.tclap_spinner img {
  height: 24px;
}


/* End TClaps Custom Section */


/* Start Upcoming Events Section */

#upcoming-events {
  padding: 36px 0;
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

#upcoming-events .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#upcoming-events h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

#upcoming-events .events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

#upcoming-events .events-list li {
  margin-bottom: 8px;
  background-color: white;
  border-left: 4px solid rgb(100, 0, 0);
  font-size: 1.5rem;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

#upcoming-events .events-list li:hover {
  background-color: #f0f0f0;
}

#upcoming-events .event-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  width: 100%;
}

#upcoming-events .event-date {
  color: rgb(100, 0, 0);
  min-width: 100px;
  display: inline-block;
}

#upcoming-events .event-title {
  color: #333;
}

#upcoming-events .events-list a:hover .event-title {
  color: rgb(100, 0, 0);
}

#upcoming-events .no-events {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin: 20px 0;
}

/* Responsive adjustments for mobile */
@media only screen and (max-device-width: 768px) {
  #upcoming-events {
    padding: 24px 0;
  }
  
  #upcoming-events h2 {
    font-size: 1.5rem;
  }
  
  #upcoming-events .events-list li {
    font-size: 1rem;
  }
  
  #upcoming-events .event-link {
    padding: 8px 15px;
  }
  
  #upcoming-events .event-date {
    display: inline-block;
    min-width: auto;
    margin-right: 8px;
  }
}

/* End Upcoming Events Section */

