body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #18301f;
  color: #f0f0f0;
}
header {
  background: #112115;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav a {
  color: #f0f0f0;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}
nav a:hover {
  color: #00bcd4;
}
.hero {
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: auto;
}
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
.contact {
  background: #38754a;
  padding: 40px;
  border-radius: 10px;
}
.contact a {
  color: #00bcd4;
  text-decoration: none;
}
a {
  color: #00bcd4;
}

/*button stuff*/

.section-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.section-buttons a {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: #00bcd4;
  color: #121212;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.section-buttons a:hover {
  background: #0097a7;
}

/* card stuff */
.card {
  width: 300px;
  background: #38754a;
  padding: 20px;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}


.card a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: bold;
}


.card a:hover {
  text-decoration: underline;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 30px; /* space between cards */
  justify-items: center; /* optional: center cards horizontally */
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}
.modal-content {
  background-color: #1e1e1e;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  color: #f0f0f0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.modal img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.close {
  color: #f0f0f0;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}



.plantpot-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.plantpot-button {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #121212;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.plantpot-button img {
  display: block;
  width: 250px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.plantpot-button span {
  position: absolute;
  bottom: 15px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 1.2em;
  pointer-events: none;
}


/* Hover effect */
.plantpot-button:hover img {
  transform: translateY(-10px) scale(1.05);
  filter: brightness(1.2);
}


.plantpot-button:hover {
  cursor: pointer;
}

