:root {
  --bs-success: #0b1f13;
  --bs-success-rgb: 11, 31, 19;
}

body, .bg-light, .bg-white, .bg-dark, .bg-success, .card, .navbar, .instruction-box, section { 
    background-color: #0b1f13 !important; 
    color: #c5a128 !important; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}
body { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6, p, span, li, .text-muted, .text-secondary, .text-dark, .text-success, a.nav-link, .navbar-brand {
    color: #c5a128 !important;
}

.section-tag { display: inline-block; padding: 5px 15px; background: rgba(197, 161, 40, 0.2) !important; color: #c5a128 !important; border-radius: 20px; font-weight: bold; margin-bottom: 15px; }
.section-heading { font-weight: 800; margin-bottom: 15px; }
.section-divider { width: 80px; height: 4px; background: #c5a128 !important; border-radius: 2px; }

.parallax-section { 
    background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; 
    padding: 150px 0; position: relative; text-align: center; 
}
.parallax-section h1 { color: #c5a128 !important; text-shadow: 2px 2px 10px rgba(11, 31, 19, 0.8) !important; }
.parallax-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11, 31, 19, 0.85); }

.instruction-box { border-left: 5px solid #c5a128 !important; padding: 20px; margin-bottom: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-radius: 0 8px 8px 0; }
.card { border: 1px solid rgba(197, 161, 40, 0.3) !important; }

/* Forms */
.form-control, .form-control:focus {
    background-color: #07150d !important;
    color: #c5a128 !important;
    border: 1px solid rgba(197, 161, 40, 0.5) !important;
}

/* Buttons */
.btn-success { background-color: #c5a128 !important; color: #0b1f13 !important; border-color: #c5a128 !important; font-weight: bold; }
.btn-success:hover { background-color: #a38520 !important; color: #0b1f13 !important; border-color: #a38520 !important; }

/* Navbar */
.navbar {
    background: #07150d !important;
    border-bottom: 1px solid rgba(197, 161, 40, 0.2);
    transition: all 0.3s ease;
}
.navbar-brand img {
    background-color: #ffffff;
    padding: 4px;
    border-radius: 6px;
    height: 80px !important;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-nav .nav-link:hover {
    color: #c5a128 !important;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #c5a128;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* Footer Styling */
footer {
    background: #07150d !important;
    border-top: 2px solid rgba(197, 161, 40, 0.3);
    color: #fff;
    padding: 60px 0 20px 0 !important;
}
footer h5 {
    color: #c5a128 !important;
    font-weight: bold;
    margin-bottom: 20px;
}
footer p, footer li {
    color: #b0c4b1 !important;
    font-size: 0.95rem;
}
footer a {
    color: #b0c4b1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #c5a128 !important;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(197, 161, 40, 0.1);
    color: #c5a128 !important;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: #c5a128;
    color: #0b1f13 !important;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

