/* Luft & Co — static rebuild, 2026.
   Preserves the 2010 design language (960px layout, Georgia copy,
   multicolour nav) on modern responsive HTML/CSS. */

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

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 700px;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff url(../images/normal-bg.png) top center no-repeat;
}
body.homepage { background-image: url(../images/homepage-bg.png); }

img { max-width: 100%; height: auto; display: block; }

#wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Header / logo / nav */
#header {
  position: relative;
  padding-top: 20px;
  margin-bottom: 28px;
  min-height: 130px;
}
#logo a {
  display: block;
  width: 326px;
  max-width: 100%;
  height: 111px;
  background: url(../images/luft-and-co-logo.jpg) 0 0 no-repeat;
  background-size: contain;
  text-indent: -999em;
  overflow: hidden;
}
#nav {
  list-style: none;
  position: absolute;
  right: 0;
  bottom: -1px;
  display: flex;
}
#nav li {
  height: 52px;
  line-height: 75px;
  background: url(../images/nav-divider.png) 100% 0 no-repeat;
}
#nav li.last { background: none; }
#nav li a {
  font-family: Georgia, serif;
  display: block;
  height: 52px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
#nav li.home a       { color: #046da4; }
#nav li.philosophy a { color: #3dc6f2; }
#nav li.bulkorders a { color: #89c53f; }
#nav li.portfolio a  { color: #f33838; }
#nav li.ourbags a    { color: #e7ca01; }
#nav li.contact a    { color: #f6871b; }
#nav li a:hover { text-decoration: underline; }

/* Type */
h1, h2, h3, h4, h5, h6 { margin-bottom: 13px; font-weight: bold; line-height: 140%; }
a { color: #1e77e3; }
a:hover { color: #005aff; }
.content h1 { font-size: 24px; }
.content h2 { font-size: 20px; }
.content h3 { font-size: 18px; margin-bottom: 9px; }
.content h4 { font-size: 16px; margin-bottom: 8px; }
p {
  font-size: 14px;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  color: #666;
  line-height: 160%;
}
.big { font-size: 18px; }
.lead { font-size: 18px; font-weight: bold; color: #333; font-family: Arial, sans-serif; }
.content ul, .content ol {
  font-size: 14px;
  font-family: Georgia, serif;
  color: #666;
  line-height: 150%;
  margin-bottom: 20px;
  padding-left: 20px;
}
.content ul { list-style: disc; }
.content li { margin-bottom: 5px; }
.content .principles { padding-left: 10px; list-style: none; }
.content .principles li {
  padding-left: 26px;
  background: url(../images/checkmark.png) 0 0 no-repeat;
  font-weight: bold;
}
.content ul.details {
  font-family: Arial, sans-serif;
  font-size: 12px;
  background: #efefef;
  border: 1px dashed #ccc;
  padding: 8px 10px 5px 12px;
  list-style: none;
}

/* Layout grid (replaces 960.gs) */
.content { overflow: hidden; }
.cols { display: grid; gap: 20px; margin-bottom: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split-8-4 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }

.headlineImage { margin-bottom: 20px; }
.framed { padding: 5px; background: #efefef; }

/* Footer */
#footer {
  clear: both;
  border-top: 2px solid #efefef;
  padding: 10px 0 30px;
  margin-top: 25px;
}
#footer p { font-size: 10px; text-align: right; color: #ccc; margin: 0; }
#footer p a { color: #ccc; }

/* Homepage slider (replaces the Flash cu3er cube) */
#slider {
  position: relative;
  aspect-ratio: 940 / 340;
  margin-bottom: 30px;
  overflow: hidden;
}
#slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
#slider .slide.active { opacity: 1; }
#slider .slide img { width: 100%; height: 100%; object-fit: cover; }
#slider .dots {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
#slider .dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}
#slider .dots button.active { background: #fff; }

.green-benefits { display: block; }

/* Portfolio gallery */
#galleryWrapper { display: grid; grid-template-columns: 385px 1fr; gap: 40px; }
#assetShow {
  padding: 5px;
  background: #efefef;
  margin-bottom: 15px;
}
#assetShow img { width: 100%; }
.gallerySelect {
  background: #d0e1f5;
  border: 1px solid #aabed4;
  padding: 8px 20px;
  margin-bottom: 15px;
}
.gallerySelect label {
  font-weight: bold;
  font-size: 12px;
  color: #47586c;
  margin-right: 5px;
}
.gallerySelect select { width: 200px; max-width: 100%; }
.galleryDescription {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 15px;
}
#assetIndex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
#assetIndex a {
  display: block;
  padding: 3px;
  background: #efefef;
}
#assetIndex a.selected { background: #d0e1f5; outline: 1px solid #aabed4; }
#assetIndex img { width: 110px; height: 90px; object-fit: cover; }

/* Products */
.productBox h3 { text-align: center; }
.productFeatureImage {
  background: #efefef;
  padding: 10px;
}
.productFeatureImage img { margin: 0 auto; }

.productPage { display: grid; grid-template-columns: 300px 110px 1fr; gap: 20px; }
.mainImage { border: 3px solid #efefef; }
.thumbs { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.thumbs a { display: block; padding: 3px; background: #efefef; }
.thumbs a.selected { background: #d0e1f5; outline: 1px solid #aabed4; }
.thumbs img { width: 73px; height: 90px; object-fit: cover; }

/* Responsive */
@media (max-width: 760px) {
  #wrapper { padding: 0 16px; }
  #header { min-height: 0; padding: 16px 0 0; margin-bottom: 20px; }
  #logo a { width: 240px; height: 82px; margin: 0 auto; }
  #nav {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 18px;
    row-gap: 0;
    margin-top: 14px;
    padding: 8px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
  }
  #nav li { height: auto; line-height: normal; background: none; }
  #nav li a { height: auto; padding: 6px 0; font-size: 12px; }
  .cols-2, .cols-3, .cols-4, .split-8-4, #galleryWrapper, .productPage {
    grid-template-columns: 1fr;
  }
  #slider { margin-bottom: 20px; }
  .green-benefits img { margin: 0 auto; }
  .thumbs { flex-direction: row; justify-content: center; }
  #assetIndex { justify-content: center; }
  #assetShow { text-align: center; }
  .productFeatureImage img { max-width: 290px; }
  #footer p { text-align: center; }
}
