/*
Theme Name: Precise3D
Theme URI: https://precise3d.in
Author: Native Infotech
Author URI: https://vivekwp.com
Description: Custom lightweight theme for Precise3D - 3D printing for architectural models and building prototypes.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: precise3d
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #0f1c2e 0%, #1b2d4a 50%, #0f1c2e 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.logo {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.logo span { color: #ff7a00; }

.tagline {
  font-size: 1.1rem;
  color: #c9d6e3;
  margin-bottom: 35px;
  font-weight: 300;
}

.printer {
  margin: 0 auto 25px;
  max-width: 320px;
}
.printer svg {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

p.desc {
  font-size: 1rem;
  color: #c9d6e3;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #c9d6e3;
}
.contact-box a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
}
.contact-box .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Standard inner pages (used when not on the front page) */
.site-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 60px 20px;
}
.site-content a { color: #ff7a00; }
