/* global.css */
:root {
    color-scheme: dark;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa8c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.6);
}

.glow-gold {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow-gold:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-outline-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* Global Custom Gold Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.95);
}
::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f3e5ab;
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 rgba(10, 10, 10, 0.95);
}
/* Form Input Styles */
input, textarea, select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

input::placeholder, textarea::placeholder {
    color: #555555;
}

select option {
    background: #111111;
}

/* Word Document Content Formatting (.doc-content) */
.doc-content h1 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 2.25rem; color: #d4af37; margin-bottom: 1.5rem; }
.doc-content h2 { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 1.5rem; color: #f3e5ab; margin-top: 2rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(212,175,55,0.2); padding-bottom: 0.5rem; }
.doc-content h3 { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 1.2rem; color: #aa8c2c; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.doc-content p { color: #a1a1aa; margin-bottom: 1rem; line-height: 1.7; }
.doc-content ul, .doc-content ol { color: #a1a1aa; margin-left: 1.5rem; margin-bottom: 1rem; list-style-type: disc; }
.doc-content li { margin-bottom: 0.5rem; }
.doc-content strong { color: #d4af37; }
.doc-content table { width: 100%; margin-bottom: 1.5rem; border-collapse: collapse; }
.doc-content th, .doc-content td { border: 1px solid rgba(212,175,55,0.3); padding: 0.75rem; text-align: left; color: #a1a1aa; }
.doc-content th { background-color: rgba(212,175,55,0.1); color: #d4af37; }
.doc-content a { color: #d4af37; text-decoration: underline; }