@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Playball&family=Roboto:wght@300;400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --color-taupe: #6f6d68;
  --color-taupe-dark: #5a5855;
  --color-orange: #ffa500;
  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --color-light-grey: #eeeeee;
  --color-text: #333333;
  --color-text-light: #666666;

  --font-heading: 'Oswald', sans-serif;
  --font-script: 'Playball', cursive;
  --font-body: 'Roboto', sans-serif;

  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   HEADER — Matches Paddy Creek exactly:
   [Social Icons]  [  SERVICES  CONTACT  {LOGO}  PORTFOLIO  ABOUT  ]  [CALL NOW]
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background: rgba(111, 109, 104, 0.88);
  color: var(--color-white);
}

.site-header.scrolled {
  background: rgba(111, 109, 104, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 30px 8px;
}

/* Left: Social Icons */
.header-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 90px;
}

.header-socials a {
  opacity: 0.85;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.header-socials a:hover {
  opacity: 1;
}

.header-socials svg {
  fill: currentColor;
}

/* Center: Brand Name — Nav Left — Logo — Nav Right — Phone */
.header-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-brand-name {
  font-family: var(--font-script);
  font-size: 22px;
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.header-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  width: 70px;
  height: 55px;
  object-fit: contain;
}

.header-brand-phone {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Right: CTA */
.header-cta {
  min-width: 90px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0;
  color: inherit;
}

.btn-call svg {
  fill: currentColor;
}

/* Navigation Links */
.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.dropdown-arrow {
  font-size: 10px;
  opacity: 0.7;
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 280px;
  z-index: 100;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text);
  transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--color-light-grey);
  color: var(--color-taupe);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--color-white);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.05;
  margin-bottom: 10px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}

/* ===== INTRO ===== */
.intro-section {
  padding: 80px 30px;
  text-align: center;
  background: var(--color-white);
}

.intro-section p {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-taupe);
  line-height: 1.5;
}

/* ===== SERVICE PILLARS ===== */
.pillars-section {
  padding: 40px 30px 80px;
  background: var(--color-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pillar-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
}

.pillar-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-taupe);
}

/* ===== SPLIT SECTION ===== */
.split-section {
  display: flex;
  min-height: 550px;
}

.split-image {
  flex: 1;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--color-light-grey);
}

.split-text h2 {
  font-family: var(--font-script);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-taupe);
  margin-bottom: 24px;
  line-height: 1.3;
}

.split-text p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--color-text);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text);
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
  margin-top: 16px;
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--color-taupe);
  color: var(--color-white);
  padding: 80px 30px;
  text-align: center;
}

.testimonials-section h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonials-stars {
  font-size: 22px;
  color: var(--color-orange);
  margin-bottom: 30px;
  letter-spacing: 4px;
}

.testimonial-box {
  background: var(--color-white);
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 40px;
  min-height: 160px;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
}

/* ===== SEEN IN ===== */
.seen-in-section {
  padding: 60px 30px 100px;
  text-align: center;
  background: var(--color-white);
}

.seen-in-section h2 {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--color-taupe);
  margin-bottom: 40px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5)),
    url('/images/hero_home-ac4a4aa46935313cf8f94e54f12bc3d3.png?vsn=d') center/cover no-repeat;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT PAGE ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: 16px;
}

.contact-info-block p {
  font-size: 17px;
  margin-bottom: 6px;
}

.contact-info-block a:hover {
  color: var(--color-orange);
}

.contact-form-section {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('/images/restoration-1e0958344f1e4bbc009f4c7e31692cc3.png?vsn=d') center/cover no-repeat;
  padding: 80px 30px;
}

.contact-form-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-box h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
}

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

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #e69500;
}

/* ===== PORTFOLIO ===== */
.portfolio-intro {
  padding: 60px 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-intro p {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.portfolio-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.btn-orange {
  display: block;
  padding: 20px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s;
}

.btn-orange:hover {
  background: #e69500;
}

/* ===== ABOUT ===== */
.about-content {
  padding: 60px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--color-taupe);
  margin-bottom: 20px;
}

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

/* ============================================================
   FOOTER — Matches Paddy Creek exactly:
   [Contact + Google G]  [Brand + Logo + Phone]  [Service Links]
   ─────────────────────   ─────────────────────
                     [fb] [ig] [email]
   ============================================================ */

.site-footer {
  background: var(--color-taupe);
  color: var(--color-white);
  margin-top: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer-col p,
.footer-col a {
  font-size: 16px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Google Review Badge */
.google-review-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.google-g {
  width: 60px;
  height: 60px;
  background: #444;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-text {
  font-style: italic;
  font-size: 14px;
  opacity: 0.9;
}

/* Footer Center Column */
.footer-col-center {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 30px;
}

.footer-brand {
  font-family: var(--font-script);
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.footer-phone {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Footer Service Links */
.footer-services-list {
  text-align: left;
  width: 100%;
  max-width: 280px;
}

.footer-services-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-services-list li:last-child {
  border-bottom: none;
}

.footer-services-list a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 0 30px 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-bottom-dividers {
  display: flex;
  gap: 80px;
  margin-bottom: 24px;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-bottom-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-bottom-social a {
  opacity: 0.85;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.footer-bottom-social a:hover {
  opacity: 1;
}

.footer-bottom-social svg {
  fill: currentColor;
}

.mobile-logo,
.mobile-phone,
.mobile-menu-btn {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .desktop-only,
  .desktop-logo,
  .desktop-only-text {
    display: none !important;
  }

  .mobile-logo {
    display: flex;
    margin: 0 auto;
  }

  .mobile-logo .header-logo-img {
    width: 65px;
    height: 50px;
  }

  .mobile-phone {
    display: block;
    margin-top: 15px;
    font-size: 18px;
    color: var(--color-orange);
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
  }

  .header-cta {
    min-width: auto;
  }

  .header-nav-row {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 15px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
  }

  .header-nav-row.show {
    display: flex;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    text-align: center;
    padding-top: 10px;
  }

  .nav-dropdown-menu a {
    color: var(--color-white);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .split-section {
    flex-direction: column;
  }

  .split-text {
    padding: 40px 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-services-list {
    text-align: center;
    margin: 0 auto;
  }

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

  .portfolio-cta-grid {
    grid-template-columns: 1fr;
  }
}