/*!
 * Clean Blog v1.0.0 (http://startbootstrap.com)
 * Copyright 2014 Start Bootstrap
 * Licensed under Apache 2.0 (https://github.com/IronSummitMedia/startbootstrap/blob/gh-pages/LICENSE)
 */

body {
font-family: "National Park", sans-serif;
  font-size: 16px;
  color: #404040;
}

/* Override default Bootstrap container width */
.container {
    width: 80%; /* Sets the width to 80% of the window */
    max-width: none; /* Prevents Bootstrap from locking it to specific pixel widths on large screens */
    margin-left: auto;  /* Ensures it remains centered */
    margin-right: auto; /* Ensures it remains centered */
}

p {
  line-height: 1.5;
  margin: 30px 0;
}
p:first-child {
  margin: 0 0 30px 0;
} 
p a {
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "National Park", sans-serif;
  font-weight: 800;
}
a {
  color: #404040;
}
a:hover,
a:focus {
  color: #000000;
}
img {
  height: auto;
  max-width: 100%;
}
a img:hover,
a img:focus {
  cursor: zoom-in;
}
blockquote {
  color: #808080;
  font-style: italic;
}
hr.small {
  max-width: 100px;
  margin: 15px auto;
  border-width: 4px;
  border-color: white;
}
.navbar-custom {
position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
font-family: "National Park", sans-serif;
}
.navbar-custom .navbar-brand {
  font-weight: 800;
}

.navbar-brand img {
  height: 100%;
  object-fit: none;
  z-index: 0px;
}

.navbar-custom .nav li a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}
@media only screen and (min-width: 768px) {
  .navbar-custom {
    background: transparent;
    border-bottom: 1px solid transparent;
  }
  .navbar-custom .navbar-brand {
    color: white;
    padding: 20px;
  }
  .navbar-custom .navbar-brand:hover,
  .navbar-custom .navbar-brand:focus {
    color: rgba(255, 255, 255, 0.8);
  }
  .navbar-custom .nav li a {
    color: white;
    padding: 20px;
  }
   .navbar-custom .nav li ul li a {
    color: #777;
    padding: 20px;
  }
  .navbar-custom .nav li a:hover,
  .navbar-custom .nav li a:focus {
    color: rgba(255, 255, 255, 0.8);
  }
   .navbar-custom .nav li ul li a:hover, 
   .navbar-custom .nav li ul li a:focus {
    color: black;
    padding: 20px;
  }
   .navbar-custom .nav li ul li.active a {
    color: #fff;
    padding: 20px;
  }
}
@media only screen and (min-width: 1170px) {
  .navbar-custom {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .navbar-custom.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */

    top: -61px;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #f2f2f2;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .navbar-custom.is-fixed .navbar-brand {
    color: #404040;
  }
  .navbar-custom.is-fixed .navbar-brand:hover,
  .navbar-custom.is-fixed .navbar-brand:focus {
    color: #000000;
  }
  .navbar-custom.is-fixed .nav li a {
    color: #404040;
  }
  .navbar-custom.is-fixed .nav li a:hover,
  .navbar-custom.is-fixed .nav li a:focus {
    color: #000000;
  }
  .navbar-custom.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.intro-header {
  background: no-repeat center center;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  margin-bottom: 30px; 
  background-color: #333333;
  background-blend-mode: overlay;
  text-align: center;
  display: flex;
  flex-direction: column;  
  justify-content: center; 
  align-items: center;     

       Add this rule here to target only the front page 
        .intro-header {
            height: 99vh; /* Makes the header 85% of the screen height */
            min-height: 500px; /* Optional: prevents it from getting too small on mobile */
        }
}

.site-heading {
    position: relative;
    /* Ensure the container has height, e.g., 100vh for a full screen header */
    min-height: 89vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2. Style and Position the button */
.scroll-down-btn {
    position: absolute;
    bottom: 30px; /* Adjusts distance from the bottom */
    left: 50%;
    transform: translateX(-50%); /* Perfectly centers the element */
    
    /* Visual Styling */
    font-size: 30px;
    color: #ffffff; /* Change to match your theme */
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-down-btn:hover {
    color: #F7FF14; /* Hover color */

}


html {
    scroll-behavior: smooth;
}
/* 3. Optional: Add a simple bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

.scroll-down-btn {
    animation: bounce 2s infinite;
}
.intro-header .site-heading,
.intro-header .post-heading,
.intro-header .page-heading {
  padding: 0;
  color: white;
}
@media only screen and (min-width: 768px) {
  .intro-header .site-heading,
  .intro-header .post-heading,
  .intro-header .page-heading {
    padding: 50px 0 50px;
  }
}
.intro-header .site-heading,
.intro-header .page-heading {
  text-align: center;
}
.intro-header .site-heading h1,
.intro-header .page-heading h1 {
  margin-top: 0;
  font-size: 50px;
}
.intro-header .site-heading .subheading,
.intro-header .page-heading .subheading {
  font-size: 24px;
  line-height: 1.1;
  display: block;
font-family: "National Park", sans-serif;
  font-weight: 300;
  margin: 10px 0 0;
}
@media only screen and (min-width: 768px) {
  .intro-header {
    margin-bottom: 50px;
  }
  .intro-header .site-heading h1,
  .intro-header .page-heading h1 {
    font-size: 60px;
  }
}
.intro-header .post-heading h1 {
  font-size: 35px;
}
.intro-header .post-heading .subheading,
.intro-header .post-heading .meta {
  line-height: 1.1;
  display: block;
}
.intro-header .post-heading .subheading {
font-family: "National Park", sans-serif;
  font-size: 24px;
  margin: 10px 0 30px;
  font-weight: 600;
}
.intro-header .post-heading .meta {
font-family: "National Park", sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-top: 30px;
}
.intro-header .post-heading .meta a {
  color: white;
}
@media only screen and (min-width: 768px) {
  .intro-header .post-heading h1 {
    font-size: 55px;
  }
  .intro-header .post-heading .subheading {
    font-size: 30px;
  }
}
.post-preview > a {
  color: #404040;
}
.post-preview > a:hover,
.post-preview > a:focus {
  text-decoration: none;
  color: #000000;
}
.post-preview > a > .post-title {
  font-size: 30px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.post-preview > a > .post-subtitle {
  margin: 0;
  font-weight: 300;
  margin-bottom: 10px;
}
.post-preview > .post-meta {
  color: #808080;
  font-size: 16px;
  margin-top: 0;
}
.post-preview > .post-meta > a {
  text-decoration: none;
  color: #404040;
}
.post-preview > .post-meta > a:hover,
.post-preview > .post-meta > a:focus {
  color: #000000;
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .post-preview > a > .post-title {
    font-size: 36px;
  }
}
.section-heading {
  font-size: 36px;
  margin-top: 60px;
  font-weight: 700;
}
.caption {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
footer {
  background-color: #fafa37;
  padding: 25px 0 25px; 
	  
}
footer .list-inline {
  margin: 0;
  padding: 0;
}
footer .copyright {
  font-size: 12px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
  color: White;
 
}

.floating-label-form-group {
  font-size: 14px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #eeeeee;
}
.floating-label-form-group input,
.floating-label-form-group textarea {
  z-index: 1;
  position: relative;
  padding-right: 0;
  padding-left: 0;
  border: none;
  border-radius: 0;
  font-size: 1.5em;
  background: none;
  box-shadow: none !important;
  resize: none;
}
.floating-label-form-group label {
  display: block;
  z-index: 0;
  position: relative;
  top: 2em;
  margin: 0;
  font-size: 0.85em;
  line-height: 1.764705882em;
  vertical-align: middle;
  vertical-align: baseline;
  opacity: 0;
  -webkit-transition: top 0.3s ease,opacity 0.3s ease;
  -moz-transition: top 0.3s ease,opacity 0.3s ease;
  -ms-transition: top 0.3s ease,opacity 0.3s ease;
  transition: top 0.3s ease,opacity 0.3s ease;
}
.floating-label-form-group::not(:first-child) {
  padding-left: 14px;
  border-left: 1px solid #eeeeee;
}
.floating-label-form-group-with-value label {
  top: 0;
  opacity: 1;
}
.floating-label-form-group-with-focus label {
  color: #000000;
}
form .row:first-child .floating-label-form-group {
  border-top: 1px solid #eeeeee;
}
.btn {
font-family: "National Park", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 15px 25px;
}

.btn-fb {
font-family: "National Park", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 20;
  padding: 15px 25px;
  background-color: #1877f2;
color: white;
}

.btn-lg {
  font-size: 16px;
  padding: 25px 35px;
}
.btn-default:hover,
.btn-default:focus {
  background-color: #000000;
  border: 1px solid #000000;
  color: white;
}
.pager {
  margin: 30px 0 30px 0;
}
.pager li > a,
.pager li > span {
font-family: "National Park", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 15px 25px;
  background-color: white;
  border-radius: 0;
}
.pager li > a:hover,
.pager li > a:focus {
  color: white;
  background-color: #000000;
  border: 1px solid #000000;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #808080;
  background-color: #404040;
  cursor: not-allowed;
}
::-moz-selection {
  color: white;
  text-shadow: none;
  background: #000000;
}
::selection {
  color: white;
  text-shadow: none;
  background: #000000;
}
img::selection {
  color: white;
  background: transparent;
}
img::-moz-selection {
  color: white;
  background: transparent;
}
body {
  webkit-tap-highlight-color: #000000;
}
.breadcrumb {
  background-color: transparent;
  border-radius: 0px;
  font-size:16px;
  list-style: outside none none;
  margin-bottom: 20px;
  padding: 0px;
font-family: "National Park", sans-serif;
  color: white;
  text-align:center;
    visibility: hidden;
}
.breadcrumb a {
  color:white;  
}
.tab {
  margin-bottom:30px;  
}
.left {
  text-align:left;
}
.copyright p {
  margin:0;
}
.copyright a:link,
.copyright a:visited {
    color: #FFFFFF; /* White */
}

/* Changes the link color when the user hovers over it */
.copyright a:hover {
    color: #FAFA37; /* Bright Yellow/Chartreuse */
}

/* Optional: Sets the color when the link is being clicked (active) */
.copyright a:active {
    color: #FFFFFF; /* Stays white, or use another color if you prefer */
}
}

.toolbox {
 margin-bottom:30px;
}

.toolbox span {
  margin-right:20px;
  display:inline-block;
}

.toolbox .share {
  margin-right: 0;
}

.toolbox .share a {
  margin-left: 5px;
}

#comments {
  margin-bottom: 20px;
}

.tags a:after {
  content:", ";
}
.tags a:last-child:after {
  content:"";
}

.featured {
  font-size: 28px;
}

.featured blockquote {
  border-left: none;
  font-size: 28px;
}

.features {
  margin:30px 0;
}

blockquote.category {
  border:none;
  padding:0;
}

.social-logo a {
  margin-right: 10px!important;
  color: white;
}
.social-logo a:last-child {
  margin-right:0!important;
  color: white;
}

/* /// LOGO IN CSS */

.LOGOYellow {
    width: 7px;
    height: 10px;
    transform: skew(-52deg);
    background: #f7ff14;
    display: inline-block;
  }

.LOGOGray {
    width: 7px;
    height: 10px;
    transform: skew(-52deg);
    background: #878787;
    display: inline-block;
  }
  
 .LOGOBlack {
    width: 7px;
    height: 10px;
    transform: skew(-52deg);
    background: #000000;
  display: inline-block;
  } 		 
	 div.scroll-container {
  background-color: #fff;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
  
 
/* Mobile Menu Fix */
@media only screen and (max-width: 767px) {
  .navbar-custom {
    position: relative; /* Pushes the header image down so nav doesn't overlap */
    background-color: #222222; /* Adds a dark background to the menu */
    padding: 10px 0; /* Adds a little space inside the menu */
  }

  /* Ensure text is white so it is visible against the dark background */
  .navbar-custom .navbar-brand,
  .navbar-custom .nav li a {
    color: white;
  }
  
  /* Optional: Ensure the hamburger menu button is white */
  .navbar-toggle {
      border-color: white;
  }
  .navbar-toggle .icon-bar {
      background-color: white;
  }
}

.featured-image img {
    width: 100%; /* or a fixed width like 200px */
    height: auto;
    object-fit: cover;
    max-height: 150px; /* limits height if you want a uniform look */
}