/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barriecito", system-ui;
  font-size: 1.5rem;
  line-height: 1.6;
 background-color:#ffe7c8 ;
background-size: cover;
border: 20px solid #841415;
background-position: center;
background-repeat: no-repeat;
  color: #870c11;
  padding: 20px;


}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 4.5rem;
  color: #870c11;
}

h2 {
  margin-top: 40px;
  color: #870c11;
}

section {
  margin-bottom: 30px;
}

.project {
  border: 6px solid #841415;       
  padding: 20px;                  
  margin-bottom: 20px;            
  border-radius: 10px;            
  background-color: #b17163; 
}
.project1 {
  border: 6px solid #841415;       
  padding: 20px;                  
  margin-bottom: 20px;            
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);           
  background-color: #b17163; 
}
.project2 {
  border: 6px solid #841415;       
  padding: 20px;                  
  margin-bottom: 20px;            
  border-radius: 10px;            
  background-color: #b17163; 
}
.image-row3 {
  display: flex;
  gap: 20px; /* space between images */
  flex-wrap: wrap; /* makes them stack on small screens */
  justify-content: center; /* center them horizontally */
  background-color: #915649; 
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.image-row3 img {
  max-width: 200px;
   border: 6px solid #841415;
  width: 200%;
  height: 200%;
  border-radius: 10px;
}
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
.image-row3 img:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

a:hover {
  text-decoration: underline;
}

#contact {
  background-color: #b17163;
  border: 6px solid #841415;
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
  width: 40%;
  max-width: none;
  text-align: left;
}

#contact h2,
#contact p {
  margin-left: 0;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  max-width: 400px;
}

#contact-form input,
#contact-form textarea {
  padding: 12px 15px;
  border: 6px solid #841415;
  border-radius: 10px;
  font-size: 16px;
   font-family: "Barriecito", system-ui;
  width: 100%;
  box-sizing: border-box;
}

#contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

#contact-form button {
  background-color: #841415;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
   font-family: "Barriecito", system-ui;
  font-size: 16px;
  transition: background 0.3s ease;
  width: fit-content;
}

#contact-form button:hover {
  background-color: #841415;
}

#thank-you {
   font-family: "Barriecito", system-ui;
  font-size: 18px;
  color: #4CAF50;
  margin-top: 20px;
}


footer {
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
}
