
body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    background-color: #8B0000; /* deep crimson */
    color: white;
}
header, nav, footer {
    text-align: center;
    background-color: #1e1e1e;
    padding: 20px;
}
nav a {
    color: gold;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    text-align: center;
    padding: 50px 20px;
}
.testimonials {
    padding: 40px;
    background-color: #8B0000;
    text-align: center;
}
.testimonial {
    border: 2px solid #2c2c2c;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    background-color: #1e1e1e;
    border-radius: 10px;
}
.testimonial p {
    font-style: italic;
}
.testimonial h4 {
    color: gold;
}

.photo-border {
    border: 4px solid #2c2c2c;
}
.social-links {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #1e1e1e;
  color: gold;
  border-radius: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 15px;
  transition: transform 0.3s;
}

.social-icons img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); /* makes icons white/gold if needed */
}

.social-icons a:hover {
  transform: scale(1.1);
}
.gallery-section {
  text-align: center;
  padding: 40px 20px;
}

.gallery-section h2 {
  font-size: 2rem;
  color: gold; 
  margin-bottom: 20px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-grid img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border: 3px solid #2a2f32;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}