/* ========== Empire Custom Styles ========== */

/* Basic Dark Theme */
:root {
    --bg-color: #ffffff;
    --text-color: #121212;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #ffffff;
}

/* Apply Theme Colors */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s;
}

/* Smooth cards & buttons */
.card, .button {
    border-radius: 8px;
    transition: all 0.3s;
}

/* Make buttons pop on hover */
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    bottom: 0;
    margin-top: 4rem;
    padding: 2rem 1rem;
    background-color: var(--bg-color);
    border-top: 1px solid #ddd;
    width: 100%;
    position: absolute;
}

/* Ensure the body and html take up the full height of the screen */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Make sure all sections stretch to full height */
section.section {
    height: 100%;
    display: flex;
    flex-direction: column; /* Allow content to stack vertically */
}

/* Ensure container takes up full height */
.container {
    flex: 1; /* Allow container to grow and fill the remaining space */
    display: flex;
    flex-direction: column; /* Allow content to be vertically arranged */
    padding: 0; /* Remove any padding that may cause gaps */
}

/* Optional: If you want the navbar and footer to remain fixed */
header, footer {
    width: 100%;
    z-index: 100;
}

/* Example of full height for a specific page */
.page-full-height {
    min-height: 100vh; /* Minimum height of the viewport */
}

/* Example: If you have a content box that needs to take full height */
.box {
    width: 100vh;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .navbar-menu {
        background-color: var(--bg-color);
    }
}

