/* JLC Restoration - Static Site Styles */

:root {
  --color-primary: #921D14;
  --color-primary-dark: #7a1810;
  --color-accent: #FFA76B;
  --color-background: #FFFFFF;
  --color-text: #000000;
  --color-text-light: #555555;
  --color-dark-bg: #030000;
  --font-display: 'League Gothic', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-secondary {
  background: var(--color-dark-bg);
  color: #fff;
}

.btn-secondary:hover {
  background: #222;
  color: #fff;
}

/* Header */
.site-header {
  background: var(--color-dark-bg);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background: var(--color-dark-bg) url('../images/JLC-transform23.jpg') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(146, 29, 20, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero p {
  font-family: var(--font-body);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 65px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* About Section */
.about-section {
  background: var(--color-background);
}

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

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Service Sections */
.service-section {
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.service-section .container {
  position: relative;
  z-index: 1;
}

.service-section p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.8;
}

.service-section h2 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Individual Service Section Backgrounds */
#water-damage {
  background-image: url('../images/flood4.jpg');
}

#water-damage::before {
  background: rgba(24, 18, 134, 0.85);
}

#water-damage h2,
#water-damage p {
  color: #fff;
}

#fire-damage {
  background-image: url('../images/firedamage-7.jpg');
}

#fire-damage::before {
  background: rgba(241, 99, 3, 0.68);
}

#fire-damage h2,
#fire-damage p {
  color: #fff;
}

#trauma-bio-covid {
  background-image: url('../images/bio-cleanup.jpg');
}

#trauma-bio-covid::before {
  background: rgba(230, 213, 8, 0.63);
}

#trauma-bio-covid h2,
#trauma-bio-covid p {
  color: #000;
}

#mold {
  background-image: url('../images/mold-mit.jpg');
}

#mold::before {
  background: rgba(141, 252, 155, 0.70);
}

#mold h2,
#mold p {
  color: #000;
}

/* Insurance Section */
.insurance-section {
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.insurance-section h2 {
  color: var(--color-text);
  margin-bottom: 50px;
}

.insurance-logos {
  overflow: hidden;
  position: relative;
}

.insurance-track {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
  align-items: center;
}

.insurance-track img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Remodeling Section */
.remodeling-section {
  background: #f8f8f8;
}

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

.remodeling-images {
  position: relative;
}

.remodeling-images .img-main {
  width: 80%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.remodeling-images .img-secondary {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.remodeling-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials-section {
  text-align: center;
  background: var(--color-background);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 8px;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

/* Contact Section */
.contact-section {
  background: var(--color-dark-bg);
  color: #fff;
}

.contact-section h2 {
  color: #fff;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.contact-info a {
  color: var(--color-accent);
}

.service-areas {
  display: flex;
  gap: 40px;
}

.service-areas ul {
  list-style: none;
}

.service-areas li {
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}

.cf-turnstile {
  margin: 20px 0;
}

/* Footer */
.site-footer {
  background: var(--color-dark-bg);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 10px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-bottom: 30px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.footer-bottom a {
  color: var(--color-accent);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid,
  .remodeling-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .remodeling-images .img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-dark-bg);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-areas {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
