* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:  "Rubik", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background-color: #fff4e7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container {
  text-align: center;
  max-width: 48rem;
  width: 100%;
}

.header {
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #23110f;
  margin-top: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c33927;
}

h3 {
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #24381b;
}

p {
  text-align: left;
}

a:link, a:visited, a:active {
  color: #c33927;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  font-weight: 600;
}

.logo-placeholder {
  margin: 2rem 0;
}

.logo-placeholder img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.content {
  color: #23110f;
  line-height: 1.6;
}

.content p:first-child {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.content p:last-child {
  font-size: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .content p:first-child {
    font-size: 1.25rem;
  }

  .content p:last-child {
    font-size: 1.125rem;
  }
}

.three-column-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 1rem;
}

.column {
  text-align: center;
}

.column h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.thumbnail {
  margin: 1rem 0;
}

.thumbnail img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.column p {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .three-column-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0;
  }
}

.two-column-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.two-column-section .column {
  text-align: left;
}

.two-column-section h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.two-column-section p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #23110f;
}

@media (min-width: 768px) {
  .two-column-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #c33927;
}

.lightbox-trigger {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-trigger:hover {
  transform: scale(1.05);
}

.single-image-section {
  max-width: 800px;
  text-align: center;
  padding: 0 1rem;
}

.single-image-section h3 {
  margin-bottom: 1.5rem;
}

.single-image-section .thumbnail {
  margin: 2rem 0;
}

.single-image-section .thumbnail img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.single-image-section p {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #23110f;
}

@media (min-width: 768px) {
  .single-image-section {
    padding: 0;
  }
}

/* Footer Styles */
.footer {
    width: 100%;
    padding: 2rem 1rem;
    background-color: #fff4e7;
    color: #23110f;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(35, 17, 15, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
}
