/*
Theme Name: LifterPlus Theme
Theme URI: https://infinity.ge
Author: Infinity Solutions
Author URI: https://infinity.ge
Description: Custom premium WordPress theme for LifterPlus — elite elevator installation and service company. Dark design with gold accents, Georgian language.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lifterplus
Tags: custom-menu, custom-logo, featured-images, translation-ready
*/

/* =============================================
   FONT FACE — FiraGO
   ============================================= */
@font-face {
    font-family: "FiraGO";
    src: url("assets/fonts/FiraGO-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO";
    src: url("assets/fonts/FiraGO-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO";
    src: url("assets/fonts/FiraGO-Heavy.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* Colors — Light theme with red accent */
    --color-primary: #FFFFFF;
    --color-secondary: #F5F5F5;
    --color-tertiary: #E8E8E8;
    --color-accent: #EE1B24;
    --color-accent-light: #FF3B3B;
    --color-accent-gradient: linear-gradient(135deg, #EE1B24, #FF5555, #EE1B24);
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #555555;
    --color-text-muted: #999999;

    /* Typography */
    --font-heading: "FiraGO", sans-serif;
    --font-body: "FiraGO", sans-serif;
    --font-accent: "FiraGO", sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 20px;

    /* Header */
    --header-height: 80px;
    --header-height-scrolled: 60px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    color: var(--color-text-primary);
}

h1 { font-size: 3.5rem; letter-spacing: 4px; }
h2 { font-size: 2.5rem; letter-spacing: 3px; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.9rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-light);
}

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

ul, ol {
    list-style: none;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent-gradient);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 40px;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn:hover::before {
    left: 0;
}

.btn-filled {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-filled:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: var(--color-primary);
}

/* =============================================
   GOLD DECORATIVE ELEMENTS
   ============================================= */
.gold-line {
    width: 60px;
    height: 2px;
    background: var(--color-accent-gradient);
    margin: 15px auto;
}

.gold-line-left {
    margin: 15px 0;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--color-accent); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-tertiary { background-color: var(--color-tertiary); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
