/*
Theme Name: GAS Team Developers
Theme URI: https://gasteamdevelopers.com
Author: GAS Team Developers
Author URI: https://gasteamdevelopers.com
Description: Premium FiveM Scripts & Resources - Custom WordPress theme for GAS Team Developers
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: gasteam
*/

/* ──── RESET & VARIABLES ──── */
:root {
    --bg: #0a0a0a; --bg2: #111111; --bg3: #0d0d0d;
    --card: #161616; --card-hover: #1a1a1a;
    --accent: #c0392b; --accent2: #e74c3c;
    --accent-glow: rgba(231,76,60,0.15);
    --gold: #f39c12; --green: #27ae60; --blue: #3498db; --purple: #9b59b6;
    --text: #ffffff; --text2: #999999; --text3: #666666;
    --border: rgba(255,255,255,0.06); --border2: rgba(255,255,255,0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ──── NAV ──── */
nav.site-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10,10,10,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px; height: 70px;
    display: flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent2); }
.nav-btn { background: var(--accent); color: white; padding: 10px 24px; border-radius: 6px; font-weight: 600; font-size: 13px; transition: all 0.3s; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
.nav-btn:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(231,76,60,0.3); }
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; color: white; background: none; border: none; }

/* ──── HERO ──── */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at center, rgba(50,10,10,0.4) 0%, rgba(10,10,10,0.98) 70%);
    background-size: cover; background-position: center;
    text-align: center; padding: 100px 20px 60px; position: relative;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px;
    background: linear-gradient(transparent, var(--bg));
}
.hero-content { max-width: 900px; position: relative; z-index: 1; }
.hero-logo-wrap { position: relative; display: inline-block; margin-bottom: 30px; }
.hero-logo-wrap::before {
    content: ''; position: absolute; inset: -30px; border-radius: 50%;
    background: radial-gradient(circle, rgba(231,76,60,0.2) 0%, transparent 70%);
    animation: logoPulse 3s ease-in-out infinite; z-index: -1;
}
.hero-logo {
    width: 320px; height: auto;
    filter: drop-shadow(0 0 30px rgba(231,76,60,0.4)) drop-shadow(0 10px 40px rgba(0,0,0,0.6)) brightness(0.8);
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-tagline {
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px; color: var(--accent2); margin-bottom: 20px;
}
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 .red { color: var(--accent2); }
.hero p { font-size: 18px; color: var(--text2); margin-bottom: 35px; line-height: 1.7; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ──── BUTTONS ──── */
.btn-primary { background: var(--accent); color: white; padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: all 0.3s; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(231,76,60,0.4); color: white; }
.btn-outline { background: transparent; color: white; padding: 14px 36px; border-radius: 8px; font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--accent2); color: var(--accent2); transform: translateY(-3px); }

/* ──── SERVICES STRIP ──── */
.services-strip { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 40px; }
.services-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.service-chip { display: flex; align-items: center; gap: 10px; background: var(--card); padding: 14px 24px; border-radius: 10px; border: 1px solid var(--border); transition: all 0.3s; }
.service-chip:hover { border-color: rgba(231,76,60,0.3); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.service-chip i { font-size: 22px; color: var(--accent2); }
.service-chip span { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ──── STATS BAR ──── */
.stats-bar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 30px 40px; display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; color: var(--accent2); }
.stat-label { font-size: 13px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ──── SECTION COMMON ──── */
section.gas-section { padding: 80px 40px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.section-sub { color: var(--text2); font-size: 16px; }
.section-title .red { color: var(--accent2); }

/* ──── CATEGORY TABS ──── */
.category-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.cat-tab { background: var(--card); border: 1px solid var(--border); color: var(--text2); padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; }
.cat-tab:hover, .cat-tab.active { background: var(--accent); border-color: var(--accent); color: white; }

/* ──── PRODUCTS GRID ──── */
.products { background: var(--bg2); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.product-card { background: var(--card); border-radius: 12px; overflow: hidden; transition: all 0.3s; border: 1px solid var(--border); cursor: pointer; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); border-color: rgba(231,76,60,0.3); }
.product-img { height: 200px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.product-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, rgba(22,22,22,0.8)); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; z-index: 1; }
.badge-new { background: var(--gold); color: #000; }
.badge-popular { background: var(--accent); color: white; }
.badge-free { background: var(--green); color: white; }
.badge-featured { background: var(--purple); color: white; }
.product-info { padding: 20px; }
.product-name { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 15px; min-height: 40px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.product-tag { background: rgba(255,255,255,0.06); padding: 3px 10px; border-radius: 4px; font-size: 11px; color: var(--text3); }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: var(--accent2); }
.product-buy { background: var(--accent); color: white; border: none; padding: 8px 20px; border-radius: 6px; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; display: inline-block; text-align: center; }
.product-buy:hover { background: var(--accent2); color: white; }

/* ──── FEATURES ──── */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.feature-card { text-align: center; padding: 40px 25px; background: var(--card); border-radius: 12px; border: 1px solid var(--border); transition: all 0.3s; }
.feature-card:hover { border-color: rgba(231,76,60,0.3); transform: translateY(-5px); }
.feature-icon { font-size: 40px; color: var(--accent2); margin-bottom: 20px; }
.feature-card h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.feature-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ──── ABOUT ──── */
.about { background: var(--bg2); }
.about-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.about-logo { flex-shrink: 0; width: 250px; text-align: center; }
.about-logo img { width: 250px; filter: drop-shadow(0 0 25px rgba(231,76,60,0.35)); }
.about-text { flex: 1; }
.about-text h3 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.about-text h3 .red { color: var(--accent2); }
.about-text .about-sub { font-size: 13px; color: var(--accent2); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 18px; }
.about-text .founder { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--border); }
.founder-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 5px; color: var(--text); }
.founder-title { font-size: 14px; color: var(--accent2); font-weight: 500; }

/* ──── CTA ──── */
.cta { background: linear-gradient(135deg, #1a0505, #2c0a0a); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.cta p { color: var(--text2); font-size: 16px; margin-bottom: 30px; }

/* ──── FOOTER ──── */
footer.site-footer { background: var(--bg3); padding: 50px 40px 30px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand { max-width: 350px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.footer-brand-logo img { height: 60px; filter: drop-shadow(0 0 10px rgba(231,76,60,0.2)); }
.footer-brand-logo span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.7; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.footer-col a { display: block; font-size: 13px; color: var(--text3); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent2); }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text2); transition: all 0.2s; }
.footer-social a:hover { background: var(--accent); color: white; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 12px; color: #444; }

/* ──── PRODUCT DETAIL PAGE ──── */
.breadcrumb { padding: 90px 40px 0; max-width: 1200px; margin: 0 auto; font-size: 13px; color: var(--text3); }
.breadcrumb a { color: var(--text2); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb .sep { margin: 0 8px; }
.product-hero { max-width: 1200px; margin: 0 auto; padding: 30px 40px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.gallery { position: relative; border-radius: 12px; overflow: hidden; }
.gallery-main { height: 400px; position: relative; }
.gallery-item { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.4s; }
.gallery-item.active { opacity: 1; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.gallery-thumb { width: 80px; height: 55px; border-radius: 6px; background-size: cover; background-position: center; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; opacity: 0.5; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent2); opacity: 1; }
.detail-badge { display: inline-block; padding: 4px 14px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.badge-featured { background: var(--purple); color: white; }
.detail-category { font-size: 13px; color: var(--accent2); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 10px; }
.detail-title { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: 15px; }
.detail-desc { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 25px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 25px; }
.detail-tag { background: rgba(255,255,255,0.06); padding: 5px 14px; border-radius: 4px; font-size: 12px; color: var(--text3); }
.detail-meta { display: flex; gap: 30px; margin-bottom: 25px; font-size: 13px; color: var(--text3); }
.detail-meta span { display: flex; align-items: center; gap: 6px; }
.detail-meta i { color: var(--accent2); }
.purchase-box { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 25px; margin-bottom: 25px; }
.purchase-price { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 900; color: var(--accent2); margin-bottom: 15px; }
.purchase-btn { display: block; width: 100%; padding: 16px; border: none; border-radius: 8px; background: var(--accent); color: white; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: all 0.3s; text-align: center; }
.purchase-btn:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(231,76,60,0.4); color: white; }
.purchase-note { font-size: 12px; color: var(--text3); margin-top: 12px; text-align: center; }
.purchase-note i { margin-right: 4px; }
.content-section { max-width: 1200px; margin: 0 auto; padding: 60px 40px; }
.content-section h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 35px; text-align: center; }
.content-section h2 .red { color: var(--accent2); }
.content-section .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.content-section .feature-card { text-align: center; padding: 30px 20px; }
.content-section .feature-icon { font-size: 32px; margin-bottom: 15px; }
.content-section .feature-card h3 { font-size: 15px; }
.content-section .feature-card p { font-size: 13px; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.install-box, .deps-box { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 30px; }
.install-box h3, .deps-box h3, .commands-section h3, .video-section h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
.install-box h3 i, .deps-box h3 i, .commands-section h3 i, .video-section h3 i { color: var(--accent2); margin-right: 8px; }
.install-box ol { padding-left: 20px; }
.install-box li { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 8px; }
.deps-box ul { list-style: none; }
.deps-box li { font-size: 14px; color: var(--text2); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.deps-box li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--green); font-size: 14px; }
.deps-box li:last-child { border-bottom: none; }
.commands-section { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 30px; margin-top: 30px; }
.cmd-table { width: 100%; border-collapse: collapse; }
.cmd-table th { text-align: left; font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cmd-table td { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text2); }
.cmd-table code { background: rgba(231,76,60,0.1); color: var(--accent2); padding: 3px 10px; border-radius: 4px; font-size: 13px; }
.video-section { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 30px; margin-top: 30px; }
.video-placeholder { height: 300px; background: var(--bg); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text3); border: 2px dashed var(--border); }
.video-placeholder i { font-size: 48px; margin-bottom: 15px; }
.video-placeholder p { font-size: 14px; }
.page-cta { text-align: center; padding: 60px 40px; background: linear-gradient(135deg, #1a0505, #2c0a0a); border-top: 1px solid var(--border); }
.page-cta h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.page-cta p { color: var(--text2); font-size: 15px; margin-bottom: 25px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ──── ANIMATIONS ──── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.product-card { animation: fadeInUp 0.5s ease forwards; opacity: 0; }
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }

/* ──── RESPONSIVE ──── */
@media (max-width: 768px) {
    nav.site-nav { padding: 0 20px; justify-content: space-between; }
    .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 20px; gap: 15px; border-bottom: 1px solid var(--border); }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 28px; }
    .hero-logo { width: 220px; }
    .hero-tagline { font-size: 11px; letter-spacing: 3px; }
    .features-grid { grid-template-columns: 1fr; }
    .grid { grid-template-columns: 1fr; }
    section.gas-section { padding: 60px 20px; }
    .stats-bar { gap: 30px; padding: 20px; }
    .stat-num { font-size: 24px; }
    .footer-top { flex-direction: column; }
    .about-inner { flex-direction: column; text-align: center; }
    .services-row { gap: 15px; }
    .service-chip { padding: 10px 16px; }
    .service-chip span { font-size: 11px; }
    .product-hero { grid-template-columns: 1fr; padding: 20px 20px 40px; }
    .gallery-main { height: 250px; }
    .detail-title { font-size: 26px; }
    .content-section .features-grid { grid-template-columns: 1fr; }
    .install-grid { grid-template-columns: 1fr; }
    .content-section { padding: 40px 20px; }
    .breadcrumb { padding: 90px 20px 0; }
}

/* ──── WP OVERRIDES ──── */
.wp-block-post-content { max-width: 100%; padding: 0; }
body.page, body.home { background: var(--bg); }
#wpadminbar ~ nav.site-nav { top: 32px; }
@media screen and (max-width: 782px) { #wpadminbar ~ nav.site-nav { top: 46px; } }
