
@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;
}
h2{
    align-content: center;
    color: white;
    background-color: #006849;
    font-family: 'Crimson Semibold';
    font-size: 55px;
}
p{align-content: center;
	color: black;
}

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;
}

/* Project Header */
.project-header {
    text-align: center;
    margin: 20px 0;
    font-size: 36px;
}

/* Work Gallery Styles */
.work-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.work-image {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    object-fit: cover;
	
}

.work-image:hover {
    transform: scale(1.05);
}

/* Project Description */
.project-description {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

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

/* Responsive Styles */
@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;
    }

    .row {
        flex-direction: column;
    }

    .work-image {
        max-width: 90%;
        margin-bottom: 20px;
    }
}