@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /*added*/
/*@import url("http://fonts.googleapis.com/css?family=Montserrat:400,700");*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}     /*added*/
body {
  /*DARK MODE: background-color: black;
  color: #FFFFFF; */
  background-color: white;
  color: #000000;
  margin: 0;

  font-family: 'Montserrat', sans-serif;
}
/* added 7/20/2025 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
p {
  /*DARK MODE: color: #FFFFFF; */
  color: #000000;
  padding-left: 20px; /*added*/
  padding-right: 20px; /*added*/
}

.w3-content{position:relative;margin-top:0em;}

#header {
  background-color: #0000CD; /*was DC143C RED*/
  height: 50px;
  line-height: 50px;
  /*DARK MODE: color: #FFFFFF; */
  color: #FFFFFF; /*was 000000 BLACK*/
  }
  #header a {
    color: white;
    text-decoration: none;
    /*text-transform: uppercase; removed*/
    letter-spacing: 0.1em;
    /*DARK MODE: color: #FFFFFF; */
    color: #FFFFFF; /*was 000000 BLACK*/
  }
  #header a:hover {
    /*DARK MODE: color: #222; */
    color: #FFFFFF; /*was 000000 BLACK*/
    text-decoration: underline; /*added*/
    font-weight: bold; /*added*/
  }
#header-title {
  display: block;
  float: left;
  padding-left: 20px;
  font-size: 20px;
  font-weight: bold;
  /*DARK MODE: color: #FFFFFF; */
  color: #000000;
}
#header-nav {
  display: block;
  float: right;
  margin-top: 0;
  /*font-weight: bold; /*removed*/
  border-radius: 30px; /*added*/
}
#header-nav li {
  display: inline;
  padding: 0;
  padding-right: 20px;
}

video { /* added */
  width: 100%;
  height: auto;
}

ul {  /*added start*/
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}  

ul a {
  /*DARK MODE: color: white; */
  color: black;
}

ul li {
  padding: 5px;
  margin-left: 10px;
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
} 

#hamburger-icon {
  margin: -5px 0px; /* was auto 0; */
  display: none;
  float: right; /*added*/
  padding: 14px; /*added*/
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white; /*was black*/
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #000000; /*was FFFFFF WHITE*/
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0; /* was left: 0; */
  height: calc(100vh - 50px);
  width: 100%;
}

.mobile-menu li {
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  
  header nav {
    display: none;
    border-radius: 30px; /* added */
  }

  #hamburger-icon {
    display: block;
  }
}

/*added finish*/

.container {
  max-width: 1000px;
  margin: 0 auto;
}

#footer {
  background-color: #2f2f2f;
  padding-left: 20px; /*padding: 50px (removed)*/
  padding-right: 20px; /*added*/
}
.column {
  min-width: 300px;
  display: inline-block;
  vertical-align: top;
}
#footer h4 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#footer p {
  color: white;
}
/*link active*/
a{
  /* DARK MODE: color: #5BEF78; */
  color: #0000ff;
  text-decoration: none;
}
/*link hover*/
a:hover {
  /*DARK MODE: color: #0000ff; */
  color: #5BEF78;
  text-decoration: underline;
}
.post, .SupportMe {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.post-author img {
  width: 200px;
  height: 200px;
  vertical-align: middle;
  /*padding-left: 20px; /*added*/
}
.post, .Portfolio {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.post-author img, .SupportMe-author img {
  border-radius: 50%;
}
.post-author img, .Portfolio-author img {
  border-radius: 50%;
}
.post-author span {
  margin-left: 16px;
}
.post-date {
  color: #D2D2D2;

  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
h1, h2, h3, h4 {
  color: #000000; /*DARK MODE: color: #FFFFFF;*/ /*text color*/
  padding-left: 20px; /*added*/
  padding-right: 20px; /*added*/
}
p {
  line-height:1.5;
}
.SupportMe {
  text-align: left;
  padding-left: 20px; /*added*/
  padding-right: 20px; /*added*/
}
.Portfolio {
  text-align: center;
  padding-left: 20px; /*added*/
  padding-right: 20px; /*added*/
}
.post-container:nth-child(even) {
  background-color: #f2f2f2;
  /*padding-left: 20px; /*added*/
  /*padding-right: 20px; /*added*/
}
/* Dropdown Button */
.dropbtn {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  /*RED: background-color: #DC143C; */
  background-color: #0000CD;
  /*DARK MODE: color: white; */
  color: white; /*was black*/
  padding: 12px;
  font-size: 14px;
  border: none;
  /*font-weight: bold; /*removed*/
  border-radius: 30px; /* added */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000; /*was A9A9A9 GRAY*/
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  /*DARK MODE: color: white; */
  color: black;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
  /*font-weight: bold; /*removed*/
  border-radius: 30px; /* added */
}

/* Change color of dropdown links on hover */
/*DARK MODE:*/ .dropdown-content a:hover {background-color: #DC143C;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block; border-radius: 30px; /* added */}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #DC143C; font-weight: bold; text-decoration: underline;} /*was 0000CD: Blue added: font-weight & text-decoration*/

.responsive {
  max-width: 100%;
  height: auto;
}

.videoWrapperOuter {
  max-width:640px; 
  margin-left:auto;
  margin-right:auto;
}
.videoWrapperInner {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 50%;
  padding-top: 25px;
  height: 0;
}
.videoWrapperInner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Social Media Icons start */

.fa {
  padding: 20px;
  font-size: 50px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 30px; /* added */
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #000000;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #e95950;
  color: white;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-skype {
  background: #00aff0;
  color: white;
}

.fa-android {
  background: #a4c639;
  color: white;
}

.fa-dribbble {
  background: #ea4c89;
  color: white;
}

.fa-vimeo {
  background: #45bbff;
  color: white;
}

.fa-tumblr {
  background: #2c4762;
  color: white;
}

.fa-vine {
  background: #00b489;
  color: white;
}

.fa-foursquare {
  background: #45bbff;
  color: white;
}

.fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.fa-flickr {
  background: #f40083;
  color: white;
}

.fa-yahoo {
  background: #430297;
  color: white;
}

.fa-soundcloud {
  background: #ff5500;
  color: white;
}

.fa-reddit {
  background: #ff5700;
  color: white;
}

.fa-rss {
  background: #ff6600;
  color: white;
}

/* Social Media Icons end */

/*To Top*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
/*To Top end*/

/*Ad block detection start*/

/*Ad block detection end*/
