/* Reset some basics */
:root {
  --brand-red: #7E032B;
  --content-max-width: 1200px;
  --main-image-max-width: 800px;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Century Gothic, Arial, sans-serif;
  background: #fff;
  color: #2a2a2a;
}

.container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 12px 0;
}

.navbar-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-links a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.navbar-phone {
  color: #3F4243;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.topbar {
  width: 100%;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
}

.topbar-content {
  text-align: center;
  padding: 8px 0;
  font-size: 0.95rem;
}

.topbar-content a {
  color: var(--brand-red);
  text-decoration: none;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 0 0;
}

.main-image {
  width: 100%;
  max-width: var(--main-image-max-width);
  margin: 0 auto 24px auto;
  text-align: center;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.image-subheader {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  width: 100%;
  max-width: var(--main-image-max-width);
}

.triptic-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  
    width: 100%;
}

.triptic-images a {
  max-width: 32%;
  margin: 0.5rem;
}

.triptic-img {
  position: relative;
  width: 250px;
  height: auto;
    /* width: auto;
    border-radius: 0.25rem; */
}

.main-title {
  font-size: 1.7rem;
  color: var(--brand-red);
  font-weight: bold;
  margin-bottom: 18px;
  text-align: left;
  width: 100%;
  max-width: var(--main-image-max-width);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.red-link {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: bold;
}

.main-text {
  font-size: 1.1rem;
  color: #2a2a2a;
  line-height: 1.7;
  text-align: justify;
  width: 100%;
  max-width: 800px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.98rem;
  color: #3F4243;
  text-align: center;
}

.footer-links a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 900px) {
  .main-image, .main-title, .main-text {
    max-width: 100%;
  }
  .container {
    padding: 0 8px;
  }
}

@media (max-width: 600px) {
  .navbar-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
  .navbar-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .navbar-links {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
  }
  .main-content {
    padding: 16px 0 0 0;
  }
  .main-title {
    font-size: 1.2rem;
    padding: 0 0.4rem;
    box-sizing: border-box;
  }
  .main-text{
    width: 100%;
  }
  .main-text p{
    width: calc(100% - 1.6rem);
    font-size: 1rem;
    padding: 0 0.8rem;
  }
  .footer-content {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }
  .navbar-logo img {
    height: 3rem;
  }
  .triptic-images {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .triptic-images a {
    max-width: calc(100% - 1rem);
    margin: 0.5rem 0;
  }
  .triptic-img {
    width: 100%;
    max-width: 100%;
  }
}