
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');




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

  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
  "wdth" 100;
  margin: 0;
  padding: 0;
  text-align: center;
  color:#0D0D0D;
	
}

/* 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: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

h2 {
	color: #404E8F;
 top-margin: 20%;
  font-size: 3.8rem;
  font-family: "Karla", sans-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 {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: 5% auto;
  display: block;
  max-width: 90%;
  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;
  }
}
