body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #EFDBB2;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}
header {
  background: #081F2C;
  padding: 0.5rem 0;
  text-align: center;
}
.logo {
  max-width: 270px;
  margin: 1rem auto 0.5rem auto;
  display: block;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}
nav a.active, nav a:hover {
  background: #AB2328;
}
.intro-letter {
  background: #fff;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  font-size: 1.1rem;
}
.intro-letter h1 {
  color: #AB2328;
  margin-top: 0;
  font-size: 2.2rem;
}
.intro-letter h2 {
  color: #081F2C;
  font-size: 1.6rem;
}
.intro-letter a {
  color: #081F2C;
  text-decoration: underline;
}

/* Contact page specific styles */
.contact ul li {
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.contact ul li a {
  white-space: nowrap;
  display: inline-block;
}

.contact ul li strong {
  display: inline-block;
  min-width: 120px;
}

/* Product Gallery Styles */
.product-gallery {
  background: #fff;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.product-gallery h2 {
  color: #AB2328;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.product-category {
  margin-bottom: 3rem;
}

.product-category h3 {
  color: #081F2C;
  border-bottom: 2px solid #AB2328;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-image {
  text-align: center;
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.product-image p {
  margin: 0;
  font-weight: 500;
  color: #081F2C;
  font-size: 1rem;
}

footer {
  background: #081F2C;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Ensure footer stays at bottom */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Lightbox Modal Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  user-select: none;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 20px;
}

/* Make product images clickable */
.product-image img {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .intro-letter {
    padding: 1.5rem;
    margin: 1rem;
    font-size: 1rem;
  }
  .intro-letter h1 {
    font-size: 1.8rem;
  }
  .intro-letter h2 {
    font-size: 1.4rem;
  }
  
  /* Mobile contact page improvements */
  .contact ul li {
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  
  .contact ul li strong {
    display: block;
    margin-bottom: 0.3rem;
    min-width: auto;
  }
  
  .contact ul li a {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.2rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .logo {
    max-width: 180px;
  }
  .product-gallery {
    padding: 1.5rem;
    margin: 1rem;
  }
  .product-gallery h2 {
    font-size: 1.8rem;
  }
  .product-category h3 {
    font-size: 1.4rem;
  }
  .image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-image {
    padding: 0.5rem;
  }
  .product-image p {
    font-size: 0.9rem;
  }
} 