@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Francois+One&family=Lato:wght@200;400;700&display=swap');


 

body {
  background: #1d1d1d;
  color: #edeae3;
  font-family: 'Lato', sans-serif;
  font-size: 1.2em;
}

.background-white {
  background: #ffffff;
}

.background-newsprint {
  background: #eceae4;
  color: #1d1d1d;
}

.background-shop {
  background: #ffb81c;
  color: #1d1d1d;
}

h1 {
  font-family: 'Francois One', sans-serif;
}

h2 {
  font-family: 'Francois One', sans-serif;
  font-size: 1.7em;
}

h2.shop-header {
  font-family: 'Francois One', sans-serif;
  font-size: 1.2em;
  padding-top: 5%;
}

.text-1d1d1d {
  color:#1d1d1d;
}

.social-icons {
  font-size: 2rem; 
  color: #eceae4;
  padding-right: 10%;
}

.row {
  flex-wrap: wrap;
}

.col-md-6, .col-md-4, .col-12 {
  flex: 0 0 auto;
  max-width: 100%;
}

.my-container-width {
  max-width: 1080px;
}

.my-spacer-3b {
  padding: 5%;
}

/* for links under comic thumbnails */
.my-spacer-5 {
  padding-top: 5%;
}

.my-spacer-3c {
  padding-bottom: 3%; 
  height: 3%;
}

/* Regular links */
a:link {
  text-decoration: none !important;
  font-weight:500;
  color:#2f71bd;
}

a:visited {
  text-decoration: none !important;
  color:#2f71bd;
}

a:hover {
  text-decoration: underline !important;
  color:#2f71bd;
}

a:active {
  text-decoration: underline !important;
  color:#2f71bd;
}

/* Shop links */
a.shop-link:link, 
a.shop-link:visited,
a.shop-link:hover,
a.shop-link:active {
  text-decoration: none !important;
  color:#2f71bd;
  font-size: 0.9em;
  font-weight: 400;
}

a.shop-link:hover,
a.shop-link:active {
  text-decoration: underline !important;
}

/* footer */
footer {
  font-family: 'Lato', sans-serif;
}

footer ul li {
  padding: 3% 0;
  font-family: 'Lato', sans-serif;
}

.about span, .contact span, .language span {
  font-family: 'Francois One', sans-serif;
  font-size: 1.2em;
}

.about li p , .contact li a {
  text-decoration:none;
  color: #edeae3;
  font-weight: 400;
}

ul.language li {
  display:inline;
  padding: 0 2%;
}
.language li a {
  text-decoration:none;
  color: #edeae3;
  font-weight: 400;
}

.about , .contact {
  list-style: none;
}

.navbar-brand {
  background-color: #1d1d1d !important;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Yellow button style */
.btn-yellow {
  background-color: #f1c40f;
  color: #1d1d1d;
  border: 2px solid #1d1d1d;
  padding: 0.414em 1.228em; /* Equivalent to 10px 20px */
  font-size: 1.1em; 
  border-radius: 1.786em; /* Equivalent to 25px */ 
}

.btn-yellow:hover {
  background-color: #f39c12;
  border: 2px solid #1d1d1d;
}

/* Top navigation links style */
.navbar-nav .nav-link {
  color: #eceae4 !important; /* Text color */
  font-size: .9em; /* Font size */
  font-weight: bold;
  padding: 0.5rem 1rem; /* Padding around the text */
  margin: 0.5em 0em;
}

.navbar-nav .nav-link:hover {
  color: #f1c40f; /* Hover color */
}

#navbar {
  background-color: #1d1d1d !important;
}

#navbarSupportedContent .nav-item .nav-link.disabled {
  color: #f1c40f !important;
}

/* Make hamburger menu icon (navbar toggler) white 
Keep this section at the bottom of this style sheet
*/
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* optional */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

@media (max-width: 767.98px) {
  /* Existing nav spacing adjustments */
  #navbarSupportedContent .navbar-nav .nav-item {
    margin-bottom: 0.2rem !important;
  }

  #navbarSupportedContent .navbar-nav .nav-link {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Logo adjustment on mobile */
  .navbar-brand img {
    width: 95% !important;    /* Make logo span 95% width on mobile */
    max-width: 95vw;          /* Prevent overflow */
    display: block;           /* To center by margin auto */
    margin-left: auto;
    margin-right: auto;
    height: auto;             /* Preserve aspect ratio */
  }
}


/* add spacing between stacked columns on mobile */
@media (max-width: 767.98px) {
  .col-md-6, .col-md-4 {
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-bottom: 1rem;
  }

  /* Reduce spacing between navbar items on mobile */
  .navbar-nav .nav-link {
    padding-top: 0.25rem;   /* less vertical padding */
    padding-bottom: 0.25rem;
    margin: 0.1em 0;        /* smaller vertical margin */
  }

  /* Optional: Reduce bottom margin between nav-items as well */
  .navbar-nav .nav-item {
    margin-bottom: 0.2rem;  /* smaller gap between items */
  }

	
	
