/*
    WIFF Stylesheet - Professional Green DevOps Edition
    Colors:
    Primary (Forest Green): #10B981 
    Secondary (Light Mint Green): #6EE7B7
    Background (Deep Forest): #064E3B
    Surface (Dark Pine): #065F46
    White: #FFFFFF
    Light Gray: #E2E8F0
    Success: #10B981
    Error: #EF4444
    Warning: #F59E0B
*/

:root {
    --primary: #10B981;
    --primary-hover: #059669;
    --secondary: #6EE7B7;
    --secondary-hover: #34D399;
    --bg: #064E3B;
    --surface: #065F46;
    --text: #FFFFFF;
    --text-light: #E2E8F0;
    --text-muted: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    
    --font-heading: 'Bebas Neue', cursive;
    --font-subheading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-hero: 'Montserrat', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Legacy Support for existing classes */
--gold: var(--primary);
--black: var(--bg);
--dark-gray: var(--surface);
--white: var(--text);
--deep-red: var(--error);
--success: var(--success);

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-subheading);
    letter-spacing: 0.5px;
    color: var(--text);
}

p,
.text-muted {
    color: var(--text) !important;
}

.hero-title {
    font-family: var(--font-hero);
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-error { color: var(--error) !important; }
.text-warning { color: var(--warning) !important; }

.bg-gold { background-color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-dark-gray, .bg-surface { background-color: var(--surface) !important; }
.bg-black { background-color: var(--bg) !important; }

/* Buttons */
.btn-gold, .btn-primary {
    background-color: var(--primary);
    color: var(--bg);
    font-weight: 600;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-gold:hover, .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    color: var(--bg);
}

.btn-outline-gold, .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover, .btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--bg);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 0 20px rgba(110, 231, 183, 0.4);
}

.btn-outline-white {
    border: 2px solid var(--text);
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: var(--text);
    color: var(--bg);
}

.btn-link-gold {
    color: var(--primary);
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-link-gold:hover {
    color: var(--secondary);
    padding-left: 10px !important;
}

/* Navbar */
.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background-color: rgba(6, 78, 59, 0.95) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 12px;
    color: var(--text-light) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.nav-link.active {
    color: var(--primary) !important;
}

.site-logo {
    display: block;
    height: auto;
    max-width: 100%;
}

.site-logo-nav {
    width: 220px;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.site-logo-footer {
    width: 260px;
}

@media (max-width: 991.98px) {
    .site-logo-nav {
        width: 180px;
    }

    .site-logo-footer {
        width: 220px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: 
        radial-gradient(circle at top right, rgba(110, 231, 183, 0.08), transparent 60%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.08), transparent 60%);
}

.tracking-widest {
    letter-spacing: 5px;
}

.max-w-600 {
    max-width: 600px;
}

.scroll-indicator .mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Spacing */
.py-100 { padding: 100px 0; position: relative; }
.py-80 { padding: 80px 0; }
.pt-150 { padding-top: 150px; }

/* Grid Background - Professional Green */
.bg-grid {
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}

/* Borders */
.border-gold { border: 1px solid var(--primary); }
.border-primary { border: 1px solid var(--primary); }
.border-secondary { border: 1px solid var(--secondary); }
.border-gold-left { border-left: 4px solid var(--primary); }
.border-gold-top { border-top: 4px solid var(--primary); }

/* Card Styling */
.card {
    background-color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.badge {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.5em 1em;
}

.badge-primary {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.badge-secondary {
    background-color: rgba(110, 231, 183, 0.15);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}
