/*
Theme Name:     chrs
Theme URI:      https://www.chrsinteractive.com/
Description:    CHRS WP-Theme
Version:        1.0
Author:         CHRS Interactive
Author URI:	    https://www.chrsinteractive.com/
*/

/* ---------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  color: #3e3d3d;
  background: #fff;
  overflow-x: hidden;
}

/* ─── HEADER / NAV ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {width:200px;}
.logo img {display:block;width:100%;height:auto;}

@media (min-width:1000px) {
  .logo {width:300px;}
}

nav p {font-size: 14px;line-height:1.4;font-weight: 600;color: #3e3d3d;}
nav a {text-decoration: none;color: #3e3d3d;transition: color 0.3s;}
nav a:hover {color: #764f07;}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 40px;
}

.hero-title {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  opacity: 0.9;
  margin-bottom:20px;
}

/* ─── SERVICES MARQUEE BAR ─── */
.services-bar {
  background: #f7f5f2;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid #ebe7e2;
  border-bottom: 1px solid #ebe7e2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 20px;
}

.marquee-content span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7d6b;
}

.marquee-content .divider {
  margin: 0 18px;
  color: #c4b8a8;
  font-weight: 300;
}



/* ─── CONTENT SECTIONS ─── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-layout.reverse {
  direction: rtl;
}

.section-layout.reverse > * {
  direction: ltr;
}

.section-text h2 {
  font-size: 32px;
  font-weight: 500;
  color: #3e3d3d;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #555;
  letter-spacing: 0.3px;
}

/* ─── IMAGE GRIDS ─── */
.image-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-duo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.image-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.image-trio img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.image-single {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.image-single img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ─── INTRO SECTION (with portrait) ─── */
.intro-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.intro-layout {
  display: flex;
  gap: 40px;
  align-items:center;
}

.intro-portrait {
  flex-shrink: 0;
  border-bottom:1px solid #000;
  padding-bottom:20px;
  margin-bottom:20px;
  box-sizing:border-box;
}

@media (min-width:1000px) {
  .intro-portrait {border-right:1px solid #000;
    padding:0 30px 0 0;margin:0;border-bottom:none;
  }
}
.intro-portrait img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display:block;
}

.intro-text h2 {
  font-size: 32px;
  font-weight: 300;
  color: #3e3d3d;
  margin-bottom: 16px;
}

.intro-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #555;
}

/* ─── FULL-WIDTH IMAGE BAND ─── */
.image-band {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.image-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ─── FOOTER ─── */
footer {
  background: #fff;
  padding: 50px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-left .logo-icon {
  width: 32px;
  height: 32px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #3e3d3d;
  letter-spacing: 1px;
}

.footer-contact {
  text-align: right;
}

.footer-contact .brand-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3e3d3d;
  margin-bottom: 4px;
}

.footer-contact p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.footer-contact a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #764f07;
}

.footer-bar {
  background: #764f07;
  padding:20px;
  text-align:center;
}

/* ─── MOBILE HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3e3d3d;
  transition: all 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: 8px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .section-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-layout.reverse {
    direction: ltr;
  }

  .section {
    padding: 60px 24px;
  }

  .intro-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-band img {
    height: 260px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px 40px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  nav ul.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 26px;
    letter-spacing: 5px;
  }

  .image-trio {
    grid-template-columns: 1fr;
  }

  .image-trio img {
    height: 200px;
  }

  .image-duo img {
    height: 200px;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .section-text h2 {
    font-size: 24px;
  }
}

.button {display:inline-block;padding:10px 30px;border:2px solid #fff;background:#000;color:#fff;text-decoration:none;font-size:16px;font-weight:600;text-transform:uppercase;}
.button:hover {background:#764f07;color:#fff;text-decoration:none;}