/*
Theme Name: ADS - Acer Dairy Solutions
Theme URI: https://ads-ltd.co.uk
Author: Stellasoft
Author URI: https://stellasoft.co.uk
Description: Landing page theme for Acer Dairy Solutions Ltd
Version: 1.0.0
License: Proprietary
Text Domain: ads
*/

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

:root {
  --blue: #1a3a6b;
  --blue-mid: #2255a0;
  --green: #4a8c2a;
  --green-light: #5ca032;
  --grey-light: #e8e8e8;
  --grey-mid: #c0c0c0;
  --grey-dark: #555;
  --text: #222;
  --white: #fff;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #f0f0f0;
}

/* ── Outer wrapper ── */
.page-wrap {
  max-width: 960px;
  margin: 20px auto;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  border: 1px solid var(--grey-mid);
}

/* ── Header ── */
.site-header {
  background: linear-gradient(to bottom, #d8d8d8, #b0b0b0);
  border-bottom: 3px solid var(--blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-letters {
  font-family: 'Raleway', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #111;
  letter-spacing: -2px;
  line-height: 1;
}

.logo-letters span.pipe {
  color: var(--blue);
  font-weight: 400;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  margin-top: -4px;
  display: block;
}

.tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  color: #333;
  font-style: italic;
  flex: 1;
  text-align: center;
}

.contact-top {
  text-align: right;
  font-size: 12px;
  color: #333;
  line-height: 1.8;
}

/* ── Services bar ── */
.services-bar {
  background: linear-gradient(to bottom, #5ca032, #3d7a1e);
  border-bottom: 2px solid var(--blue);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.services-bar li {
  display: inline-block;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.2);
}

/* ── Banner ── */
.banner {
  overflow: hidden;
  height: 110px;
  background: #000;
  position: relative;
}

.banner img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

/* ── Brand bar ── */
.brand-bar {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 6px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 4px;
}

.brand-bar span {
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 600;
  cursor: default;
}

/* ── Intro text ── */
.intro-section {
  padding: 22px 30px 14px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.intro-section p {
  margin-bottom: 10px;
  line-height: 1.65;
  color: var(--text);
}

/* ── Three column services ── */
.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 20px 20px 10px;
  background: var(--white);
}

.service-col {
  padding: 0 16px;
  border-right: 1px solid #e0e0e0;
  line-height: 1.6;
}

.service-col:last-child {
  border-right: none;
}

.service-col strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-family: 'Raleway', sans-serif;
}

/* ── Bottom content ── */
.bottom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 16px 20px 20px;
  background: var(--white);
  align-items: start;
}

.bottom-text {
  padding-right: 20px;
  line-height: 1.6;
}

.bottom-text strong {
  color: var(--blue);
}

.cows-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

/* ── Address bar ── */
.address-bar {
  background: #f0f0f0;
  border-top: 2px solid var(--blue);
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--grey-dark);
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(to bottom, #d0d0d0, #b8b8b8);
  border-top: 3px solid var(--blue);
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #444;
}

.acrib-badge {
  width: 56px;
  height: auto;
}

@media (max-width: 700px) {
  .services-row { grid-template-columns: 1fr; }
  .bottom-content { grid-template-columns: 1fr; }
  .tagline { display: none; }
  .services-bar li { font-size: 11px; padding: 8px 8px; }
}
