/*-------- Design Variables ---------*/
:root{
    --p-size: 1.2em;
    --h3-size: 1.4em;
    --h5-size: 1.2em;
    --h6-size: 1em;

    --icon-width: 50px;
}


/* ------- Temporary Gallery CSS ------- */
/* Home page gallery links */
.gallery-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-links a {
  display: block;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  transition: box-shadow 0.2s ease;
}

.gallery-links a:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Back to home link on gallery pages */
.home-link {
  text-align: center;
  margin-bottom: 40px;
}

.home-link a {
  font-weight: bold;
  color: #333;
}

.home-link a:hover {
  color: #0077cc;
}

/* Image gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image containers */
.photo-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.photo-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.photo-container img:hover {
  transform: scale(1.2);
}







/*----------Text Formatting----------*/
p{
    font-size: var(--p-size);
    margin: 0px;
}	 
h3 { font-size: var(--h3-size); }
h5 {
    font-size: var(--h5-size);
    margin: 0px;
    padding-top: 10px;
}
h6 {
    font-size: var(--h6-size);;
    margin: 0px;
    padding-top: 10px;
}


/*-------- Generic Elements ----------*/
a { text-decoration: none; }
.button {
    border: none;
    display: inline-block;
    padding: 0.5em 0em;
    cursor: pointer;
    width: 100%;
}