@charset "utf-8";
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*fonts*/
/*  Regular */
@font-face {
  font-family: 'Crimson Regular';
  src: url('../fonts/CrimsonText-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* Regular Italic */
@font-face {
  font-family: 'Crimson RegularItalic';
  src: url('../fonts/CrimsonText-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

/*  Semibold */
@font-face {
  font-family: 'Crimson Semibold';
  src: url('../fonts/CrimsonText-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* Semibold Italic  */
@font-face {
  font-family: 'Crimson SemiboldItalic';
  src: url('../fonts/CrimsonText-SemiboldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
}

/* Bold*/
@font-face {
  font-family: 'Crimson Bold';
  src: url('../fonts/CrimsonText-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* Bold Italic*/
@font-face {
  font-family: 'Crimson BoldItalic';
  src: url('../fonts/CrimsonText-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
	background-color: #dabdb1;
}

.banner {
  width: 100%;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #006849;
    color: white;
	font-family: 'Crimson Semibold';
}

.logo h1 {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
	transition: transform 0.3s ease, color 0.3s ease;
}


nav ul li a:hover {
    transform: scale(1.1); 
    color:#F8BC7D;       
}


.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
}
h2{
    align-content: center;
    color: white;
    background-color: #006849;
    font-family: 'Crimson Semibold';
    font-size: 55px;
	}
p{
	align-content: center;
	color: black;
	

}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('your-image.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
/* Header */
.about-header {
    text-align: center;
    margin: 20px 0;
    font-size: 36px;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    width: 100%;
    margin: 20px 0;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-block img {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
}

.about-block p {
    max-width: 45%;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 20px;
}



/* Footer */
footer {
    text-align: center;
	padding-top: 60px;
    padding: 50px;
    background-color: #006849;
    color: #fff;
}
	
	

/* make the shit groovy*/
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
        text-align: center;
    }

    .burger {
        display: block;
    }

    .about-block {
        flex-direction: column;
        text-align: center;
    }

    .about-block.reverse {
        flex-direction: column;
    }

    .about-block img {
        max-width: 90%;
        margin: 10px 0;
    }

    .about-block p {
        max-width: 90%;
        margin: 10px 0;
    }
}

