/* Global Layout Fixes - Fixed Navbar Spacing */

/* Ensure body has proper spacing for fixed navbar */
body {
    padding-top: 56px; /* Height of fixed navbar */
}

/* Hero section - already has margin-top in theme files */
.hero-section {
    margin-top: 0 !important; /* Override - padding-top is enough */
}

/* Login and Register sections - account for navbar */
.login-section,
.register-section {
    min-height: calc(100vh - 56px); /* Subtract navbar height */
    padding-top: 80px; /* Space from navbar */
}

/* Dashboard content spacing */
.container-fluid.mt-5 {
    margin-top: 80px !important; /* More space for fixed navbar */
}

/* Responsive navbar heights */
@media (max-width: 991px) {
    body {
        padding-top: 56px;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .login-section,
    .register-section {
        padding-top: 70px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .login-section,
    .register-section {
        padding-top: 60px;
    }
}
