/* COMMA Font */
@font-face {
    font-family: 'COMMARegular';
    src: url('../images/placeholders/COMMARegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.comma-font {
    font-family: 'COMMARegular', 'Barlow', sans-serif;
}

/* Header Styles */
.comma-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.comma-header .nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.comma-header .nav-link:hover {
    color: #2563eb;
}

/* Mobile menu styling */
#mobile-menu {
    background-color: #ffffff;
}

/* Footer Styles - Full Width Background */
footer.comma-footer {
    background-color: #064e3b;
    width: 100%;
}

/* Ensure footer text is visible */
footer.comma-footer {
    color: #e5e7eb;
}

footer.comma-footer h4 {
    color: #ffffff;
}

footer.comma-footer a {
    text-decoration: none;
}

/* Remove any default margins/padding that might break layout */
body {
    margin: 0;
    padding: 0;
}

/* Remove any default main styling that conflicts */

/* Remove underlines from all links by default */
a {
    text-decoration: none;
}

/* Button styles */
.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: white;
}

/* Ensure container doesn't break full-width backgrounds */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Override any PrimeVue/Tailwind defaults that might interfere */
.comma-header *,
.comma-footer * {
    box-sizing: border-box;
}

/* Clean link styles */
.comma-header a,
.comma-footer a {
    text-decoration: none;
}

/* Ensure footer always stays at bottom */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#app {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer.comma-footer {
    flex-shrink: 0;
    margin-top: auto;
}