/* VisualTalks - Clean Static Site */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #8C8B8B;
  background-color: #f7f7f7;
}

a { color: #41c1d8; text-decoration: none; }
a:hover { color: #EF832B; }

h1, h2, h3 {
  font-weight: normal;
  color: #2B2B2B;
  font-size: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
h3 { color: #666; font-size: 21px; }
h4 { color: #495150; font-weight: bold; padding-bottom: 2px; }

.page-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  background: transparent;
  position: relative;
}

/* Navigation */
nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
nav a {
  display: inline-block;
  height: 80px;
  line-height: 80px;
  padding: 0 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  transition: background .3s;
}
nav a:nth-child(1) { background: #EE612C; }
nav a:nth-child(1):hover { background: #D65728; }
nav a:nth-child(2) { background: #ef832b; }
nav a:nth-child(2):hover { background: #D77627; }
nav a:nth-child(3) { background: #eea32c; }
nav a:nth-child(3):hover { background: #D69228; }
nav a:nth-child(4) { background: #edbf2b; }
nav a:nth-child(4):hover { background: #D5AC27; }
nav a:nth-child(5) { background: #edcc2b; }
nav a:nth-child(5):hover { background: #D5B727; }
nav a.active { font-weight: bold; }

/* Header area */
.header {
  display: flex;
  align-items: stretch;
  padding-top: 24px;
}
.header .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.header .logo-small {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.header .logo-small img { max-width: 152px; }

/* Content area — right edge aligns with nav */
.content {
  padding: 40px 0 40px 44px;
  min-height: 400px;
}

/* Gallery */
.gallery {
  position: relative;
  width: 100%;
  max-width: none;
  height: 405px;
  margin: 20px 0 20px 44px;
  overflow: hidden;
}
.gallery img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s;
}
.gallery img.active { opacity: 1; }
.gallery-dots {
  text-align: center;
  padding: 10px 0 10px 44px;
}
.gallery-dots span {
  display: inline-block;
  width: 10px; height: 10px;
  margin: 4px;
  background: #969696;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 0 2px 2px rgba(50,50,50,.5);
}
.gallery-dots span.active { background: #98c22a; }

/* Footer */
footer {
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.5);
  min-height: 100px;
}
footer .copyright {
  flex: 0 0 auto;
  padding-left: 44px;
  font-size: 10px;
  color: #202020;
}
footer .location {
  flex: 1;
}
footer .location strong {
  font-size: 26px;
  color: #202020;
  text-transform: uppercase;
  display: block;
}
footer .location h4 { margin-top: 4px; }
footer .social {
  padding-right: 44px;
}
footer .social strong {
  font-size: 26px;
  color: #202020;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
footer .social-icons a {
  display: inline-block;
  margin-right: 4px;
  opacity: 1;
  transition: opacity .3s;
}
footer .social-icons a:hover { opacity: .7; }
footer .social-icons img { width: 35px; height: 35px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 85vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}
.lightbox .close-btn {
  position: absolute;
  top: 15px; right: 20px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  padding: 10px 18px;
  user-select: none;
  z-index: 10000;
}
.lightbox .lb-prev { left: 10px; }
.lightbox .lb-next { right: 10px; }
.gallery img { cursor: pointer; }

/* Page-specific */
.hero-text {
  margin: 30px 0 20px;
  padding-left: 44px;
}
.hero-text h1 {
  font-size: 24px;
}
.intro-text {
  max-width: none;
  padding: 40px 0 40px 44px;
}
.intro-text h4 { margin-bottom: 10px; }

/* Responsive images */
.content img { max-width: 100%; height: auto; }

/* About page */
.about-banner { max-width: 100%; }
.about-content { padding: 30px 0 30px 76px; }
.about-columns {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.about-columns .col { flex: 1; }
.about-columns img { max-width: 100%; }

/* Services page */
.services-content {
  display: flex;
  gap: 40px;
  padding: 30px 0;
  align-items: flex-start;
}
.services-content img {
  max-width: 428px;
  flex-shrink: 0;
}
.services-list {
  line-height: 1.8;
}

/* Client Love */
.testimonials {
  padding: 30px 0;
}
.testimonial {
  margin-bottom: 30px;
  font-style: italic;
  color: #495150;
  max-width: none;
}
.client-list {
  padding: 20px 0;
  line-height: 1.8;
}

/* Contact */
.contact-content {
  padding: 30px 0;
}
.contact-content a[href^="mailto:"] {
  color: #EE612C;
  font-weight: bold;
}

/* Hamburger toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  background: #EE612C;
  border: none;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  flex-shrink: 0;
  align-self: center;
  margin-right: 10px;
  margin-left: auto;
}

/* ---- Tablet (<=768px) ---- */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    padding-top: 10px;
  }
  .header .logo { padding-left: 15px; }
  .header .logo img { width: 200px !important; }
  .header .logo-small { padding-left: 15px; }
  .header .logo-small img { max-width: 100px; }

  .menu-toggle { display: block; }

  nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
  }
  nav.open { display: flex; }
  nav a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    text-align: left;
  }

  .content { padding: 25px 15px; min-height: auto; }
  .hero-text { padding-left: 15px; }
  .hero-text h1 { font-size: 20px; }
  .intro-text { padding: 25px 15px; }

  .gallery {
    margin: 15px 15px;
    height: 300px;
    max-width: none;
  }
  .gallery-dots { padding-left: 15px; }

  .services-content {
    flex-direction: column;
  }
  .services-content img {
    max-width: 100%;
  }

  footer {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 15px;
  }
  footer .copyright { padding-left: 0; }
  footer .social { padding-right: 0; }
  footer .location strong,
  footer .social strong { font-size: 20px; }
}

/* ---- Phone (<=480px) ---- */
@media (max-width: 480px) {
  .header .logo img { width: 160px !important; }
  .header .logo-small img { max-width: 80px; }

  h1, h2, h3 { font-size: 20px; }
  h3 { font-size: 17px; }
  .hero-text h1 { font-size: 17px; }

  .gallery { height: 220px; }

  .services-content img { max-width: 100%; }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
