body {
  font-family: sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
}

p {
  color: #000000
}

header {
  background: #11595c;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 0.5rem 0 1rem;
  font-size: 1.2rem;
}

nav a {
  margin: 0 1rem;
  color: #11595c;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: rgb(0, 0, 0);
}

section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-bottom: 1.5rem;
  color: rgb(0, 0, 0);
  font-size: 50px;
}

h5 {
  color: #ffffff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.item {
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  color: #000000;
}

.portfolio-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.overlay .text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0 10px;
}

.carousel-item img {
  height: auto;
  width: 100%;
  display: block;
}

.square-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /* makes it a square */
  overflow: hidden;
  background-color: #000; /* optional placeholder bg */
}

.square-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m16-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.m16-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

#main-title {
   font-family: "Raleway", sans-serif;
   font-size: 50px;
   color: #ffffff;
}

a { 
  color: inherit; 
} 
