/* ============================================
   AZOTH INDUSTRIES - MAIN STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #AA8C2C;
    --black-primary: #0a0a0a;
    --black-secondary: #111111;
    --gray-dark: #1a1a1a;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-primary);
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark), var(--gold-primary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
}

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-shine {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 25%, var(--gold-primary) 50%, var(--gold-light) 75%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Glow Effects */
.gold-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

.gold-glow-intense {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.3);
}

/* Grid Background */
.grid-bg {
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Navigation Glass Effect */
.nav-glass {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}

.service-card:hover::before {
    transform: translateX(100%);
}

/* Laser Line Animation */
.laser-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    animation: laserScan 3s ease-in-out infinite;
}

@keyframes laserScan {
    0%, 100% { 
        opacity: 0; 
        transform: translateX(-100%); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(100%); 
    }
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Form Elements */
input, textarea, select {
    font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Selection */
::selection {
    background: var(--gold-primary);
    color: var(--black-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .cursor-dot, .cursor-outline {
        display: none !important;
    }
    
    .text-gold-shine {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .loader, #particle-canvas, .cursor-dot, .cursor-outline {
        display: none !important;
    }
}