/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
    background: url('images/BlazeitBG.png') no-repeat center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #b0e8f7; /* Light blue similar to BG image */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    padding-top: 60; /* Ensures content is below the navbar */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Logo Styling */
.logo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.logo {
    width: 150px;
    max-width: 150px;
}

/* Centered Dark Box */
.centered-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
    width: 70%;
    max-width: 750px;
    margin: 20px auto;
    text-align: center;
    margin-top: 100px;
}

/* Table Styling */
.table-container {
    width: 100%;
    overflow-x: auto;
}

.distribution-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.distribution-table th,
.distribution-table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: center;
}

.distribution-table th {
    background: rgba(255, 69, 0, 0.7);
    color: white;
    font-weight: bold;
}

.distribution-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

/* Link Styling */
.contract-link {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

.contract-link:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Total Row */
.total-row {
    font-weight: bold;
    background: gold; /* Strong orange-red background */
    color: white;
    text-transform: uppercase;
}
#ffcf48
/* Home Logo Link */
.home-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

/* Hidden HOME text */
.home-text {
    position: absolute;
    top: 100%; /* Places text below logo */
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show HOME on hover */
.home-link:hover .home-text {
    opacity: 1;
}

/* Footer */
.footer {
    width: 100vw;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    position: relative;
    font-size: 14px;
    margin-top: 20px;
    align-self: stretch; /* 👈 this ensures full width under flexbox */
    font-weight: normal;
}

/* Separator between tables */
.separator {
    width: 80%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 30px auto;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
}
/* === Navbar Styles === */
.navbar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
    height: 60px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 0px; /* ✅ Push logo fully left */
}

.navbar-logo {
    height: 105px;
    width: auto;
    margin-right: 20px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-link {
    position: relative;
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

/* 🔥 Hover effect: fire color and dot smoke */
.navbar-link:hover {
    color: #ffcf48;
}

.navbar-link .smoke-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
}

.navbar-link:hover .smoke-container {
    opacity: 1;
    animation: floatUp 1.5s ease-in-out infinite;
}

/* Right side logo */
.navbar-right {
    margin-left: auto;  /* Pushes the logo to the right side */
}

.navbar-logo-right {
    height: 128px;
    width: auto;
    margin-left: 20px;
}

.smoke-dot {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: puff 5s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes puff {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10px) scale(1.5);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
    100% { transform: translateX(-50%) translateY(0); }
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
  }
  
  .main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  