/*
Theme Name: Veltron Custom Landing
Theme URI: https://example.com/veltron-landing
Description: Tema premium monopagina ispirato alla grafica Veltron Systems. Stile minimale high-tech, nero e oro.
Version: 1.0.0
Author: Veltron Inspired
Text Domain: veltron-landing
*/

/* Reset e Stili Globali */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, .brand-title, .tagline {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header & Navbar */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    border: 2px solid #C5A059;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    margin-right: 15px;
    font-family: 'Montserrat', sans-serif;
}

.logo-text h1 {
    font-size: 22px;
    margin: 0;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo-text span {
    display: block;
    font-size: 10px;
    color: #C5A059;
    letter-spacing: 4px;
    margin-top: 2px;
}

/* Sezione Hero Principale */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    background-color: #0d0d0d;
}

/* Layout split a due colonne */
.hero-left {
    width: 45%;
    padding: 15% 5% 5% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0d0d0d;
    position: relative;
    z-index: 2;
}

.hero-right {
    width: 55%;
    position: relative;
    background-color: #151515;
}

/* L'immagine o background placeholder moderno con illuminazione a LED arancione/oro */
.hero-visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" viewBox="0 0 800 600"><rect width="800" height="600" fill="%231a1a1a"/><path d="M100,100 L700,100 L700,500 L100,500 Z" fill="none" stroke="%23333" stroke-width="2"/><path d="M100,300 L700,300" fill="none" stroke="%23333" stroke-width="2"/><line x1="100" y1="100" x2="700" y2="500" stroke="%23C5A059" stroke-width="1" opacity="0.3"/><rect x="150" y="150" width="230" height="300" fill="none" stroke="%23ffe0a3" stroke-width="2" opacity="0.8"/><rect x="420" y="150" width="230" height="130" fill="none" stroke="%23ffe0a3" stroke-width="2" opacity="0.8"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Effetto linea diagonale oro tra le due sezioni come nell'immagine */
.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: transparent;
    border-right: 2px solid #C5A059;
    transform: skewX(-15deg);
    z-index: 1;
    pointer-events: none;
}

/* Testi dell'immagine */
.main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #ffffff;
}

.main-title span {
    color: #C5A059;
    display: block;
    font-weight: 400;
}

.sub-title {
    font-size: 14px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Sezione Controllo Numerico (Fascia in basso a sinistra) */
.precision-box {
    margin-top: auto;
    padding-top: 40px;
    max-width: 350px;
}

.precision-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    border: 1px solid #C5A059;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.precision-icon::before, .precision-icon::after {
    content: '';
    position: absolute;
    background-color: #C5A059;
}
.precision-icon::before { width: 100%; height: 1px; }
.precision-icon::after { width: 1px; height: 100%; }

.precision-text {
    font-size: 11px;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: #a0a0a0;
    text-transform: uppercase;
}

.precision-highlight {
    color: #C5A059;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

/* Griglia dei Pilastri / Feature Bar */
.features-section {
    background-color: #070707;
    padding: 60px 5%;
    border-top: 1px solid #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 15px 10px;
}

.feature-icon-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #C5A059;
    stroke-width: 1.5;
}

.feature-title {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

.feature-title span {
    display: block;
    color: #888;
    font-weight: 400;
    margin-top: 3px;
}

/* Footer Tagline */
.site-footer {
    background-color: #050505;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #111;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 6px;
    color: #C5A059;
    margin: 0;
    font-weight: 500;
}

/* Call to Action (Integrazione per Landing Page) */
.cta-btn {
    display: inline-block;
    border: 1px solid #C5A059;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: fit-content;
}

.cta-btn:hover {
    background-color: #C5A059;
    color: #000;
}

/* Responsive / Mobile Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }
    .hero-left {
        width: 100%;
        padding: 120px 5% 60px 5%;
    }
    .hero-right {
        width: 100%;
        height: 50vh;
    }
    .hero-left::after {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 32px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.55);
}

