/*
Theme Name: WE-Agency
Theme URI: https://thewebelegance.com/
Description: WE-Agency is a custom standalone theme by Web Elegance.
Author: Web Elegance
Author URI: https://thewebelegance.com/
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: we-agency
Tags: agency, business, corporate, elementor, responsive
*/ 

/* ------------------------------
   RESET & BASE
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

a {
  color: #2563eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

/* ------------------------------
   CONTAINERS
------------------------------ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ------------------------------
   HEADER
------------------------------ */
header.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.site-branding {
  font-weight: 700;
  font-size: 1.5rem;
  color: #111827;
}

nav.site-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav.site-navigation a { font-weight: 500; color: #374151; }

nav.site-navigation a:hover { color: #2563eb; }

/* ------------------------------
   HERO (default homepage section)
------------------------------ */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  color: #fff;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }

.hero p { font-size: 1.125rem; margin-bottom: 2rem; }

.hero .btn {
  background: #fff;
  color: #2563eb;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

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

/* ------------------------------
   CONTENT / BLOG
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.75rem;
  color: #111827;
}

p { margin-bottom: 1rem; }

article.post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.post-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

/* ------------------------------
   SIDEBAR
------------------------------ */
.sidebar {
  background: #f9fafb;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

/* ------------------------------
   FOOTER
------------------------------ */

footer.site-footer {
  background: #111827;
  color: #d1d5db; 
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
    
}

footer.site-footer a { color: #93c5fd; }

footer.site-footer a:hover { color: #bfdbfe; }

/* ------------------------------
   BUTTONS
------------------------------ */
button,
input[type="submit"],
.btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
button:hover,
input[type="submit"]:hover,
.btn:hover { background: #1d4ed8; }

/* ------------------------------
   FORMS
------------------------------ */
input,
textarea,
select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 768px) {
  nav.site-navigation ul {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}