/*general*/
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #2c3e50;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  color: #34495e;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #555;
}

p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0.5rem auto;
  padding: 0 1rem;
}

hr {
  border: none;
  border-top: 2px solid #eee;
  margin: 3rem auto;
  max-width: 800px; 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 4px solid #abeaec;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/*specific styles*/
.split-heading {
  font-size: 2.5rem;
  margin: 2rem 0;
  line-height: 1.2; 
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr; /* image column | text column */
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* image column | text column */
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

/*Basic button stuff*/
.button {
  border: none;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3498db;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  margin: 1rem;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #2980b9;
}

.button-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  flex-wrap: wrap;   
  margin-top: 2rem;
  gap: 1rem;
  width: 100%;  
}

.button-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; 
  margin-top: 2rem;
  gap: 1rem;
  width: 100%;  
}

/*navbar*/
#navbar {
  background-color: #333;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

#navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

