/* NAVIGATION */
/* Base layout */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main navigation bar */
.navbar {
    padding: 1rem 0;
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e7e7e7;
    margin: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Navigation container */
.navbar-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand section */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo image */
.navbar-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Company name layout */
.company-name {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: -0.5px;
    line-height: 0.9;
}

/* Company name parts */
.too-smart {
    color: #ffffff;
    font-size: 1.8rem;
}

.to-scam {
    color: #58a4f0;
    font-size: 1.3rem;
    margin-left: 2px;
}

/* Navigation items */
.navbar-nav {
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

/* Right navigation section */
.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-right: 0;
}

/* Navigation links */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.last-nav-item {
    padding-right: 0;
}

.nav-link:hover {
    color: #cccccc;
}

/* BUTTONS */
/* Logout button */
.logout-btn {
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

/* Logout hover state */
.logout-btn:hover {
    background-color: #c82333;
    color: white;
    text-decoration: none;
}

.nav-right .logout-btn {
    align-self: center;
}

/* MAIN CONTENT */
/* Content wrapper */
.content {
    margin: 0;
    padding: 0;
    flex: 1;
    margin-top: 72px;
}

/* ACCESSIBILITY */
/* Font size toggle */
.font-size-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.font-size-btn:hover {
    background-color: #218838;
}

/* FOOTER */
/* Main footer */
.site-footer {
    background-color: #f8f9fa;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid #e7e7e7;
}

/* Footer container */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer sections */
.footer-sections {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* Footer columns */
.footer-social, .footer-contact {
    flex: 1;
}

.footer-social {
    margin-right: 40px;
}

/* Footer headings */
.footer-sections h3 {
    color: #333333;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Social links */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.social-links a {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Contact info */
.footer-contact p {
    margin: 5px 0;
    color: #333333;
    font-size: 1rem;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e7e7e7;
    color: #333333;
    font-size: 1rem;
}

.footer-bottom a {
    color: #333333;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* LARGE TEXT MODE */
/* Company name */
.large-text .company-name {
    font-size: 2.4rem;
}

/* Navigation text */
.large-text .nav-link,
.large-text .logout-btn {
    font-size: 1.3rem;
}

/* Footer text */
.large-text .footer-sections h3,
.large-text .footer-contact p {
    font-size: 1.2em;
}

.large-text .social-links a {
    font-size: 1.2em;
}

.large-text .footer-bottom {
    font-size: 1.2em;
}

.large-text .footer-links a,
.large-text .footer-copyright {
    font-size: 1.2em;
}

/* Brand text */
.large-text .too-smart {
    font-size: 2.2rem;
}

.large-text .to-scam {
    font-size: 1.6rem;
}



