/* Rind LLC Website Styles */
/* Clean & Premium – Forest Green + Gold */

:root {
  --green: #1B5E20;
  --green-dark: #144017;
  --gold: #C5A46D;
  --gold-light: #d4b87a;
  --charcoal: #333333;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --off-white: #F8F7F4;
  --white: #ffffff;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}

nav a:hover {
  color: var(--green);
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-light);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/hero-roof.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.9;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: var(--green);
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 45px;
  color: var(--gray);
  font-size: 17px;
}

/* Why Choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: var(--off-white);
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  border-top: 3px solid var(--green);
}

.why-card h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 18px;
}

.why-card p {
  font-size: 15px;
  color: var(--gray);
}

/* Services preview */
.service-box {
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.service-box img {
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.service-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  color: var(--green);
  font-size: 24px;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta-section h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 25px;
  opacity: 0.95;
  font-size: 17px;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Content sections */
.content-section {
  padding: 60px 0;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 40px;
}

.content-block h2 {
  color: var(--green);
  font-size: 26px;
  margin-bottom: 15px;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 15px;
}

.content-block ul {
  margin: 15px 0 15px 20px;
  color: var(--gray);
}

.content-block li {
  margin-bottom: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-gray);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  max-width: 950px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: 15px;
  font-family: inherit;
}

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

.contact-info {
  background: var(--off-white);
  padding: 35px;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--green);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--gray);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: #ccc;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: var(--gold);
}

footer .footer-logo {
  margin-bottom: 15px;
}

footer .footer-logo img {
  height: 50px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .service-box {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0;
  }
}