/* Base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #4f4f4f;
  color: #e0e0e0;
  /* line-height: 1.6; */
}

a {
  color: #e0e0e0;
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
}

/* Header */
header {
  text-align: center;
  padding: 1.5rem 1.5rem;
  background-color: #e0e0e0;
  color: #4f4f4f;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
    margin-top: 1rem;
}

/* Navigation */
nav {
  margin-top: 1.5rem;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-list li {
  display: inline;
}

.nav-list a {
  text-decoration: none;
  color: #4f4f4f;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #696969;
  border-bottom: 2px solid #696969;
}

/* Main Content */
main {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

h2.gif {
  font-size: 2rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 1rem;
}

.giphy-embed {
  display: block;
  margin: 0 auto 2rem;
  border-radius: 8px;
  max-width: 100%;
}

.section {
  background-color: #696969;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.title {
  font-size: 1.8rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  text-align: center;
}

.section p {
  margin-bottom: 1rem;
}

.section .preamble {
    text-align: center;
    font-size: large;
    font-weight: bold;
}

.card {
  background-color: #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 700px;
  color: #4f4f4f;
}

.card a {
    color: #4f4f4f;
    text-decoration: underline;
}

/* .card section p,h3 {
    
} */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-top: 1px solid #ccc;
}

.contact-info div {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 1.1rem;
}

.contact-info strong {
  min-width: 80px;
  color: #333;
}

.contact-info a {
  color: #0056b3;
  text-decoration: none;
  word-break: break-word;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #003f88;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.photo-gallery img {
  height: 400px; /* consistent portrait size */
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.photo-gallery img:hover {
  transform: scale(1.06);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #e0e0e0;
  color: #4f4f4f;
  margin-top: 2rem;
}
