﻿/* Styles For Charlies Blog */

/* FONTS */

body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* HEADING STYLES */

h1, .h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #7da748
}

h2, .h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: #7da748
}

h3, .h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.8rem;
	color: #7da748
}

h4, .h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

h5, .h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

h6, .h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* PARAGRAPH STYLES */

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #212529; /* Bootstrap’s standard text color */
}

p.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #343a40; /* Slightly darker for emphasis */
  margin-bottom: 1.5rem;
}

/* Blog Styles */
.blog-post {
  border-bottom: 1px solid #333;
  font-family: 'Segoe UI', sans-serif;
}

.blog-post .post-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.blog-post .highlight {
  color: #7da748;
  font-weight: 600;
}

/* Themes */
.blog-dark {
  background-color: #111;
  color: #f4f4f4;
}

.blog-light {
  background-color: #fdfdfd;
  color: #222;
}

.blog-theme-orange {
  background: linear-gradient(to right, #331100, #662200);
  color: #fff;
}

.blog-theme-orange .highlight {
  color: #ff9900;
}

/* Rip Session */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px; /* try 600 or 500px */
  width: 100%;
}
.rip-hero-content {
  height: 600px;
  background-color: rgba(0, 0, 0, 0.3);
}
.rip-logo {
  max-width: 800px; /* This allows it to grow large but not break layout */
  width: 100%;
}
.rip-hero-content h2 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .rip-hero-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .rip-hero-content h2 {
    font-size: 20px;
  }
}
.bg-diagonal-teal-grey {
  background: url('https://charlesmohr.com/images/teil-grey-background.png') center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.bg-diagonal-grey-teal {
  background: url('https://charlesmohr.com/images/grey-teil-background.png') center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.bg-black {
  background-color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.contact-form-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 20px;
}

.contact-info li {
  margin-bottom: 6px;
}

.centered-contact-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-info a {
  font-size: 1.05rem;
}
