@import url('https://fonts.googleapis.com/css2?family=Joan&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');





/* General Styles */
body {
  background-color: LemonChiffon; /* Cream */

  font-family: "PT-Sans-regular", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
  "wdth" 100;
  margin: 0;
  padding: 0;
  text-align: center;
  color:#0D0D0D;	
}
pre {
    font-size: 18px;
    line-height: 26px;
    text-align-last: left;
    padding: 30px;
}

/* Header + Navigation */
header {
  display: flex;
  justify-content: space-between; /* Title left, links right */
  align-items: center;
  padding: 10px 5%;
  flex-wrap: wrap; /* allow wrapping on small screens */
}

p {
	line-height: 30px;
	text-align: left;
}

h1 {
	
  margin: 5px 0;
  font-size: 2.8rem;
  font-family: "joan-regular", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

h2 {
	color: #404E8F;
  font-size: 3.8rem;
  font-family: "joan-regular", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h3 {

  font-size: 1.8rem;
  font-family: "joan-regular", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

nav {
  margin-top: 20px;
	 font-size: 1.2rem;
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #0D0D0D;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #BFBFBD;
}


a:link {
  text-decoration: none;
  color: #0D0D0D;
  font-weight: bold;
  transition: color 0.3s;
}

a:hover {
  color: #BFBFBD;
}

main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s;
}

img:hover {
  transform: scale(1.02);
}

/* Responsive Photo Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Modal for enlarged images */
.modal {
  position: fixed;
  z-index: 10;
  inset: 0;
  background-color: rgba(0,0,0,0.8);

  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}


/* Sticky footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f7f7f7;
  text-align: center;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
}


/* Responsive Navigation (mobile screens) */
@media (max-width: 600px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  nav a {
    display: block;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
  }
}
