/*
  Donovan Drywall – One Page CSS (Light Theme)
  Refined typography | Logo-matched colors | Responsive
*/

/* ================= Variables ================= */
:root{
  --max-width:1200px;

  /* Base */
  --bg:#ffffff;
  --surface:#ffffff;
  --card:#ffffff;

  /* Text */
  --text:#000000;        /* deep navy */
  --muted:#000000;       /* refined slate gray */

  /* Brand */
  --accent:#f59e0b;      /* construction orange */
  --accent-2:#60a5fa;    /* slate blue */
  --gold:#fbbf24;
  --ink:#020617;
  --danger:#dc2626;

  --radius:14px;
  --shadow-sm:0 6px 20px rgba(2,6,23,.08);
  --shadow-lg:0 20px 60px rgba(2,6,23,.12);
}

/* ================= Base ================= */
*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, #ffffff, transparent),
    var(--bg);
  line-height:1.7;
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{margin:0;color:var(--muted)}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
}

/* ================= Header ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px) saturate(140%);
  border-bottom:2px solid var(--accent);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.04em;
}

/* LOGO */
.logo{
  width:44px;
  height:44px;
  border-radius:12px;
  background:url("logo.png") center / contain no-repeat;
  box-shadow:var(--shadow-sm);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.main-nav a{
  font-weight:600;
  letter-spacing:.02em;
  opacity:.85;
}

.main-nav a:hover{opacity:1}

.main-nav a.cta{
  padding:10px 16px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:var(--ink);
  box-shadow:var(--shadow-sm);
}

.menu-btn{
  display:none;
  background:none;
  border:0;
  font-size:22px;
}

/* ================= Hero ================= */
.hero{
  padding:72px 0 64px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}

.hero-copy h1{
  margin:0;
  font-size:clamp(32px,4vw,54px);
  line-height:1.1;
  letter-spacing:-.3px;
  font-weight:800;
}

.lead{
  margin-top:16px;
  max-width:560px;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.75;
}

.hero-actions{
  margin-top:26px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* ================= Buttons ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 22px;
  border-radius:14px;
  font-weight:700;
  letter-spacing:.02em;
  transition:.2s ease;
}

.btn.primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:var(--ink);
  box-shadow:var(--shadow-sm);
}

.btn.primary:hover{transform:translateY(-1px)}

.btn.ghost{
  border:2px solid rgba(2,6,23,.15);
  color:var(--text);
}

.btn.ghost:hover{
  background:rgba(2,6,23,.04);
}

.btn:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

.btn img{
  width:20px;
  height:20px;
  object-fit:contain;
}

/* ================= Stats ================= */
.quick-stats{
  margin-top:32px;
  display:flex;
  gap:32px;
  padding:0;
  list-style:none;
}

.quick-stats li strong{
  display:block;
  font-size:24px;
  font-weight:800;
  color:var(--accent);
}

.quick-stats li span{
  font-size:.85rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--muted);
}

/* ================= Sections ================= */
.section{padding:72px 0}

.section h2{
  margin:0 0 12px;
  font-size:32px;
  font-weight:700;
  letter-spacing:-.2px;
}

/* ================= Grids ================= */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* ================= Cards ================= */
.card{
  background:var(--card);
  padding:22px;
  border-radius:var(--radius);
  border:1px solid rgba(2,6,23,.08);
  box-shadow:var(--shadow-sm);
}

.card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:700;
}

.card p{
  font-size:.95rem;
  line-height:1.7;
}

/* ================= Responsive ================= */
@media (max-width:1000px){
  .hero-grid{grid-template-columns:1fr}
}

@media (max-width:820px){
  .grid-3{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:640px){
  .grid-3{grid-template-columns:1fr}
  .main-nav a{display:none}
  .menu-btn{display:block}
}
/* ================= Highlighted Text ================= */
.highlight-text {
  font-size:1.5rem;      /* half of 3rem */
  font: weight 600px;     /* bold for emphasis */
  line-height:1.4;       /* keeps readability */
  color:var(--text);     /* main text color */
  margin:20px 0;         /* spacing around */
}
.project-categories {
  display: flex;
  justify-content: center;   /* center the row */
  gap: 3rem;                 /* spacing between each category */
  margin-top: 3rem;
  flex-wrap: wrap;           /* allow wrapping on small screens */
}

.project-category {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  text-align: center;
}
.logo{
  width:42px;
  height:42px;
  border-radius:12px;
  background:
    url("logo.png") center / contain no-repeat,
    linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:var(--shadow-sm);
}
.hero-banner {
  width: 100%;
  margin-top: 30px;       /* space below the stats */
  border-radius: 12px;    /* rounded corners optional */
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-banner img {
  width: 100%;
  height: 250px;          /* banner height, adjust as needed */
  object-fit: cover;      /* fills the rectangle without distortion */
  display: block;
}
/* ================= Adjust spacing for “What We Do?” ================= */

/* Reduce bottom padding of hero */
.hero {
  padding-bottom: 40px; /* was 64px, now smaller */
}

/* Reduce top padding of services section */
.section.services {
  padding-top: 40px; /* was 72px, now smaller */
}

/* Optional: reduce gap between hero stats and banner/image */
.quick-stats {
  margin-top: 24px; /* slightly tighter */
}
/* ================= Base Styling ================= */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background-color: #f9f9f9;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

/* ================= Header ================= */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}

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

.brand {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.main-nav a {
  color: #333;
  font-weight: 600;
  margin: 0 10px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-btn {
  display: none;
}

/* ================= Contact Info Section ================= */
.contact-info {
  background-color: #fff;
  padding: 40px 0;
  border-bottom: 2px solid var(--accent);
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details li {
  font-size: 1rem;
  margin-bottom: 12px;
}

.contact-details li a {
  color: var(--accent);
  text-decoration: none;
}

.contact-details li a:hover {
  text-decoration: underline;
}

.contact-info .btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 25px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.contact-info .btn:hover {
  background: var(--accent-2);
}

/* ================= About Us Section ================= */
.about-us {
  background-color: #fafafa;
  padding: 60px 0;
}

.about-us-inner {
  display: flex;
  justify-content: center;
  gap: 40px; /* Increased gap for better spacing */
  align-items: center;
  flex-wrap: wrap;
}

.about-us-image img {
  width: 350px;  /* Increase size to make the image bigger but still square */
  height: 350px; /* Set both width and height to the same value for a square */
  object-fit: cover; /* Ensures the image fills the area without distortion */
  border-radius: 10px; /* Optional: Adds rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-us-text {
  max-width: 700px;
  color: #333;
}

.about-us-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-us-text p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;  /* Center text for better alignment */
}

/* ================= Footer ================= */
.site-footer {
  background-color: #ffffff;
  color: rgb(255, 255, 255);
  padding: 40px 0;
  text-align: center;
}

.site-footer nav a {
  color: rgb(255, 255, 255);
  margin: 0 10px;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--accent);
}

/* ================= Responsive Design ================= */
@media (max-width: 768px) {
  .about-us-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-us-image img {
    width: 300px;  /* Slightly smaller for smaller screens */
    height: 300px;
  }
}


/* ================= Footer ================= */
.site-footer {
  background-color: #ffffff;
  color: rgb(255, 255, 255);
  padding: 40px 0;
  text-align: center;
}

.site-footer nav a {
  color: rgb(255, 255, 255);
  margin: 0 10px;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--accent);
}


/* ================= Footer ================= */
.site-footer {
  background-color: #ffffff;
  color: rgb(255, 255, 255);
  padding: 40px 0;
  text-align: center;
}

.site-footer nav a {
  color: rgb(255, 255, 255);
  margin: 0 10px;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--accent);
}

/* ================= Responsive Design ================= */
@media (max-width: 768px) {
  .about-us-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-us-image img {
    max-width: 200px;
  }

  .main-nav a {
    font-size: 14px;
  }
}
