/* ==========================================================================
   STRONGER MAGAZINE - MAIN STYLESHEET
   Combined from Kajabi theme CSS with Kajabi references removed
   ========================================================================== */

/* CUSTOM CSS FROM THEME SETTINGS */
/* This removes the shadow from the form button and creates a bit more spacing inside the button */
.btn {
  padding: 12px 40px;
  -webkit-box-shadow: 0 0px 0px #f9f9f9;
  box-shadow: 0px 0px 0px #f9f9f9;
}

/* This increases the font size of the medium sized button */
.btn--medium {
  font-size: 24px;
}

/* This increases the font size of the link lists */
.link-list__link {
  font-size: 18px;
}

/* This makes the form fields rounded and increased the padding so that the text doesn't get cut off by the rounded corners */
.form-control {
  border-radius: 30px;
  padding-left: 24px;
  padding-right: 24px;
}

/* This reduces the h1 font size of the blog post title on the blog feed page on desktop */
@media (min-width: 768px) {
  h1.blog-post-body__title {
    font-size: 58px !important;
  }
}

/* Bulleted lists with black arrows */
.bullet-arrow {
  list-style-type: none;
}

.bullet-arrow li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow li:before {
  content: '\2771 \2771';
  color: #000000;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with pink arrows */
.bullet-arrow-pink {
  list-style-type: none;
}

.bullet-arrow-pink li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-pink li:before {
  content: '\2771 \2771';
  color: #FF65BE;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with yellow arrows */
.bullet-arrow-yellow {
  list-style-type: none;
}

.bullet-arrow-yellow li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-yellow li:before {
  content: '\2771 \2771';
  color: #FEED00;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with green arrows */
.bullet-arrow-green {
  list-style-type: none;
}

.bullet-arrow-green li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-green li:before {
  content: '\2771 \2771';
  color: #05b7b9;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with blue arrows */
.bullet-arrow-blue {
  list-style-type: none;
}

.bullet-arrow-blue li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-blue li:before {
  content: '\2771 \2771';
  color: #5fd3fa;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* HEADER STYLES */
.header {
  background-color: transparent;
  font-size: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header a,
.header a.link-list__link,
.header a.link-list__link:hover,
.header .user__login a {
  color: #000000;
}

/* Header when sticky/scrolled */
.header.header--fixed {
  background-color: #000000;
}

.header.header--fixed a,
.header.header--fixed a.link-list__link,
.header.header--fixed a.link-list__link:hover,
.header.header--fixed .user__login a {
  color: #ceafaf;
}

.header.header--fixed .hamburger__slice {
  background-color: #ceafaf;
}

/* Mobile Header Styles */
@media (max-width: 767px) {
  .header {
    font-size: 16px;
  }
  
  .header a.link-list__link,
  .header__content--mobile {
    text-align: left;
  }
  
  .header--overlay .header__content--mobile {
    padding-bottom: 20px;
  }
}

/* Header Layout */
.header__wrap {
  width: 100%;
}

.header__content {
  width: 100%;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}

.media {
  display: flex;
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-left {
  justify-content: flex-start;
}

.justify-content-right {
  justify-content: flex-end;
}

/* Logo */
.logo {
  text-decoration: none;
  line-height: 1;
}

.logo__image {
  display: block;
  width: 150px;
}

.logo__text {
  font-size: 24px;
  font-weight: bold;
}

/* Navigation */
.link-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list__link {
  text-decoration: none;
  transition: opacity 0.3s;
}

.link-list__link:hover {
  opacity: 0.7;
}

.stretch {
  flex: 1;
}

.header__spacer {
  flex: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.hamburger__slices {
  width: 100%;
  height: 100%;
  position: relative;
}

.hamburger__slice {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000000;
  transition: all 0.3s;
}

.hamburger--slice-1 { top: 0; }
.hamburger--slice-2 { top: 11px; }
.hamburger--slice-3 { bottom: 0; }

@media (max-width: 767px) {
  .hidden--mobile {
    display: none !important;
  }
  
  .hamburger {
    display: block;
  }
  
  .link-list {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .hidden--desktop {
    display: none !important;
  }
}

/* SECTIONS */
.section {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.sizer {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .sizer {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.align-items-center {
  align-items: center;
}

/* Column Classes */
.col-6 { width: 100%; }
.col-7 { width: 100%; }
.col-8 { width: 100%; }
.col-10 { width: 100%; }
.col-12 { width: 100%; }

@media (min-width: 768px) {
  .col-6 { width: 50%; }
  .col-7 { width: 58.33%; }
  .col-8 { width: 66.67%; }
  .col-10 { width: 83.33%; }
  .col-12 { width: 100%; }
}

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Blocks */
.block {
  padding: 20px;
}

@media (min-width: 768px) {
  .block {
    padding: 30px;
  }
}

.box-shadow-none {
  box-shadow: none;
}

.box-shadow-medium {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Images */
.image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.image__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Background Classes */
.background-dark {
  color: #ffffff;
}

.background-light {
  background-color: #ffffff;
  color: #000000;
}

/* FOOTER */
.footer {
  background-color: #000000;
  color: #ffffff;
  font-size: 16px;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .footer {
    font-size: 18px;
  }
}

.footer__content {
  width: 100%;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a.link-list__link {
  color: #ffffff;
}

.footer .link-list__link:hover {
  opacity: 0.7;
}

.copyright {
  color: #ffffff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  text-align: center;
}

.btn--solid {
  color: #ffffff;
  border-color: #000000;
  background-color: #000000;
}

.btn--solid:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn--auto {
  width: auto;
}

/* FORMS */
.form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #000000;
}

.form-btn {
  width: 100%;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}

/* UTILITIES */
.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

@media (min-width: 768px) {
  body {
    font-size: 24px;
  }
}

main {
  min-height: calc(100vh - 200px);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: underline;
}

ol, ul {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
}
