/* Main stylesheet for Brow Lady */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #4A4A4A;
  background: #F5F5F5;
}

header {
  background-color: #F5F5F5;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 2px solid #C0C0C0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5em;
}

.logo img {
  height: 48px;
  margin-right: 10px;
}

nav {
  display: flex;
  gap: 36px;
  font-size: 1.18em;
  font-weight: 600;
  background: none;
}

nav a {
  color: #4A4A4A;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-bottom 0.2s, background 0.2s;
  letter-spacing: 0.5px;
}

nav a:hover, nav a:focus {
  color: #60A3B5;
  border-bottom: 3px solid #60A3B5;
  background: #F5F5F5;
  border-radius: 2px;
}

.cta {
  background: linear-gradient(135deg, #e3ecfa 0%, #b3c9f7 60%, #a0b8f0 100%);
  color: #4A4A4A;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(96,163,181,0.08);
  transition: background 0.2s, color 0.2s;
  border: 1.5px solid #a0b8f0;
}
.cta:hover, .cta:focus {
  background: linear-gradient(135deg, #b3c9f7 0%, #a0b8f0 100%);
  color: #222;
}

.hero {
  background: linear-gradient(90deg, #F5F5F5 0%, #C0C0C0 100%);
  padding: 60px 20px 40px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.3em;
  margin-bottom: 10px;
  color: #4A4A4A;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #7A868C;
}

.hero img {
  max-width: 370px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(192,192,192,0.10);
  border: 3px solid #60A3B5;
}

.info {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info h2 {
  margin-bottom: 10px;
  font-size: 1.8em;
  color: #4A4A4A;
}

.info p {
  color: #7A868C;
  font-size: 1em;
}

footer {
  text-align: center;
  padding: 20px;
  background: #F5F5F5;
  font-size: 0.9em;
  color: #7A868C;
  border-top: 2px solid #C0C0C0;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(-90deg, #f5f5f5 0%, #c0c0c0 100%);
  color: #4A4A4A;
  padding: 40px 20px 20px 20px;
  gap: 40px;
  border-top: 2px solid #C0C0C0;
}

.footer-col {
  flex: 1 1 0;
  min-width: 180px;
  margin-bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-col h3 {
  font-size: 1.15em;
  color: #4A4A4A;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  color: #7A868C;
  font-size: 1em;
  text-align: center;
}

.footer-col ul li a {
  color: #60A3B5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #4A4A4A;
}

.logo-col > div {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-sections {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .footer-col, .logo-col {
    align-items: center !important;
    margin-bottom: 32px;
    width: 100%;
    gap: 18px;
  }
  .logo-col > div {
    text-align: center;
    width: 100%;
  }
  .footer-col ul li {
    text-align: center;
  }
}

@media (max-width: 700px) {
  nav {
    gap: 18px;
    font-size: 1em;
  }
} 

.slideshow {
  position: relative;
  max-width: 370px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-img {
  width: 100%;
  max-width: 370px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(192,192,192,0.10);
  border: 3px solid #60A3B5;
  background: #fff;
}

.slide-arrow {
  background: rgba(96,163,181,0.12);
  border: none;
  color: #60A3B5;
  font-size: 2em;
  cursor: pointer;
  padding: 0 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.slide-arrow.left { left: -40px; }
.slide-arrow.right { right: -40px; }
.slide-arrow:hover { background: #60A3B5; color: #fff; }

.slide-dots {
  text-align: center;
  margin-top: 12px;
  width: 100%;
  position: absolute;
  bottom: -28px;
  left: 0;
}
.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #C0C0C0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.dot.active, .dot:hover {
  background-color: #60A3B5;
  border: 2px solid #4A4A4A;
}

@media (max-width: 600px) {
  .slideshow {
    max-width: 98vw;
  }
  .slide-img {
    max-width: 98vw;
  }
  .slide-arrow.left { left: -10px; }
  .slide-arrow.right { right: -10px; }
} 

.hero-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.hero-images img {
  max-width: 220px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(192,192,192,0.10);
  border: 2.5px solid #C0C0C0;
  background: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-images img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(96,163,181,0.18);
}
@media (max-width: 600px) {
  .hero-images {
    gap: 10px;
    margin-top: 18px;
  }
  .hero-images img {
    max-width: 140px;
  }
} 

.hero-img-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
  padding: 18px 12px 14px 12px;
  border-radius: 18px;
}
.hero-img-label {
  margin-top: 10px;
  font-size: 1.08em;
  color: #4A4A4A;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 600px) {
  .hero-img-link {
    margin: 0 2px;
    padding: 10px 2px 8px 2px;
  }
  .hero-img-label {
    font-size: 0.98em;
    margin-top: 6px;
  }
  .hero-images img {
    max-width: 140px;
  }
} 

.hero-title {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-title br {
  display: block;
  margin-bottom: 8px;
} 