@media(max-width:900px){
    .column{
        width:50%;
    }
}

@media(max-width:600px){
    .column{
        width:100%;
    }
}


section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

body {
  background-color: #f1f1f5;
  margin: 0;
  font-family:"Gills sans", Verdana, sans-serif;
  font-weight:Normal;
  font-size:15px;
  position:relative;
  padding-bottom: 15%;
}

.row {
  display:flex;
  flex-wrap:wrap;
}

.column {
    width:33.33%;
    padding:10px;
}


.column img {
    width:100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

* {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    width: 33.33%;
    padding: 10px;
}

.column img {
    width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background:#a586bd;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 20px;
}
.navbar a.active{
  color: #444;
}

.navbar a {
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size: 19px;
    font-family:Arial, Helvetica, sans-serif
}

.berkshire-swash-regular {
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-style: normal;
}


.navbar-title {
  font-size: 25px;
  font-family: "Berkshire Swash", serif;
}

.navbar-links {
  font-size: 19px;
  font-family:Arial, Helvetica, sans-serif
}

.featured-image-block-title a:hover p {
  color: rgb(146, 101, 164);
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  background-color:#f1f1f5;
  color: rgb(12, 12, 12);
  text-align: center;
}
.about-section {
  padding: 60px 20px;
}

.about-text {
  padding: 20px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}
.about-image {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.about-section {
  align-items: center; 
}
@media screen and (max-width: 640px) {
  .about-text {
    padding-top: 30px;
    text-align: center;
  }
}

.btn {
  background-color: #a586bd;
  border: none;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
}
.btn:hover {
  background-color: #8657a9;
}

.project-container {
    max-width:1100px;
    margin:auto;
    padding:20px;
}


.project-layout {
    display: flex;
    gap: 10px;
    flex-direction: row;
}


.project-image {
    width:50%;
}


.project-image img {
    width: 80%;
    height:auto;
}


.project-description {
    width:50%;
}


.process-grid {
    display: flex;
    gap: 40px;
}

.process-image {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.process-image img {
  width: 300px;
  height: auto;
}



@media(max-width:800px){

    .project-layout {
        flex-direction:column;
    }

    .project-image,
    .project-description {
        width:100%;
    }

    .process-grid {
        flex-direction:column;
    }


    .process-image {
        width:100%;
    }

}

.righteous-regular {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.no-underline {
  color:#444;
  font-family: "Righteous", sans-serif !important;
  font-size: 16px !important;
  text-decoration: none;
  text-align: center;
}

h1 {
  color:#444;
  font-family: "Righteous", sans-serif !important;
  font-size: 26px !important;
  text-decoration: none;
}

.form-box {
  background-color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid #d1d0d0;
}

