/*
Theme Name: Plugiz Theme
Author: Plugiz
Version: 1.0
Description: A modern WordPress theme for automation plugins in the AEC industry.
*/

/* === BASE STYLES === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: #1a73e8;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.9;
  color: #0ea5e9;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

button, .btn {
  background-color: #1a73e8;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}
button:hover, .btn:hover {
  background-color: #1557b0;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn.green {
  background-color: #10b981;
  color: #ffffff;
}
.btn.green:hover {
  background-color: #047857;
}
.btn.blue {
  background-color: #6366f1;
  color: #ffffff;
}
.btn.blue:hover {
  background-color: #4f46e5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-nav .menu-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.site-nav .menu-list a {
  text-decoration: none;
  color: #06031a;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.site-nav .menu-list a:hover,
.site-nav .menu-list .current-menu-item a {
  color: #1a73e8;
  border-bottom: 2px solid #1a73e8;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: #1a73e8;
  border-radius: 2px;
}

/* RESPONSIVE MENU */
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #f9fafb;
    position: absolute;
    right: 20px;
    top: 70px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav .menu-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* HERO SECTION */
.home-hero {
  position: relative;
  background: linear-gradient(135deg, #0f3c47, #2ca693);
  overflow: hidden;
  padding-bottom: 0;
  z-index: 0;
}
.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0;
  min-height: 600px;
  position: relative;
  z-index: 1;
  max-width: 1850px;
  margin: 0 auto;
}
#dotCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
}
.right-hero {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.hero-text-wrapper {
  background-color: rgba(15, 60, 71, 0.95);
  padding: 10px;
  border-radius: 16px;
  max-width: 540px;
  color: #fff;
  z-index: 3;
  pointer-events: none;
}
.hero-text-wrapper h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
}
.hero-text-wrapper p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}
.hero-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
}
.headline-white {
  color: #ffffff;
}
.headline-highlight {
  color: #facc15;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  pointer-events: auto;
  z-index: 4;
}
.hero-divider {
  position: relative;
  width: 100%;
  margin-top: 0;
}
.hero-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* FEATURES SECTION */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}
.features-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}
.features-section p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 40px;
}
.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.feature-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
}
.feature-box img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}
.feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 15px;
  color: #4b5563;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    padding: 40px 20px;
  }
  .right-hero {
    justify-content: center;
    margin-top: 20px;
  }
  .hero-text-wrapper {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .feature-boxes {
    flex-direction: column;
    align-items: center;
  }
  .cta-section h2 {
    font-size: 24px;
  }
}

