/*
Theme Name: Sabina Trade Site
Theme URI: https://sabinatradesite.store
Author: Sabina Trade Site
Author URI: https://sabinatradesite.store
Description: Official custom WordPress theme for Sabina Trade Site in Sylhet, Bangladesh.
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: sabina-trade-site
*/

:root {
  --industrial-blue: #0284c7;
  --glass-teal: #0d9488;
  --slate-gray: #334155;
  --light-bg: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--slate-gray);
  background: var(--light-bg);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--industrial-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: #0f172a; line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--industrial-blue);
  color: var(--white) !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #0369a1; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white) !important; border: 1px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* Topbar */
.topbar { background: var(--slate-gray); color: #e2e8f0; font-size: 14px; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: #e2e8f0; }

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; max-width: var(--max); margin: 0 auto; }
.site-branding .site-title { font-size: 22px; margin: 0; }
.site-branding .site-title a { color: #0f172a; }
.site-branding .site-tagline { font-size: 13px; color: #64748b; }
.main-navigation ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.main-navigation a { color: var(--slate-gray); font-weight: 600; font-size: 15px; }
.main-navigation a:hover { color: var(--industrial-blue); }
.menu-toggle { display: none; background: var(--industrial-blue); color: #fff; border: 0; border-radius: 8px; padding: 10px 14px; font-size: 15px; cursor: pointer; }
.header-cta { display: flex; flex-direction: column; align-items: flex-end; font-size: 14px; }
.header-cta strong { color: var(--glass-teal); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  color: #fff;
  padding: 90px 0;
}
.hero h1 { color: #fff; font-size: 42px; max-width: 820px; }
.hero p { font-size: 19px; max-width: 700px; color: #eff6ff; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 6px 14px; border-radius: 999px; font-size: 13px; margin-bottom: 18px; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head span { color: var(--glass-teal); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.section-head h2 { font-size: 32px; margin-top: 8px; }

.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { box-shadow: 0 12px 28px rgba(15,23,42,.08); transform: translateY(-2px); }
.card h3 { font-size: 19px; }
.card p { margin: 0; font-size: 15px; }
.card .icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(2,132,199,.1); color: var(--industrial-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 14px; }

.two-col { display: grid; gap: 40px; grid-template-columns: 1.1fr .9fr; align-items: start; }
.info-box { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--glass-teal); border-radius: var(--radius); padding: 24px; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 15px; }
.info-list li:last-child { border-bottom: 0; }
.info-list strong { display: block; color: #0f172a; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }

/* Content */
.content-area { padding: 56px 0; }
.entry { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-bottom: 26px; }
.entry-title { font-size: 28px; }
.entry-meta { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.entry-content h2 { font-size: 24px; margin-top: 1.4em; }
.entry-content ul { padding-left: 20px; }
.page-links, .pagination { margin: 24px 0; }

/* 404 */
.error-404 { text-align: center; padding: 100px 20px; }
.error-404 h1 { font-size: 72px; color: var(--industrial-blue); }

/* Footer */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 56px 0 0; margin-top: 40px; }
.site-footer h3 { color: #fff; font-size: 17px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #38bdf8; }
.business-info li { list-style: none; margin-bottom: 10px; font-size: 15px; }
.business-info ul { padding: 0; margin: 0; }
.business-info .label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #64748b; }
.licence-badge { display: inline-block; margin-top: 8px; background: rgba(13,148,136,.18); border: 1px solid rgba(13,148,136,.5); color: #5eead4; padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.footer-menu ul { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 40px; padding: 20px 0; font-size: 14px; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero { padding: 64px 0; }
  .menu-toggle { display: block; }
  .main-navigation { display: none; width: 100%; }
  .main-navigation.toggled { display: block; }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation li { border-top: 1px solid var(--border); padding: 12px 0; }
  .header-inner { flex-wrap: wrap; }
  .header-cta { display: none; }
}
