body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}
header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    font-family: 'Sedan', serif; /* Apply Sedan font */
}
.header-container a{
    text-decoration: none;
}
header h1{
    font-size: 1.5em;
    margin: 0;
    text-align: center;
    flex: 1;
    font-weight:normal;
}
.menu-icon {
    cursor: pointer;
    font-size: 24px;
    display: inline;
    margin-left: auto;
}
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(64,58,58, 0.9);
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.nav-menu.active {
    display: flex;
}
.nav-menu li {
    margin: 20px 0;
}
.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 24px;
}
.close-menu {
    position: absolute;
    top: 20px;
    right: 60px;
    font-size: 30px;
    cursor: pointer;
}
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.textlink{
    color:#333;
    text-decoration: underline;
}
.textlink :hover{
    color:#333;
    text-decoration: underline;
}
.textlink :visited{
    color:#333;
    text-decoration: underline;
}

.row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px; /* Space between rows */
}
.row > div {
    flex: 1 1 45%;
    box-sizing: border-box;
    padding: 20px;
}

.row3{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px; /* Space between rows */
}
.row3 > div {
    flex: 1 1 30%;
    box-sizing: border-box;
    padding: 20px;
}
.intro {
    font-family: 'Sedan', serif; /* Apply Sedan font */
    /*font-size: xxx-large;*/
    font-size:40px;
    line-height: normal;
    font-weight: 400;
}
.image-section img {
    max-width: 100%;
    height: auto;
}
h2.sub-header{
    font-family: 'Sedan', serif; 
    font-size:2em;
    padding-bottom:20px;
}
.banner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /*margin:20px 20px 40px 20px;*/
    background-color: #E8E3D3;
    /*padding:40px 20px 20px 20px;*/
}
.retreat{
    min-width:425px;
}
.banner-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px;
}
.banner .sub-header{
    margin:auto;
}
.banner .row .text-section{
    text-align: center;
    line-height: normal;
}
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
.testimony{
    padding:20px 0px 20px 0px;
}
.testimony .sub-header{
    margin:auto;
    text-align: center;
}
.testimony .text-section p{
    border: 1px solid #000;
    padding:20px;
}
.text-section p{
    padding:0 0 20px 0px;
    line-height: normal;
}
.formations-date{
    font-family: 'Sedan', serif; 
    font-weight: bold;
    font-size:20px;
    padding:0 0 5px 0px !important; 
}
.formations-location{
    font-weight: bolder;
    padding:0 0 5px 0px !important;
    font-size:20px;
}
.formations-title{
    font-style: italic;
}
.row3 .text-section{
    text-align: center;
}
.row3 .text-section p{
    text-align: center;
    padding:0 0 30px 0px;
}
.btn{
    background-color: #FFF;
    color: black;
    border: 2px solid #000;
    padding:20px;
    margin:auto;
}
.btn:hover {
    background-color: #403A3A;
    color: white;
}

.btn-banner {
    background-color: #E8E3D3;
    color: black;
    border: 2px solid #000;
    padding:20px;
    margin:auto;
}
.btn-banner:hover {
    background-color: #403A3A;
    color: white;
}
.author{
    text-transform: uppercase;
    font-size:small;
    color:#FFF;

}

/* FOOTER */

.footer {
    background-color: #403A3A;
    color: white;
    margin-top: 20px;
    width: 100%;
    padding: 20px 0;
}
.footer-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px;
}
.footer h1{
    font-family: 'Sedan', serif;
    font-size: 2em;
    margin: 0;
    text-align: center;
    flex: 1;
    text-transform: uppercase;
    font-weight:400;
    padding-bottom:30px;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-column {
    box-sizing: border-box;
    padding: 10px;
}
.footer-column h3{
    box-sizing: border-box;
    padding-bottom: 20px;
}
.footer-column:nth-child(-n+3) {
    flex: 1 1 calc(66.66% / 3);
}
.footer-column:nth-child(4) {
    flex: 1 1 33.33%;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
}
.footer-column ul {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}
.footer-column li {
    margin: 5px 0; /* Space between list items */
}
.footer-column a {
    text-decoration: none; /* Remove underline from links */
    color: white; /* Adjust color as needed */
}
.footer-column p {
    margin: 0; /* Remove margin from paragraph */
}
.show-for-large{
    display: block;
}
.show-for-small{
    display:none
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    .row > div {
        flex: 1 1 100%;
    }
    .row3 > div {
        flex: 1 1 100%;
    }
    .row  { display: flex; flex-flow: column; }
    .secondblock{order:1;}
    .firstblock{order:2;}
    .footer-columns {
        flex-direction: column;
    }
    .footer-column {
        flex: 1 1 100%;
    }
    .banner{
        width:fit-content;
    }
    .quote{
        font-size:xx-small;
    }
    .retreat{
        min-width:none;
    }
    .nav-menu{
        align-items:normal;
    }
    .hide-for-small{
        display:none;
    }
    .show-for-small{
        display:block
    }
}