/*
	Name: Bashing HTML5
	Date: December 2024
	Description: Edited sample layout for HTML5 and CSS3 goodness.
	Version: 1.0
	License: MIT <https://opensource.org/licenses/MIT>
	Licensed by: FC Renew, thanks to Smashing Media GmbH <https://www.smashingmagazine.com/>
	Original author: Tyler Serio, thanks to Enrique Ramírez <http://enrique-ramirez.com/>
*/

/* Imports */
@import url("reset.css");
@import url("pygment.css");
@import url("typogrify.css");
/* @import url("fonts.css"); */

/***** Global *****/
/* Body */
body {
    background: #afeffa;
    color: #000305;
    font-size: 18px; /* Base font size: 14px */
    font-family: Montserrat Medium;
    line-height: 1.429;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.home {
	background-image: linear-gradient(rgba(175,239,250,0.95), rgba(175,239,250,0.95)), url("../../images/FC-Renew-Edited-1024x313.png");
	background-color: #afeffa;
}

/* Headings */
h1 {font-size: 2em }
h2 {font-size: 1.571em}	/* 22px */
h3 {font-size: 1.429em}	/* 20px */
h4 {font-size: 1.286em}	/* 18px */
h5 {font-size: 1.143em}	/* 16px */
h6 {font-size: 1em}		/* 14px */

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: .8em;
    font-family: Times;
}

.aboutheader {
    font-size: 2em;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: .8em;
    font-family: Times;
    text-align: left;
    text-decoration: underline;
    font-style: italic;
}

h3, h4, h5, h6 { margin-top: .8em; }

hr { border: 2px solid #afeffa; }

hr.rounded { border: 18px solid #afeffa; border-radius: 5px; }

/*
html {
  --s: 10px; /* control the size*/
  --c1: #afeffa;
  --c2: #ffffff;
  
  --_g: #0000 90deg,var(--c1) 0;
  background: 
    conic-gradient(from 90deg at 2px 2px,var(--_g)),
    conic-gradient(from 90deg at 1px 1px,var(--_g)),
    var(--c2);
  background-size: var(--s) var(--s), calc(var(--s)/5) calc(var(--s)/5);
}
*/

/* Anchors */
a {outline: 0;}
a img {border: 0px; text-decoration: none;}
a:link, a:visited {
    color: #3093D6;
    padding: 0 1px;
    text-decoration: underline;
}
a:hover, a:active {
    background-color: #3093D6;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 1px #333;
}

.contentimagelink:hover, .contentimagelink:active {
    background-color: inherit;
    color: inherit;
    text-decoration: none;
    text-shadow: none;
}

h1 a:hover {
    background-color: inherit
}

/* Paragraphs */
div.line-block,
p { margin-top: 1em;
    margin-bottom: 1em;}


.articlecontent { text-align: left;}

.articlecontent h2 {
	text-align: center;
	font-weight: bold;
}

.articlecontent p {
    text-indent: 50px;
}

.articleimage { border: 5px solid #afeffa; max-width: 90%; display: block; margin-left: auto; margin-right: auto;}

.articlepoint { text-align: left; display: block;}

.articledate {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 0.8em;
    font-weight: bold;
    text-decoration: underline;
    text-indent: 0px;
}

.articleauthor {
    text-align: right;
    margin-right: 10px;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 0.8em;
    font-weight: bold;
    text-decoration: underline;
    text-indent: 0px;
}

strong, b {font-weight: bold;}
em, i {font-style: italic;}

/* Lists */
ul {
    list-style: outside disc;
    margin: 0em 0 0 1.5em;
}

ol {
    list-style: outside decimal;
    margin: 0em 0 0 1.5em;
}

li { margin-top: 0.5em;
    margin-bottom: 1em; }

.post-info {
    float:right;
    margin:10px;
    padding:5px;
}

.post-info p{
    margin-top: 1px;
    margin-bottom: 1px;
}

.readmore { float: right }

dl {margin: 0 0 1.5em 0;}
dt {font-weight: bold;}
dd {margin-left: 1.5em;}

pre{background-color:  rgb(238, 238, 238); padding: 10px; margin: 10px; overflow: auto;}

/* Quotes */
blockquote {
    margin: 20px;
    font-style: italic;
}
cite {}

q {}

div.note {
    float: right;
    margin: 5px;
    font-size: 85%;
    max-width: 300px;
}

/* Tables */
table {margin: .5em auto 1.5em auto; width: 98%;}

	/* Thead */
thead th {padding: .5em .4em; text-align: left;}
thead td {}

	/* Tbody */
tbody td {padding: .5em .4em;}
tbody th {}

tbody .alt td {}
tbody .alt th {}

	/* Tfoot */
tfoot th {}
tfoot td {}

/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
    display: block;
}

/***** Layout *****/
.body {clear: both; margin: 0 auto; max-width: 800px;}
img { max-width: 100%; border-radius: 10px; }
img.right, figure.right, div.figure.align-right {
    float: right;
    margin: 0 0 2em 2em;
}
img.left, figure.left, div.figure.align-left {
    float: left;
    margin: 0 2em 2em 0;
}

.contentimage { border: 5px solid #afeffa;}

/* .rst support */
div.figure img, figure img {  /* to fill figure exactly */
    max-width: 100%;
}
div.figure p.caption, figure p.caption { /* margin provided by figure */
    margin-top: 0;
    margin-bottom: 0;
}

/*
	Header
*****************/
#banner {
    margin: 0 auto;
    padding: 0.8em 0 0 0;
}

	/* Banner */
#banner h1 {
    font-size: 3.571em;
    line-height: 1.0;
    margin-bottom: .3em;
}

#banner h1 a:link, #banner h1 a:visited {
    color: #000305;
    display: block;
    font-weight: bold;
    margin: 0 0 0 .2em;
    text-decoration: none;
}
#banner h1 a:hover, #banner h1 a:active {
    background: none;
    color: #3093D6;
    text-shadow: none;
}

abbr {
    text-decoration: none;
}

#banner h1 strong {font-size: 0.36em; font-weight: normal;}

	/* Main Nav */
#banner nav {
    background: #000305;
    font-size: 1.143em;
    overflow: auto;
    line-height: 30px;
    /*margin: 0 auto 2em auto;*/
    margin: 0 auto 0 auto;
    padding: 0;
    text-align: center;
    max-width: 1200px;

    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
/*
#banner nav ul {text-align: center; width: 1200px}
#banner * {margin: 0 auto!important;}
*/

#banner nav ul {list-style: none; text-align: center; margin: 0 auto; max-width: 1200px;}
#banner nav li {float: none; display: inline; margin: 0;} /* Where the buttons are on the bar */

/*
#banner nav ul li {display: inline; padding: 0 10px 0 10px; margin: 0;}
#banner nav ul li:first-of-type{float: left; padding-left: 0;}
#banner nav ul li:last-of-type{float: right; padding-right: 0;}
https://stackoverflow.com/questions/28127853/even-distribution-of-buttons-various-widths-along-nav-bar
*/

#banner nav a:link, #banner nav a:visited {
    color: #fff;
    display: inline-block;
    height: 30px;
    padding: 5px 1.5em;
    text-decoration: none;
}
#banner nav a:hover, #banner nav a:active,
#banner nav .active a:link, #banner nav .active a:visited {
    background: #3093D6 /* #3093D6; */
    color: #3093D6;
    text-shadow: none !important;
}

#banner nav li:first-child a {
    border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;

    border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

#banner nav li:last-child a {
    border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;

    border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
}
/*
	Featured
*****************/
#featured {
    background: #fff;
    margin-top: 2em;
    margin-bottom: 2em;
    overflow: hidden;
    padding: 20px;
    max-width: 1200px;

    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

#featured figure {
    border: 2px solid #eee;
    float: right;
    margin: 0.786em 2em 0 5em;
    max-width: 248px;
}
#featured figure img {display: block; float: right;}

#featured h2 {color: #C74451; font-size: 1.714em; margin-bottom: 0.333em;}
#featured h3 {font-size: 1.429em; margin-bottom: .5em;}

#featured h3 a:link, #featured h3 a:visited {color: #000305; text-decoration: none;}
#featured h3 a:hover, #featured h3 a:active {color: #fff;}

/*   Fade-in Image   */
.fade-in {animation: fadeIn 2s;}
.fade-in-major {animation: fadeIn 2s;}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/*
	Body
*****************/
#content {
    background: #fff;
    margin-top: 2em;
    margin-bottom: 2em;
    overflow: hidden;
    padding: 20px 20px;
    max-width: 1200px;

    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

#content2 {
    background: #aaa;
    margin-bottom: 2em;
    overflow: hidden;
    padding: 20px 20px;
    max-width: 1200px;

    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

/*   Divider   */
.divider {
	background: #afeffa;
	width: 100%;
	border-radius: 10px;
}

/*
	Extras
*****************/
#extras {margin: 0 auto 3em auto; overflow: hidden;}

#extras ul {list-style: none; margin: 0;}
#extras li {border-bottom: 1px solid #fff;}
#extras h2 {
    color: #3093D6;
    font-size: 1.429em;
    margin-bottom: .25em;
    padding: 0 3px;
}

#extras .linknavigation {
    color: #3093D6;
    font-size: 1.429em;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: .25em;
    padding: 0 3px;
    font-family: Times;
}

#extras a:link, #extras a:visited {
    color: #444;
    display: block;
    /*border-bottom: 1px solid #F4E3E3;*/
    text-decoration: none;
    padding: .1em .2em;
}

#extras a:hover, #extras a:active {color: #fff;}

	/* Blogroll */
#extras .blogroll {
    float: left;
    max-width: 615px;
}

#extras .blogroll li {float: left; margin: 0 20px 0 0; max-width: 185px;}

	/* Social */
#extras .social {
    float: right;
    max-width: 175px;
}

/*
	About
*****************/
#about {
    background: #fff;
    font-style: normal;
    margin-bottom: 2em;
    overflow: hidden;
    padding: 20px;
    text-align: left;
    max-width: 760px;

    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

#about .primary {float: left; max-width: 165px;}
#about .primary strong {color: #C64350; display: block; font-size: 1.286em;}
#about .photo {float: left; margin: 5px 20px;}

#about .url:link, #about .url:visited {text-decoration: none;}

#about .bio {float: right; max-width: 500px;}

/*
	Footer
*****************/
#contentinfo {padding-bottom: 2em; text-align: right;}

/***** Sections *****/
/* Blog */
.hentry {
    display: block;
    clear: both;
    border-top: 1px solid #eee;
    padding: 1.5em 0;
}
li:first-child .hentry, #content > .hentry {border: 0; margin: 0;}
#content > .hentry {padding: 1em 0;}
.hentry img{display : none ;}
.entry-title {font-size: 3em; margin-bottom: 10px; margin-top: 0;}
.entry-title a:link, .entry-title a:visited {text-decoration: none; color: #333;}
.entry-title a:visited {background-color: #fff;}

.hentry .post-info * {font-style: normal;}

	/* Content */
.hentry footer {margin-bottom: 2em;}
.hentry footer address {display: inline;}
#posts-list footer address {display: block;}

	/* Blog Index */
#posts-list {list-style: none; margin: 0;}
#posts-list .hentry {padding-left: 10px; position: relative;}

#posts-list footer {
    left: 10px;
    position: relative;
    float: left;
    top: 0.5em;
    max-width: 190px;
}

	/* About the Author */
#about-author {
    background: #f9f9f9;
    clear: both;
    font-style: normal;
    margin: 2em 0;
    padding: 10px 20px 15px 20px;

    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

#about-author strong {
    color: #C64350;
    clear: both;
    display: block;
    font-size: 1.429em;
}

#about-author .photo {border: 1px solid #ddd; float: left; margin: 5px 1em 0 0;}

/* Slideshow */
/*
/* * {box-sizing:border-box} */

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}

.main-slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}

.slideimg {
  object-fit: contain;
  border-radius: 5%;
}

.mainslideimg {
  object-fit: contain;
  border: 5px solid #afeffa; 
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mainSlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  object-fit: contain;
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  margin-top: -11px;
  padding: 8px;
  color: #717171;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #BDBBBC;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  align: center;
}

.activedot, .dot:hover {
  /* background-color: #717171; */
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: 0}
  to {opacity: 1}
}

.slowfade {
  animation-name: slowfade;
  animation-duration: 4s;
}

@keyframes slowfade {
  from {opacity: 0}
  to {opacity: 1}
}

.fadeOut {
  animation-name: fadeOut;
  animation-duration: 4s;
}

@keyframes fadeOut {
  from {opacity: 1}
  to {opacity: 0}
}

/* End slideshow */

	/* Comments */
#comments-list {list-style: none; margin: 0 1em;}
#comments-list blockquote {
    background: #f8f8f8;
    clear: both;
    font-style: normal;
    margin: 0;
    padding: 15px 20px;

    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
#comments-list footer {color: #888; padding: .5em 1em 0 0; text-align: right;}

#comments-list li:nth-child(2n) blockquote {background: #F5f5f5;}

	/* Add a Comment */
#add-comment label {clear: left; float: left; text-align: left; max-width: 150px;}
#add-comment input[type='text'],
#add-comment input[type='email'],
#add-comment input[type='url'] {float: left; max-width: 200px;}

#add-comment textarea {float: left; height: 150px; max-width: 495px;}

#add-comment p.req {clear: both; margin: 0 .5em 1em 0; text-align: right;}

#add-comment input[type='submit'] {float: right; margin: 0 .5em;}
#add-comment * {margin-bottom: .5em;}

@media screen and (max-width: 500px) {
.entry-title {font-size: 2.5em; margin-bottom: 10px; margin-top: 0;}
.entry-title a:link, .entry-title a:visited {text-decoration: none; color: #333;}
.entry-title a:visited {background-color: #fff;}
}