/**
 * Base Styles - Always Loaded
 * Contains variables, reset, typography, layout, and utilities
 */
/**
 * SCSS Variables
 * Theme-wide variables for colors, spacing, typography, etc.
 */
/* ============================================
   Theme Colors (Dark Theme)
   ============================================ */
:root {
  /* Dark Theme (Default) */
  --color-bg-primary: #1a1a1a;
  --color-bg-secondary: #2d2d2d;
  --color-bg-tertiary: #3a3a3a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-text-muted: #b0b0b0;
  --color-accent: #d4af37;
  --color-accent-hover: #f5d76e;
  --color-border: #404040;
  --color-link: #d4af37;
  --color-link-hover: #f5d76e;
  --color-button-bg: #d4af37;
  --color-button-text: #1a1a1a;
  --color-button-hover: #f5d76e;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* SCSS Variables for easier manipulation */
/* Typography */
/* Spacing */
/* Breakpoints */
/* Transitions */
/**
 * Base Reset Styles
 * Reset and normalize default browser styles
 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "League-spartan-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

/**
  * Fonts
  */
@font-face {
  font-family: "League-spartan-thin";
  src: url("../fonts/LeagueSpartan-Thin.woff2") format("woff2"), url("../fonts/LeagueSpartan-Thin.woff") format("woff"), url("../fonts/LeagueSpartan-Thin.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-extralight";
  src: url("../fonts/LeagueSpartan-ExtraLight.woff2") format("woff2"), url("../fonts/LeagueSpartan-ExtraLight.woff") format("woff"), url("../fonts/LeagueSpartan-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-light";
  src: url("../fonts/LeagueSpartan-Light.woff2") format("woff2"), url("../fonts/LeagueSpartan-Light.woff") format("woff"), url("../fonts/LeagueSpartan-Light.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-regular";
  src: url("../fonts/LeagueSpartan-Regular.woff2") format("woff2"), url("../fonts/LeagueSpartan-Regular.woff") format("woff"), url("../fonts/LeagueSpartan-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-medium";
  src: url("../fonts/LeagueSpartan-Medium.woff2") format("woff2"), url("../fonts/LeagueSpartan-Medium.woff") format("woff"), url("../fonts/LeagueSpartan-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-semibold";
  src: url("../fonts/LeagueSpartan-SemiBold.woff2") format("woff2"), url("../fonts/LeagueSpartan-SemiBold.woff") format("woff"), url("../fonts/LeagueSpartan-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-bold";
  src: url("../fonts/LeagueSpartan-Bold.woff2") format("woff2"), url("../fonts/LeagueSpartan-Bold.woff") format("woff"), url("../fonts/LeagueSpartan-Bold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-extrabold";
  src: url("../fonts/LeagueSpartan-ExtraBold.woff2") format("woff2"), url("../fonts/LeagueSpartan-ExtraBold.woff") format("woff"), url("../fonts/LeagueSpartan-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-spartan-black";
  src: url("../fonts/LeagueSpartan-Black.woff2") format("woff2"), url("../fonts/LeagueSpartan-Black.woff") format("woff"), url("../fonts/LeagueSpartan-Black.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/**
 * Typography Styles
 * Headings, paragraphs, and text elements
 */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
  font-family: "League-spartan-semibold", sans-serif;
}

p {
  font-family: "League-spartan-light", sans-serif;
  font-size: clamp(1rem, 0.712rem + 1.231vw, 1.25rem);
}
p strong {
  font-family: "League-spartan-semibold", sans-serif;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}
/**
 * Container & Layout Styles
 */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container.services-archive, .container.portfolio-archive {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-main {
  flex: 1;
}

/**
 * Header & Navigation Styles
 */
.site-header {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  --header-height: auto;
}

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

.site-branding {
  flex-shrink: 0;
}

.site-title {
  font-size: 1.5rem;
  margin: 0;
}
.site-title a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.custom-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .custom-logo {
  width: 50px;
  height: 50px;
}

.main-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.nav-menu {
  list-style: none;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  right: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

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

.nav-menu li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a:focus {
  background-color: var(--color-bg-tertiary);
  text-decoration: none;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 1001;
}

.menu-toggle-icon span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 6px;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
}
.menu-toggle-icon span:last-of-type {
  margin-bottom: 0;
}

.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 767px) {
  .site-header {
    position: relative;
  }
  .custom-logo {
    width: 60px;
    height: 60px;
  }
  .site-header.scrolled .custom-logo {
    width: 40px;
    height: 40px;
  }
  .main-navigation {
    position: static;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    min-height: calc(100vh - var(--header-height, 80px));
    max-height: calc(100vh - var(--header-height, 80px));
    overflow-y: auto;
    margin-left: calc(-50vw + 50%);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .main-navigation.active .nav-menu {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none !important;
  }
  .main-navigation {
    display: flex;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
  }
  .main-navigation.active {
    display: flex;
    position: static;
  }
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    flex-direction: row !important;
    gap: 1rem;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .nav-menu ul {
    display: flex;
  }
  .nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
  }
  .nav-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
    display: inline-block;
  }
}
/**
 * Footer Styles
 */
.site-footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.footer-content .footer-logo {
  margin-left: auto;
}
.footer-content .footer-logo .custom-logo {
  width: 150px;
  height: 100%;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.footer-address,
.footer-email,
.footer-phone {
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
}

.footer-email a,
.footer-phone a {
  color: var(--color-text-secondary);
}
.footer-email a:hover,
.footer-phone a:hover {
  color: var(--color-accent);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 0.5rem;
}
.footer-menu a {
  color: var(--color-text-secondary);
}
.footer-menu a:hover {
  color: var(--color-accent);
}

.subsidy-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.subsidy-logo {
  flex: 0 0 auto;
}
.subsidy-logo img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.subsidy-logo:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-copyright,
.footer-credit {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-credit a {
  color: var(--color-text-muted);
}
.footer-credit a:hover {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
/**
 * Button Component Styles
 */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.btn-primary {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-button-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-button-text);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-accent);
  color: var(--color-button-text);
  text-decoration: none;
}

button.related-service {
  appearance: none;
  outline: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: rgba(212, 175, 55, 0.3);
  color: var(--color-accent);
  padding: 0.3rem;
  border-radius: 0.5rem;
}

/**
 * Archive & Single Page Styles
 */
.page-header {
  margin-bottom: 3rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
}

.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2rem;
}

.post-thumbnail {
  margin-bottom: 2rem;
}
.post-thumbnail img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.entry-content {
  color: var(--color-text-secondary);
  line-height: 1.8;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.entry-content p {
  margin-bottom: 1.5rem;
}
.entry-content ul, .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.back-to-services {
  color: var(--color-accent);
  font-weight: 600;
}
.back-to-services:hover {
  color: var(--color-accent-hover);
}

/**
 * Service Single Page Styles
 */
.service-single {
  padding: 2rem 0;
}

.service-header {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .service-header .service-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
.service-header .service-wrapper .service-title-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .service-header .service-wrapper .service-title-wrapper {
    width: 50%;
  }
}
.service-header .service-wrapper .service-feature-image {
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .service-header .service-wrapper .service-feature-image {
    width: 50%;
    height: 450px;
    margin-top: 0;
  }
}
.service-header .service-wrapper .service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.content-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .content-row {
    flex-direction: row;
    gap: 4rem;
  }
}
.content-row .text-content {
  width: 100%;
}
@media (min-width: 768px) {
  .content-row .text-content {
    width: 50%;
  }
}
.content-row .text-content .service-description {
  width: 100%;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 3rem;
}
.content-row .text-content .service-description p {
  margin-bottom: 1.5rem;
}
.content-row .text-content .service-description ul {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.content-row .text-content .service-description ul li {
  font-family: "League-spartan-light", sans-serif;
  font-size: clamp(1.125rem, 0.837rem + 1.231vw, 1.25rem);
  line-height: 1.5;
}
.content-row .text-content .service-checklist {
  width: 100%;
  padding: 2rem;
  background-color: var(--color-bg-secondary);
  border-radius: 8px;
}
.content-row .text-content .service-checklist .checklist-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}
.content-row .text-content .service-checklist .checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.content-row .text-content .service-checklist .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  background-color: var(--color-bg-primary);
  border-radius: 4px;
}
.content-row .text-content .service-checklist .checklist-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-button-text);
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.875rem;
}
.content-row .text-content .service-checklist .checklist-text {
  flex: 1;
  color: var(--color-text-primary);
}
.content-row aside {
  padding: 2rem;
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  background-color: var(--color-bg-secondary);
  width: 100%;
  max-width: 400px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: auto;
}

/* Image Slider */
.service-image-slider {
  width: 100%;
  margin-bottom: 3rem;
}

.slider-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  gap: 1rem;
}

.slider-slide {
  flex: 0 0 auto;
  width: 100%;
  width: calc((100% - 1rem) / 2);
}
.slider-slide img {
  width: 100%;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.slider-prev,
.slider-next {
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slider-prev:hover,
.slider-next:hover {
  background-color: var(--color-accent);
  color: var(--color-button-text);
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active, .slider-dot:hover {
  background-color: var(--color-accent);
  transform: scale(1.2);
}

footer.service-footer {
  margin-top: 3rem;
}

/**
 * Utility Styles
 */
.search-form {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
}

.search-field {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-size: 1rem;
}
.search-field:focus {
  outline: none;
  border-color: var(--color-accent);
}

.search-submit {
  flex-shrink: 0;
}

.error-404,
.no-results {
  padding: 4rem 0;
  text-align: center;
}

.error-404-actions {
  margin-top: 2rem;
}

.search-results {
  display: grid;
  gap: 2rem;
}
.search-results .entry-header {
  margin-bottom: 1rem;
}
.search-results .entry-title {
  font-size: 1.5rem;
}
.search-results .entry-title a {
  color: var(--color-text-primary);
}
.search-results .entry-title a:hover {
  color: var(--color-accent);
  text-decoration: none;
}
.search-results .entry-summary {
  color: var(--color-text-secondary);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: var(--color-bg-secondary);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--color-text-primary);
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .menu-toggle {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  a {
    color: black;
    text-decoration: underline;
  }
}

/*# sourceMappingURL=base.css.map */
