/*
Theme Name: Die Smiling
Theme URI: https://diesmilingco.com
Author: Die Smiling LLC
Description: Responsive, clean AI consulting theme (Light Mode Preferred)
Version: 1.4
*/

/*==============================
=         Root Colors          =
==============================*/
:root {
  --color-primary: #111;
  --color-secondary: #fff;
  --color-accent: #333;
  --color-light: #fff;
  --color-muted: #999;
  --max-width: 1200px;
  --spacing: 20px;
}

/*==============================
=        Global Reset          =
==============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--color-light);
  color: var(--color-primary);
  line-height: 1.6;
  font-size: 16px;
}

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

/*==============================
=          Sections            =
==============================*/
section {
  background: var(--color-light);
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ==============================
=         Header Layout        =
============================== */

header {
  background: var(--color-light);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

/* Align logo to the left */
.logo {
  flex: 1;
}
.logo img {
    height: 90px; /* Slightly larger logo on desktop for visibility */
    width: auto;
  }

/* Hide nav-toggle ( icon) on desktop */
.nav-toggle {
  display: none;
}
/* Navigation styling (desktop) */
nav {
  flex: 1;
  text-align: left;
}

nav ul {
  display: flex;
  justify-content: flex-end; /* Aligns items to the far right */
  gap: 30px; /* Adjust spacing between links */
  list-style: none; /* Removes bullet points */
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease-in-out;
}

nav ul li a:hover {
  color: var(--color-accent);
}

/* ==============================
=         Mobile Styles         =
============================== */
@media (max-width: 768px) {
  /* Stack header items horizontally, but control alignment */
  header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: var(#106);
    cursor: pointer;
    margin-left: right; /* pushes it to far right */
  }
	.logo img {
    height: 60px; /* Slightly larger logo on mobile for visibility */
    width: auto;
	border: none
  }

 /* Keep nav on the right for desktop */
    nav {
	  flex: 2;
	  display: flex;
	  justify-content: flex-end;
	}


  nav ul {
    display: none;
    flex-direction: column;
    background: var(--color-primary);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a {
    color: var(--color-light);
    padding: 12px 20px;
    display: block;
  }
}

/*==============================
=         Animations           =
==============================*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease-out forwards;
}

/*==============================
=         Hero Section         =
==============================*/
.hero {
  padding: 80px 20px 60px;
  background: var(--color-light);
  text-align: center;
}

.hero h1,
.hero p,
.hero .btn {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
  animation-delay: 0.2s;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero p {
  animation-delay: 0.4s;
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero .btn {
  animation-delay: 0.6s;
  background: var(--color-accent);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

.hero .btn:hover {
  background: #000;
}

/*==============================
=      Services Section        =
==============================*/
.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-box {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-box p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/*==============================
=         CTA Section          =
==============================*/
.cta-box {
  margin-top: 50px;
  background: #f1f1f1;
  padding: 30px;
  border-radius: 10px;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-box .btn {
  background: var(--color-accent);
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-box .btn:hover {
  background: #000;
}

/*==============================
=      Tools Page Styling      =
==============================*/

/* ============ Tool Card Grid ============ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ============ Tool Card Base ============ */
.tool-card {
  background: #1e1e1e;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* ============ Headings and Text ============ */
.tool-card {
  background: #1e1e1e;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Specific styling for 'Built by Die Smiling' (optional override) */
.section-title.built-by {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted); /* Light grey from your theme */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}


/* Logo that hangs off the right edge */
.tool-card .card-logo {
  position: absolute;
  right: -80px; /* hangs it off the edge */
  top: 50%;
  transform: translateY(-50%);
  height: 260px; /* Adjust as needed */
  opacity: 0.19;  /* soft glare effect */
  pointer-events: none;
}


.tool-card h3 {
  margin-bottom: 8px;
  color: #fff;
}

.tool-card p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 10px;
}

.tool-card .price {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.tool-card .btn {
  margin-top: 10px;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}

.tool-card .btn:hover {
  background: #555;
}

/*==============================
=     About + Contact Shared   =
==============================*/
.about-us,
.contact-section {
  background: var(--color-light);
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: auto;
}

.about-us h1,
.about-us h2,
.about-us p,
.contact-wrapper h1,
.contact-wrapper p {
  animation: fadeInUp 0.9s ease-out forwards;
  margin-bottom: 25px;
}
.about-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.about-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-muted);
  font-size: 1rem;
}

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


/*==============================
=           Footer             =
==============================*/
footer {
  background: var(--color-light);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/*==============================
=           ADDERS            =
==============================*/
.highlight-mission {
	  
  font-style: italic;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.4),
    0 0 12px rgba(255, 255, 255, 0.2);
}


.product-image {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 220px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 480px) {
  .product-image {
    right: -50px;
    top: 60%;
    height: 110px;
    opacity: 15;
  }
}

