/*
Theme Name: JunglerDev
Theme URI: https://junglerdev.com
Author: JunglerDev Group
Author URI: https://junglerdev.com
Description: A barebones WordPress theme.
Version: 1.0
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/* -- BEGIN: Font Styles -- */
/* -- Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight -- */


:root {
    --soft-gold:#fbe77a;
    --gold: #eeb926;
    --black: #242426;
    --gold-hover: #d4a520;
    --transition: all 0.3s ease;
    --dark-bg: #1a1a1c;
    --darker-bg: #0d0d0e;
    --gold-hover: #d4a520;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: var(--black);
    overflow-x: hidden;
}

.title-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.breadcrumb-container,
.breadcrumb-container a{
    color: #eeb926 !important;
    text-decoration:none;
}
.breadcrumb-container .breadcrumb_last{
    color: #8d8d8d !important;
    text-decoration:none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .ballot-preview {
        margin-top: 40px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}