/*
Theme Name: Transitions Thru Life Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Custom theme for Transitions Thru Life
Version: 1.0
Text Domain: transitionsthrulifetheme
*/
/* Reset default styles */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}


body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Remove default link styles */
a {
  text-decoration-color: transparent;
  color: inherit;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default table borders and spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Set image and other media elements to be responsive */

/* Remove form input and button default styles */
input, button, textarea, select {
  border: none;
  outline: 1px solid transparent;
  background: transparent;
}

/* Normalize button focus */
button:focus {
  outline: none;
}

:root {
 --title-font: "EB Garamond", 'Times New Roman', Times, serif;
  --heading-font: "Cormorant Garamond", Arial, Helvetica, sans-serif;
  --body-font: "Hind Madurai", Arial, Helvetica, sans-serif;
  --decor-font: "Dancing Script", Arial, Helvetica, sans-serif;
  --body-size: 1.2em;
  --green: #0F3B2E;
  --sage: #C9D5C1;
  --cream: #f6f1e7;
  --rose: #C9A39A;
  --bronze: #7A6A4F;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-size);
  margin: 0;
  padding: 0;
  background: #f8f8f8 url("background.png");
  background: #f8f8f8 image-set(
  
    url("background.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1{
    font-family: var(--title-font);
    
}h2, h3, h4, h5, h6{
    font-family: var(--heading-font);
    margin: .2rem;
    padding: 0;
}
header{
    background-color: var(--green);
    margin: 0;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
header img {
  height: 125px;
  display: inline;
  flex-shrink: 0;
}
header nav{
    padding-left: 10em;
    display: flex;
    align-items: center;

    
    flex: 1; /* 👈 this makes nav fill remaining space */


}
header nav ul{
    display: flex;

  flex: 1; /* 👈 this makes nav fill remaining space */


    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
header nav ul li{
    margin: 0;
    padding: 0;
}

header nav ul li a{
    margin: auto;
    font-size: 1.4rem;
    font-family: var(--heading-font);
    color: var(--cream);
    font-weight: bold;

}
header nav ul li a:hover, footer a:hover{
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--rose);
}
.page-title{
    margin-top:0;
    margin-left: 0;
    margin-right: 0;
    background-color: var(--cream);
    
}.page-title h1{
    color: var(--green);
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0px 0px 1px var(--green);
    font-family: var(--heading-font);
    text-align: center;
    font-variant: small-caps;
    margin: 0;
}
main{
    min-height: 400px;
}
.page-content {
  max-width: var(--content-width, 90%);
  margin-inline: auto;
}



.content-cream{
    margin: 2em;
    background-color: var(--cream);
    padding: 1rem;
    border-radius: 10px;
    color: var(--green);
}.content-green{
    margin: 2em;
    background-color: var(--green);
    padding: 1rem;
    border-radius: 10px;
    color: var(--cream);
}

footer{
    margin-top: 2rem;
    background-color: var(--green);
    color: var(--cream);
    text-align: center;
    padding: 1rem;
    font-family: var(--heading-font);
    
}
.align-center{
    text-align: center;
    margin: 0 auto;
}
.emphatic-title{
    font-family: var(--decor-font);
    font-size: 2.3rem;
    
}
.standard-img{
  height:100%!important;
  margin: 0!important;
  padding: 0!important;
 
  display: flex!important;
  flex-direction: column!important;
justify-content: center!important;}

.standard-img img{
  margin: 0 auto!important;
  padding: 0!important;
    max-width: 100%!important;
    height: auto!important;
border-radius: 10px!important;
  }
  .emphasis{
    font-weight: bold;
    font-size: 1.3rem;
    font-family: var(--heading-font);
    text-align: center;
  }

  
  /* Core image alignment support */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

/* Block editor images */
.wp-block-image.aligncenter {
  text-align: center;
}

@media (max-width: 1100px) {
  header {
    flex-direction: column;
    align-items: center;
  }
header nav{
    padding-left: 0;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;

    


}
header nav ul{
  width: 100%;
    display: flex;

  flex: 1; /* 👈 this makes nav fill remaining space */


    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

}
@media (max-width: 800px) {
header nav ul{
  width: 100%;
    display: block;
    text-align: center;
    padding: 0;
}
header nav ul li{
  margin: 0;
  font-size: 1.4rem;
}
}
@media (max-width: 550px){
    
    .page-content{
        width: 95%;
        margin-inline: auto;

    }.content-cream, .content-green{
        margin-left: 0em;
        margin-right:0em;
        margin-inline: auto;
    }
    main{
           }
    article{
      
    }
}