/*
Theme Name: RSS SOLUTIONNS LLC
Theme URI: https://rsssolutionns.store
Author: RSS SOLUTIONNS LLC
Author URI: https://rsssolutionns.store
Description: Official lightweight verification theme for RSS SOLUTIONNS LLC.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rss-solutionns
*/

/* =====================
   RSS SOLUTIONNS LLC
   Lightweight WordPress Theme
   ===================== */

:root {
  --color-slate: #0F172A;
  --color-blue: #0EA5E9;
  --color-blue-dark: #0284C7;
  --color-bg: #F8FAFC;
  --color-white: #FFFFFF;
  --color-text: #334155;
  --color-muted: #64748B;
  --color-border: #E2E8F0;
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 0.5rem;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate);
}

.header-contact {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.header-contact a {
  color: var(--color-muted);
  font-weight: 500;
}

.header-contact a:hover {
  color: var(--color-blue);
}

/* Hero */
.hero {
  background: var(--color-slate);
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.hero p {
  font-size: 1.125rem;
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero .btn {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.hero .btn:hover {
  background: var(--color-blue-dark);
  text-decoration: none;
}

/* Services */
.services {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 1.875rem;
  color: var(--color-slate);
  margin: 0 0 0.5rem;
}

.section-title p {
  color: var(--color-muted);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-slate);
  margin: 0 0 0.75rem;
}

.service-card p {
  color: var(--color-muted);
  margin: 0;
}

/* Entity Info */
.entity-info {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0;
}

.entity-box {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.entity-box h2 {
  color: var(--color-slate);
  margin-top: 0;
}

.entity-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.entity-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.entity-list strong {
  color: var(--color-slate);
  min-width: 160px;
  display: inline-block;
}

/* Footer */
.site-footer {
  background: var(--color-slate);
  color: #CBD5E1;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--color-white);
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-col nav a {
  display: block;
  color: #CBD5E1;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col nav a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Page Templates */
.page-content {
  padding: 0 0 4rem;
}

.page-hero {
  background: var(--color-slate);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.page-hero p {
  margin: 0;
  color: #CBD5E1;
}

.page-inner h2,
.page-inner h3 {
  color: var(--color-slate);
}

.page-inner p {
  margin-bottom: 1.25rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form form,
.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--color-slate);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

.contact-form button,
.contact-form input[type="submit"] {
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  background: var(--color-blue-dark);
}

.contact-details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-details h3 {
  margin-top: 0;
  color: var(--color-slate);
}

.contact-details p {
  margin: 0.5rem 0;
}

/* Privacy / Terms */
.legal-list {
  padding-left: 1.25rem;
}

.legal-list li {
  margin-bottom: 0.75rem;
}

/* Posts fallback */
.post-list {
  display: grid;
  gap: 1.5rem;
}

.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.post-card h2 a {
  color: var(--color-slate);
}

/* Utilities */
.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: center;
    text-align: center;
  }

  .header-contact {
    justify-content: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

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

  .entity-list strong {
    min-width: 100%;
  }
}
