/*
Theme Name: FGT Sandwich Panel
Theme URI: https://fangostartavrizh.com/
Author: FGT
Description: قالب حرفه‌ای و راست‌چین برای معرفی ساندویچ پانل، نصب و پروژه‌های اجرا شده
Version: 1.1.0
Text Domain: fgt-sandwich
*/

/* =========================================================
GOOGLE FONT — VAZIRMATN
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================================
LOCAL FONT — B NAZANIN
فایل‌های فونت را داخل پوشه fonts قالب قرار دهید.
========================================================= */

@font-face {
font-family: 'BNazanin';
src: url('./fonts/BNazanin.woff2') format('woff2'),
url('./fonts/BNazanin.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}

/* =========================================================
VARIABLES
========================================================= */

:root {

```
--orange: #f58220;
--orange-dark: #dc6808;
--orange-light: #fff1e6;

--dark: #15181c;
--dark-2: #22272d;

--text: #20252a;
--gray: #69717a;

--light: #f5f6f7;
--white: #ffffff;

--border: #e5e7eb;

--radius: 18px;

--shadow:
    0 12px 35px rgba(0, 0, 0, 0.08);
```

}

/* =========================================================
RESET
========================================================= */

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {

```
margin: 0;
padding: 0;

direction: rtl;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 16px;

line-height: 1.9;

color: var(--text);

background: var(--white);

-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
```

}

/* فرم‌ها و دکمه‌ها */

body,
button,
input,
textarea,
select {

```
font-family:
    'Vazirmatn',
    Arial,
    sans-serif;
```

}

/* تیترها */

h1,
h2,
h3,
h4,
h5,
h6 {

```
font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-weight: normal;

line-height: 1.5;

color: var(--dark);

margin-top: 0;
```

}

/* لینک‌ها */

a {

```
color: inherit;

text-decoration: none;

transition:
    color 0.25s ease,
    opacity 0.25s ease;
```

}

a:hover {
text-decoration: none;
}

button,
input,
textarea,
select {
font-size: inherit;
}

/* تصاویر */

img {

```
display: block;

max-width: 100%;

height: auto;
```

}

/* =========================================================
CONTAINER
========================================================= */

.container {

```
width: 92%;

max-width: 1180px;

margin-right: auto;
margin-left: auto;
```

}

/* =========================================================
HEADER
========================================================= */

.site-header {

```
position: sticky;

top: 0;

z-index: 999;

width: 100%;

background:
    rgba(255, 255, 255, 0.96);

border-bottom:
    1px solid var(--border);

backdrop-filter:
    blur(12px);
```

}

.header-inner {

```
min-height: 78px;

display: flex;

align-items: center;

justify-content: space-between;

gap: 25px;
```

}

/* =========================================================
LOGO
========================================================= */

.logo {

```
display: inline-flex;

align-items: center;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 25px;

font-weight: 900;

color: var(--dark);

white-space: nowrap;
```

}

.logo span {

```
color: var(--orange);
```

}

/* =========================================================
NAVIGATION
========================================================= */

.main-nav {

```
flex: 1;
```

}

.main-nav ul {

```
display: flex;

align-items: center;

justify-content: center;

gap: 28px;

margin: 0;

padding: 0;

list-style: none;
```

}

.main-nav li {

```
margin: 0;

padding: 0;
```

}

.main-nav a {

```
display: block;

padding: 8px 0;

color: var(--dark);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;

font-weight: 700;

transition:
    color 0.25s ease;
```

}

.main-nav a:hover {

```
color: var(--orange);
```

}

/* =========================================================
BUTTONS
========================================================= */

.btn,
.header-cta {

```
display: inline-flex;

align-items: center;

justify-content: center;

gap: 8px;

min-height: 46px;

padding: 10px 20px;

border: none;

border-radius: 11px;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;

font-weight: 700;

cursor: pointer;

transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
```

}

.btn:hover,
.header-cta:hover {

```
transform: translateY(-2px);
```

}

.header-cta,
.btn-primary {

```
background: var(--orange);

color: var(--white);
```

}

.header-cta:hover,
.btn-primary:hover {

```
background: var(--orange-dark);

color: var(--white);
```

}

.btn-dark {

```
background: var(--dark);

color: var(--white);
```

}

.btn-dark:hover {

```
background: #000;

color: var(--white);
```

}

.btn-light {

```
background: var(--white);

color: var(--dark);
```

}

.btn-light:hover {

```
background: #f1f1f1;
```

}

/* =========================================================
HERO
========================================================= */

.hero {

```
position: relative;

overflow: hidden;

padding: 100px 0 90px;

color: var(--white);

background:
    linear-gradient(
        120deg,
        #101419 0%,
        #20262d 55%,
        #343b42 100%
    );
```

}

.hero::after {

```
content: "";

position: absolute;

left: -10%;
right: -10%;

bottom: -120px;

height: 260px;

background: var(--orange);

opacity: 0.10;

transform: rotate(-4deg);
```

}

.hero-grid {

```
position: relative;

z-index: 2;

display: grid;

grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

gap: 60px;

align-items: center;
```

}

/* =========================================================
EYEBROW
========================================================= */

.eyebrow {

```
display: inline-block;

margin-bottom: 12px;

color: var(--orange);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;

font-weight: 800;
```

}

/* =========================================================
HERO TITLE
========================================================= */

.hero h1 {

```
margin: 0 0 20px;

max-width: 700px;

color: var(--white);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size:
    clamp(42px, 5vw, 68px);

line-height: 1.35;

font-weight: normal;

letter-spacing: 0;
```

}

.hero p {

```
max-width: 650px;

margin: 0 0 30px;

color: #d9dee2;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 18px;

line-height: 2;
```

}

/* =========================================================
HERO BUTTONS
========================================================= */

.hero-actions {

```
display: flex;

flex-wrap: wrap;

gap: 12px;
```

}

/* =========================================================
HERO PANEL CARD
========================================================= */

.hero-card {

```
min-height: 380px;

padding: 30px;

display: flex;

flex-direction: column;

justify-content: flex-end;

border:
    1px solid rgba(255,255,255,0.15);

border-radius: 28px;

background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.02)
    );

box-shadow:
    0 25px 80px rgba(0,0,0,0.25);
```

}

.hero-card strong {

```
display: block;

margin-top: 20px;

color: var(--white);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 25px;

font-weight: normal;
```

}

.hero-card > span {

```
color: #cbd1d5;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;
```

}

/* =========================================================
PANEL VISUAL
========================================================= */

.panel-lines {

```
height: 230px;

display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 12px;

align-items: end;
```

}

.panel-lines i {

```
display: block;

height: 75%;

border-radius: 7px;

background:
    linear-gradient(
        90deg,
        #aeb5ba,
        #f7f7f7,
        #cbd0d4
    );

box-shadow:
    inset -8px 0 0 rgba(0,0,0,0.07);
```

}

.panel-lines i:nth-child(2) {

```
height: 90%;
```

}

.panel-lines i:nth-child(3) {

```
height: 68%;
```

}

/* =========================================================
SECTIONS
========================================================= */

.section {

```
padding: 85px 0;
```

}

.section.alt {

```
background: var(--light);
```

}

/* =========================================================
SECTION HEADER
========================================================= */

.section-head {

```
max-width: 760px;

margin: 0 auto 45px;

text-align: center;
```

}

.section-head h2 {

```
margin: 0 0 12px;

color: var(--dark);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 42px;

line-height: 1.5;

font-weight: normal;
```

}

.section-head p {

```
margin: 0;

color: var(--gray);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 16px;

line-height: 2;
```

}

/* =========================================================
SERVICE GRID
========================================================= */

.grid-3 {

```
display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 22px;
```

}

/* =========================================================
CARD
========================================================= */

.card {

```
padding: 30px;

background: var(--white);

border:
    1px solid var(--border);

border-radius: var(--radius);

box-shadow: var(--shadow);

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
```

}

.card:hover {

```
transform: translateY(-6px);

box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
```

}

/* =========================================================
ICON
========================================================= */

.icon {

```
width: 56px;

height: 56px;

margin-bottom: 20px;

display: grid;

place-items: center;

border-radius: 15px;

background:
    var(--orange-light);

color: var(--orange);

font-size: 25px;
```

}

/* =========================================================
CARD TEXT
========================================================= */

.card h3 {

```
margin: 0 0 8px;

color: var(--dark);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 25px;

font-weight: normal;
```

}

.card p {

```
margin: 0;

color: var(--gray);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;

line-height: 2;
```

}

/* =========================================================
PRODUCTS
========================================================= */

.product-grid {

```
display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 22px;
```

}

.product-card {

```
overflow: hidden;

background: var(--white);

border:
    1px solid var(--border);

border-radius: 18px;

box-shadow: var(--shadow);

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
```

}

.product-card:hover {

```
transform: translateY(-5px);

box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
```

}

/* =========================================================
PRODUCT IMAGE
========================================================= */

.product-image {

```
position: relative;

aspect-ratio: 16 / 10;

display: grid;

place-items: center;

overflow: hidden;

background:
    linear-gradient(
        135deg,
        #dfe3e6,
        #fafafa
    );

color: #777;

font-size: 15px;

font-weight: 800;
```

}

.product-image img {

```
width: 100%;

height: 100%;

object-fit: cover;
```

}

/* =========================================================
PRODUCT BODY
========================================================= */

.product-body {

```
padding: 22px;
```

}

.product-body h3 {

```
margin: 0 0 8px;

color: var(--dark);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 25px;

font-weight: normal;
```

}

.product-body p {

```
margin: 0 0 14px;

color: var(--gray);

font-size: 14px;

line-height: 2;
```

}

/* =========================================================
TAGS
========================================================= */

.specs {

```
display: flex;

flex-wrap: wrap;

gap: 8px;

margin: 13px 0;
```

}

.tag {

```
padding: 4px 11px;

border-radius: 50px;

background: #f0f2f3;

color: #555d65;

font-size: 12px;

font-weight: 700;
```

}

.muted {

```
color: var(--gray);

font-size: 14px;
```

}

/* =========================================================
PROJECTS
========================================================= */

.project-grid {

```
display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 22px;
```

}

.project-card {

```
overflow: hidden;

background: var(--white);

border:
    1px solid var(--border);

border-radius: 18px;

box-shadow: var(--shadow);

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
```

}

.project-card:hover {

```
transform: translateY(-5px);

box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
```

}

/* =========================================================
PROJECT IMAGE
========================================================= */

.project-image {

```
position: relative;

aspect-ratio: 16 / 10;

overflow: hidden;

display: grid;

place-items: center;

background:
    linear-gradient(
        135deg,
        #dfe3e6,
        #f8f9fa
    );

color: #777;

font-weight: 800;
```

}

.project-image img {

```
width: 100%;

height: 100%;

object-fit: cover;
```

}

/* =========================================================
PROJECT LABEL
========================================================= */

.project-card .project-image::after {

```
content: "مشاهده پروژه";

position: absolute;

right: 14px;

bottom: 14px;

padding: 5px 11px;

border-radius: 8px;

background: var(--orange);

color: var(--white);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 12px;

font-weight: 700;
```

}

/* =========================================================
PROJECT BODY
========================================================= */

.project-body {

```
padding: 20px;
```

}

.project-body h3 {

```
margin: 0 0 7px;

color: var(--dark);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 24px;

font-weight: normal;
```

}

/* =========================================================
STATS
========================================================= */

.stats {

```
padding: 55px 0;

background: var(--dark);

color: var(--white);
```

}

.stats-grid {

```
display: grid;

grid-template-columns:
    repeat(4, 1fr);

gap: 20px;

text-align: center;
```

}

.stat strong {

```
display: block;

color: var(--orange);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 34px;

line-height: 1.3;

font-weight: 900;
```

}

.stat span {

```
color: #c7ccd1;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;
```

}

/* =========================================================
CTA
========================================================= */

.cta {

```
padding: 50px;

display: flex;

align-items: center;

justify-content: space-between;

gap: 25px;

border-radius: 25px;

background:
    linear-gradient(
        100deg,
        var(--orange),
        var(--orange-dark)
    );

color: var(--white);
```

}

.cta h2 {

```
margin: 0 0 7px;

color: var(--white);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 40px;

line-height: 1.5;

font-weight: normal;
```

}

.cta p {

```
margin: 0;

color: #fff0e4;

font-size: 15px;
```

}

/* =========================================================
PAGE HERO
========================================================= */

.page-hero {

```
padding: 65px 0;

background: var(--dark);

color: var(--white);
```

}

.page-hero h1 {

```
margin: 0;

color: var(--white);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 48px;

line-height: 1.5;

font-weight: normal;
```

}

.breadcrumbs {

```
margin-bottom: 8px;

color: #bfc5ca;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 13px;
```

}

/* =========================================================
CONTENT
========================================================= */

.content {

```
padding: 70px 0;
```

}

.content-area {

```
max-width: 900px;

margin: 0 auto;
```

}

.content-area h1,
.content-area h2,
.content-area h3 {

```
color: var(--dark);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

line-height: 1.6;

font-weight: normal;
```

}

.content-area h1 {

```
font-size: 42px;
```

}

.content-area h2 {

```
font-size: 34px;
```

}

.content-area h3 {

```
font-size: 27px;
```

}

.content-area p {

```
color: #4e565e;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 16px;

line-height: 2.1;
```

}

.content-area img {

```
margin: 25px auto;

border-radius: 15px;
```

}

/* =========================================================
FORM
========================================================= */

.form-grid {

```
display: grid;

grid-template-columns:
    repeat(2, 1fr);

gap: 15px;
```

}

.form-grid .full {

```
grid-column: 1 / -1;
```

}

.form-control {

```
width: 100%;

padding: 13px 15px;

border:
    1px solid #d8dce0;

border-radius: 10px;

background: var(--white);

color: var(--text);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;

transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
```

}

.form-control:focus {

```
outline: none;

border-color: var(--orange);

box-shadow:
    0 0 0 3px
    rgba(245,130,32,0.15);
```

}

/* =========================================================
FOOTER
========================================================= */

.site-footer {

```
padding: 60px 0 20px;

background: #11151a;

color: #dce1e5;
```

}

.footer-grid {

```
display: grid;

grid-template-columns:
    1.3fr 1fr 1fr;

gap: 40px;
```

}

.site-footer h3 {

```
margin: 0 0 15px;

color: var(--white);

font-family:
    'BNazanin',
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 26px;

font-weight: normal;
```

}

.site-footer p {

```
margin: 7px 0;

color: #aeb5bb;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 14px;

line-height: 2;
```

}

.site-footer a:hover {

```
color: var(--orange);
```

}

.footer-bottom {

```
margin-top: 40px;

padding-top: 18px;

border-top:
    1px solid #2b3137;

text-align: center;

color: #929aa1;

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

font-size: 13px;
```

}

/* =========================================================
WORDPRESS
========================================================= */

.wp-caption {

```
max-width: 100%;
```

}

.aligncenter {

```
margin-right: auto !important;

margin-left: auto !important;
```

}

.alignright {

```
float: right;

margin-left: 25px;
```

}

.alignleft {

```
float: left;

margin-right: 25px;
```

}

.screen-reader-text {

```
position: absolute;

width: 1px;

height: 1px;

padding: 0;

margin: -1px;

overflow: hidden;

clip: rect(0,0,0,0);

white-space: nowrap;

border: 0;
```

}

/* =========================================================
MOBILE MENU
========================================================= */

.mobile-toggle {

```
display: none;

padding: 8px 12px;

border: 0;

border-radius: 8px;

background: var(--dark);

color: var(--white);

font-family:
    'Vazirmatn',
    Arial,
    sans-serif;

cursor: pointer;
```

}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 900px) {

```
.hero-grid {

    grid-template-columns: 1fr;

    gap: 40px;
}

.hero-card {

    min-height: 300px;
}

.grid-3,
.product-grid,
.project-grid {

    grid-template-columns:
        repeat(2, 1fr);
}

.stats-grid {

    grid-template-columns:
        repeat(2, 1fr);
}

.footer-grid {

    grid-template-columns:
        1fr 1fr;
}

.main-nav {

    display: none;
}

.mobile-toggle {

    display: block;
}

.header-cta {

    display: none;
}
```

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 620px) {

```
.container {

    width: 90%;
}

.header-inner {

    min-height: 68px;
}

.logo {

    font-size: 22px;
}

.hero {

    padding: 65px 0;
}

.hero h1 {

    font-size: 42px;

    line-height: 1.45;
}

.hero p {

    font-size: 15px;

    line-height: 2;
}

.hero-actions {

    flex-direction: column;

    align-items: stretch;
}

.hero-actions .btn {

    width: 100%;
}

.section {

    padding: 60px 0;
}

.section-head {

    margin-bottom: 30px;
}

.section-head h2 {

    font-size: 36px;
}

.grid-3,
.product-grid,
.project-grid,
.footer-grid {

    grid-template-columns: 1fr;
}

.stats-grid {

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px 10px;
}

.stat strong {

    font-size: 27px;
}

.cta {

    display: block;

    padding: 32px;
}

.cta h2 {

    font-size: 34px;
}

.cta .btn {

    width: 100%;

    margin-top: 20px;
}

.page-hero {

    padding: 50px 0;
}

.page-hero h1 {

    font-size: 40px;
}

.form-grid {

    grid-template-columns: 1fr;
}

.form-grid .full {

    grid-column: auto;
}

.alignright,
.alignleft {

    float: none;

    margin-right: 0;

    margin-left: 0;
}
```

}
