/*
Theme Name: Buelley Fortnite Guide
Theme URI: https://buelley.com/
Author: Buelley
Author URI: https://buelley.com/
Description: A clean WordPress theme for Buelley with Fortnite account landing content, SEO meta support, site icon, and a simple Contact Us page.
Version: 1.0.8
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buelley-fortnite-guide
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-brand-icon {
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  flex: 0 0 38px;
  order: 1;
}

.site-brand span {
  order: 2;
}

.site-nav ul,
.header-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.site-nav a {
  color: #374151;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: #4f46e5;
}

.top-bar {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #ffffff;
  text-align: center;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top, #243b80 0%, #111827 60%);
  color: #ffffff;
  padding: 46px 20px 42px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  color: #dbeafe;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: #facc15;
  color: #111827;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 26px 20px;
  background: #f8fafc;
}

.badge {
  background: #eef2ff;
  color: #3730a3;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

section {
  padding: 55px 20px;
}

.intro-section {
  padding-bottom: 18px;
}

.section-light {
  background: #f8fafc;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #111827;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111827;
}

p {
  margin-bottom: 14px;
  color: #374151;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 5px solid #f97316;
  border-radius: 14px;
  padding: 20px;
  margin-top: 22px;
}

.warning strong {
  color: #9a3412;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

th {
  background: #111827;
  color: #ffffff;
  text-align: left;
  padding: 14px;
}

td {
  padding: 14px;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

tr:nth-child(even) {
  background: #f8fafc;
}

.check {
  color: #16a34a;
  font-weight: 800;
}

.danger {
  color: #dc2626;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.step {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.step-number {
  width: 42px;
  height: 42px;
  background: #4f46e5;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-box {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #ffffff;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  margin-top: 24px;
}

.cta-box h2,
.cta-box p {
  color: #ffffff;
}

.cta-box p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}

.footer {
  background: #111827;
  color: #ffffff;
  padding: 24px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer p {
  color: #d1d5db;
  margin: 0;
}

.footer p + p {
  margin-top: 6px;
}

.footer a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.page-hero {
  background: radial-gradient(circle at top, #243b80 0%, #111827 60%);
  color: #ffffff;
  text-align: center;
  padding: 48px 20px 42px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #dbeafe;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
}

.contact-list {
  list-style: none;
  margin-top: 10px;
}

.contact-list li {
  padding: 8px 0;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}


.article-section {
  background: #ffffff;
  padding-top: 10px;
  padding-bottom: 48px;
}

.article-content {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.article-content h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  line-height: 1.18;
  margin-bottom: 16px;
}

.article-intro {
  font-size: 1.04rem;
  color: #374151;
}


.article-content h3 {
  margin-top: 26px;
  margin-bottom: 10px;
}

.article-content ul {
  margin: 10px 0 18px 22px;
}

.article-content li {
  color: #374151;
  margin-bottom: 8px;
}

.entry-content {
  max-width: 860px;
  margin: 0 auto;
}

.entry-content p,
.entry-content li {
  color: #374151;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .site-brand {
    font-size: 1.05rem;
    gap: 8px;
  }

  .site-brand-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-nav {
    margin-left: auto;
  }

  .site-nav ul,
  .header-menu {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

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

  .hero {
    padding: 38px 20px 36px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
    margin-bottom: 10px;
  }

  .hero p,
  .page-hero p {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  section {
    padding: 42px 20px;
  }

  .intro-section {
    padding-bottom: 14px;
  }

  .article-section {
    padding-top: 6px;
  }

  .article-content h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

}
