/* Custom Styles - Match Main Site Design */

/* Sticky Footer - Keep footer at bottom of page */
html {
    height: 100%;
}

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

.header {
    flex-shrink: 0;
}

.master-breadcrumb {
    flex-shrink: 0;
}

#main-body {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

/* Hide Billing Address Section on Registration */
#billingAddressSection {
    display: none !important;
}

/* Hide Mailing List Section on Registration */
#mailingListSection {
    display: none !important;
}

/* Hide First Name and Last Name Fields on Registration */
#firstNameField,
#lastNameField {
    display: none !important;
}

/* Header Styling */
.header .navbar-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000;
    text-transform: uppercase;
}

.header .navbar {
    border-bottom: 1px solid #e5e5e5;
}

.header .nav-link {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.header .nav-link:hover {
    opacity: 0.6;
}

.header .topbar {
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

/* Main Navigation */
.main-navbar-wrapper {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.main-navbar-wrapper .navbar-nav .nav-link {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.main-navbar-wrapper .navbar-nav .nav-link:hover {
    opacity: 0.6;
}

/* Footer Styling - Match Main Site */
.footer {
    border-top: 1px solid #000;
    padding: 48px 0;
    background: #000;
    color: #fff;
}

.footer .nav-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    font-size: 14px;
}

.footer .nav-link:hover {
    opacity: 1;
}

.footer .copyright {
    color: #fff;
}

/* Button Styling - Match Main Site */
.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-default,
.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: #f5f5f5;
    border-color: #000;
    color: #000;
}

/* Cards and Panels */
.card {
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

.card:hover {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Links */
a {
    color: #000;
    transition: opacity 0.2s;
}

a:hover {
    color: #000;
    opacity: 0.6;
}

/* Form Controls */
.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .footer .nav {
        justify-content: center !important;
    }
}
